128 lines
3.9 KiB
Vue
128 lines
3.9 KiB
Vue
|
|
<template>
|
||
|
|
<div>
|
||
|
|
<BasicTable @register="registerTable" :rowSelection="rowSelection">
|
||
|
|
<template #tableTitle>
|
||
|
|
<a-button type="primary" v-auth="'mes:mes_xsl_equipment_sub_part:add'" @click="handleAdd" preIcon="ant-design:plus-outlined">
|
||
|
|
新增
|
||
|
|
</a-button>
|
||
|
|
<a-button
|
||
|
|
type="primary"
|
||
|
|
v-auth="'mes:mes_xsl_equipment_sub_part:exportXls'"
|
||
|
|
preIcon="ant-design:export-outlined"
|
||
|
|
@click="onExportXls"
|
||
|
|
>
|
||
|
|
导出
|
||
|
|
</a-button>
|
||
|
|
<j-upload-button
|
||
|
|
type="primary"
|
||
|
|
v-auth="'mes:mes_xsl_equipment_sub_part:importExcel'"
|
||
|
|
preIcon="ant-design:import-outlined"
|
||
|
|
@click="onImportXls"
|
||
|
|
>
|
||
|
|
导入
|
||
|
|
</j-upload-button>
|
||
|
|
<a-dropdown v-if="selectedRowKeys.length > 0">
|
||
|
|
<template #overlay>
|
||
|
|
<a-menu>
|
||
|
|
<a-menu-item key="1" @click="batchHandleDelete">
|
||
|
|
<Icon icon="ant-design:delete-outlined" />
|
||
|
|
删除
|
||
|
|
</a-menu-item>
|
||
|
|
</a-menu>
|
||
|
|
</template>
|
||
|
|
<a-button v-auth="'mes:mes_xsl_equipment_sub_part:deleteBatch'">
|
||
|
|
批量操作
|
||
|
|
<Icon icon="mdi:chevron-down" />
|
||
|
|
</a-button>
|
||
|
|
</a-dropdown>
|
||
|
|
</template>
|
||
|
|
<template #action="{ record }">
|
||
|
|
<TableAction
|
||
|
|
:actions="[
|
||
|
|
{ label: '编辑', onClick: handleEdit.bind(null, record), auth: 'mes:mes_xsl_equipment_sub_part:edit' },
|
||
|
|
]"
|
||
|
|
:dropDownActions="getDropDownAction(record)"
|
||
|
|
/>
|
||
|
|
</template>
|
||
|
|
</BasicTable>
|
||
|
|
<MesXslEquipmentSubPartModal @register="registerModal" @success="handleSuccess" />
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script lang="ts" name="xslmes-mesXslEquipmentSubPart" setup>
|
||
|
|
import { BasicTable, TableAction } from '/@/components/Table';
|
||
|
|
import { useModal } from '/@/components/Modal';
|
||
|
|
import { useListPage } from '/@/hooks/system/useListPage';
|
||
|
|
import Icon from '/@/components/Icon';
|
||
|
|
import MesXslEquipmentSubPartModal from './components/MesXslEquipmentSubPartModal.vue';
|
||
|
|
import { columns, searchFormSchema } from './MesXslEquipmentSubPart.data';
|
||
|
|
import { list, deleteOne, batchDelete, getExportUrl, getImportUrl } from './MesXslEquipmentSubPart.api';
|
||
|
|
|
||
|
|
const [registerModal, { openModal }] = useModal();
|
||
|
|
|
||
|
|
const { tableContext, onExportXls, onImportXls } = useListPage({
|
||
|
|
tableProps: {
|
||
|
|
title: '设备小部位',
|
||
|
|
api: list,
|
||
|
|
columns,
|
||
|
|
canResize: true,
|
||
|
|
formConfig: {
|
||
|
|
schemas: searchFormSchema,
|
||
|
|
labelWidth: 120,
|
||
|
|
autoSubmitOnEnter: true,
|
||
|
|
showAdvancedButton: true,
|
||
|
|
},
|
||
|
|
actionColumn: {
|
||
|
|
width: 200,
|
||
|
|
fixed: 'right',
|
||
|
|
},
|
||
|
|
},
|
||
|
|
exportConfig: {
|
||
|
|
name: '设备小部位',
|
||
|
|
url: getExportUrl,
|
||
|
|
},
|
||
|
|
importConfig: {
|
||
|
|
url: getImportUrl,
|
||
|
|
success: handleSuccess,
|
||
|
|
},
|
||
|
|
});
|
||
|
|
|
||
|
|
const [registerTable, { reload }, { rowSelection, selectedRowKeys }] = tableContext;
|
||
|
|
|
||
|
|
function handleAdd() {
|
||
|
|
openModal(true, { isUpdate: false, showFooter: true });
|
||
|
|
}
|
||
|
|
|
||
|
|
function handleEdit(record: Recordable) {
|
||
|
|
openModal(true, { record, isUpdate: true, showFooter: true });
|
||
|
|
}
|
||
|
|
|
||
|
|
function handleDetail(record: Recordable) {
|
||
|
|
openModal(true, { record, isUpdate: true, showFooter: false });
|
||
|
|
}
|
||
|
|
|
||
|
|
async function handleDelete(record) {
|
||
|
|
await deleteOne({ id: record.id }, handleSuccess);
|
||
|
|
}
|
||
|
|
|
||
|
|
async function batchHandleDelete() {
|
||
|
|
await batchDelete({ ids: selectedRowKeys.value }, handleSuccess);
|
||
|
|
}
|
||
|
|
|
||
|
|
function handleSuccess() {
|
||
|
|
selectedRowKeys.value = [];
|
||
|
|
reload();
|
||
|
|
}
|
||
|
|
|
||
|
|
function getDropDownAction(record) {
|
||
|
|
return [
|
||
|
|
{ label: '详情', onClick: handleDetail.bind(null, record) },
|
||
|
|
{
|
||
|
|
label: '删除',
|
||
|
|
popConfirm: { title: '是否确认删除', confirm: handleDelete.bind(null, record) },
|
||
|
|
auth: 'mes:mes_xsl_equipment_sub_part:delete',
|
||
|
|
},
|
||
|
|
];
|
||
|
|
}
|
||
|
|
</script>
|