| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270 |
- <template>
- <div>
- <BasicTable :rowSelection="{ type: 'checkbox' }" @register="registerTable" :clickToRowSelect="false">
- <template #toolbar>
- <Authority>
- <a-button type="primary" @click="handleCreate">提交申请</a-button>
- </Authority>
- <!-- <Authority>
- <Popconfirm title="您确定要批量删除数据" ok-text="确定" cancel-text="取消" @confirm="handleDeleteOrBatchDelete(null)">
- <a-button type="primary" color="error" :disabled="hasBatchDelete"> 批量删除 </a-button>
- </Popconfirm>
- </Authority> -->
- </template>
- <!-- <template #status="{ record }">
- <Switch :checked="record.status === 1" :loading="record.pendingStatus" checkedChildren="启用" unCheckedChildren="禁用"
- @change="(checked: boolean) => statusChange(checked, record)" />
- </template> -->
- <template #action="{ record }">
- <TableAction :actions="[
- // {
- // label: '浏览',
- // icon: '' /**clarity:note-edit-line*/,
- // // ifShow: record.servicealiasname,
- // // ifShow: ((action) => action.servicealiasname),
- // ifShow: record.servicealiasname,
- // onClick: see.bind(null, record),
- // },
- // {
- // label: '查看',
- // icon: '' /**clarity:note-edit-line*/,
- // onClick: handleEdit.bind(null, record),
- // },
- // {
- // label: '编辑',
- // icon: '' /**clarity:note-edit-line*/,
- // color: 'warning',
- // onClick: handleEdit.bind(null, record),
- // },
- // {
- // label: '删除',
- // icon: '' /**ant-design:delete-outlined'*/,
- // color: 'error',
- // ifShow: record.roleType != RoleEnum.SYS_ADMIN,
- // popConfirm: {
- // title: '是否确认删除',
- // confirm: handleDelete.bind(null, record),
- // },
- // },
- {
- label: '提交申请',
- icon: '' /**clarity:note-edit-line*/,
- // ifShow: record.servicealiasname,
- // ifShow: ((action) => action.servicealiasname),
- disabled: !(record.shzt == '未提交'),
- onClick: submitApply.bind(null, record),
- },
- {
- label: '移出',
- tooltip: '移出',
- // icon: 'ant-design:form-outlined',
- onClick: handleDelete.bind(null, record),
- disabled: !(record.shzt === '未提交')
- },
- ]" />
- </template>
- <template #pdate="{ record }">
- <Tag :color="'red'">
- {{
- record.publishdate ? moment(record.publishdate).format('YYYY-MM-DD HH:mm:ss') : ''
- }}
- </Tag>
- </template>
- <template #status="{ record }">
- <Tag :style="`color:${record.shzt == '未提交' ? 'red' : '#05B069'};`">
- {{
- record.shzt
- }}
- </Tag>
- </template>
- </BasicTable>
- <MapSourceModal @register="registerModal" @success="handleSuccess" />
- </div>
- </template>
- <script lang="ts">
- import { defineComponent, nextTick, onBeforeMount, createVNode } from 'vue';
- import { BasicTable, useTable, TableAction } from '/@/components/Table';
- import { delRole, setRoleStatus } from '/@/api/system/system';
- import { useModal } from '/@/components/Modal';
- import MapDrawer from './MapDrawer.vue';
- import { ExclamationCircleOutlined } from '@ant-design/icons-vue';
- import MapSourceModal from './MapSourceModal.vue';
- import { columns, searchFormSchema } from './lib.data';
- import { RoleEnum } from '/@/enums/roleEnum';
- import { Authority } from '/@/components/Authority';
- import { useBatchDelete } from '/@/hooks/web/useBatchDelete';
- import { useMessage } from '/@/hooks/web/useMessage';
- import { Switch, Popconfirm, message, Modal } from 'ant-design-vue';
- import { getAssemblyLibs } from '/@/api/dataAdmin/assembly';
- //操作申请库资源
- import Moment from 'moment'
- import { queryFlowInfoPage, submitExamine } from '/@/api/resource/examine';
- import { deleteResInCar } from '/@/api/resource/plat';
- export default defineComponent({
- name: 'RoleManagement',
- components: { BasicTable, MapDrawer, MapSourceModal, TableAction, Authority, Switch, Popconfirm },
- setup() {
- const [registerModal, { openModal }] = useModal();
- const [registerTable, { setProps, reload, setSelectedRowKeys }] = useTable({
- title: '地图资源列表',
- api: getAssemblyLibs,
- columns,
- formConfig: {
- labelWidth: 100,
- schemas: searchFormSchema,
- },
- useSearchForm: true,
- showTableSetting: true,
- bordered: true,
- showIndexColumn: true,
- actionColumn: {
- width: 200,
- title: '操作',
- dataIndex: 'action',
- slots: { customRender: 'action' },
- fixed: 'right',
- },
- tableSetting: {
- redo: true,
- size: true,
- setting: false,
- fullScreen: false
- },
- });
- const moment = Moment
- const { createMessage } = useMessage();
- const { hasBatchDelete, handleDeleteOrBatchDelete, selectionOptions, resetSelectedRowKeys } =
- useBatchDelete(delRole, handleSuccess, setProps);
- selectionOptions.rowSelection.getCheckboxProps = (record: Recordable) => {
- // Demo:status为1的选择框禁用
- if (record.status === 1) {
- return { disabled: true };
- } else {
- return { disabled: false };
- }
- };
- nextTick(() => {
- setProps(selectionOptions);
- });
- function handleCreate() {
- openModal(true, {
- isUpdate: false,
- });
- }
- function handleEdit(record: Recordable) {
- openModal(true, {
- record,
- isUpdate: true,
- });
- }
- function see(e) {
- console.log(e);
- if (e.servicealiasname) window.open(`../../mapview.html?onlineIde_${e.servicealiasname}`, '_blank');
- }
- //组件资源移出申请库
- const handleDelete = (record) => {
- console.log(record);
- Modal.confirm({
- title: '移出提示',
- icon: createVNode(ExclamationCircleOutlined),
- content: '确定移出该资源?',
- centered: true,
- okText: '确定',
- okType: 'danger',
- cancelText: '取消',
- onOk: (() => {
- deleteResInCar({
- idList: [record.applyCarInfo.id]
- }).then(() => reload())
- })
- });
- }
- function handleSuccess() {
- openModal(false, {
- isUpdate: false,
- });
- reload();
- }
- const statusChange = async (checked, record) => {
- setProps({
- loading: true,
- });
- setSelectedRowKeys([]);
- resetSelectedRowKeys();
- const newStatus = checked ? 1 : 0;
- try {
- await setRoleStatus(record.id, newStatus);
- if (newStatus) {
- createMessage.success(`启用成功`);
- } else {
- createMessage.success('禁用成功');
- }
- } finally {
- setProps({
- loading: false,
- });
- reload();
- }
- };
- onBeforeMount(async () => {
- })
- function submitApply(e) {
- console.log("submitApply:", e)
- queryFlowInfoPage({
- page: 1,
- rows: 1000000
- }).then(flowRes => {
- if (flowRes && flowRes.length) {
- var flow = flowRes.filter(i => i.FLOWNAME === '组件资源授权');
- if (flow.length) {
- let params = {
- bussInfo: {
- bussname: '组件资源授权',//业务名称
- flowid: flow[0].id,//流程id
- serverids: e.resInfo.SERVICEID//资源id
- }
- }
- submitExamine(params).then(res => {
- if (res.resp_code === 0 && res.resp_msg === '提交成功') {
- message.success('申请成功')
- reload();
- } else {
- message.error('申请失败')
- }
- })
- }
- }
- })
- }
- return {
- submitApply,
- moment,
- createMessage,
- registerTable,
- // registerDrawer,
- registerModal,
- handleCreate,
- see,
- handleEdit,
- handleDelete,
- handleSuccess,
- RoleEnum,
- hasBatchDelete,
- handleDeleteOrBatchDelete,
- statusChange,
- };
- },
- });
- </script>
|