137 lines
4.0 KiB
Vue
137 lines
4.0 KiB
Vue
<template>
|
|
<div>
|
|
<BasicTable @register="registerTable" :rowSelection="rowSelection">
|
|
<template #tableTitle>
|
|
<a-button
|
|
type="primary"
|
|
v-auth="'mes:mes_xsl_rubber_small_lock_reason:add'"
|
|
@click="handleAdd"
|
|
preIcon="ant-design:plus-outlined"
|
|
>
|
|
新增
|
|
</a-button>
|
|
<a-button
|
|
type="primary"
|
|
v-auth="'mes:mes_xsl_rubber_small_lock_reason:exportXls'"
|
|
preIcon="ant-design:export-outlined"
|
|
@click="onExportXls"
|
|
>
|
|
导出
|
|
</a-button>
|
|
<j-upload-button
|
|
type="primary"
|
|
v-auth="'mes:mes_xsl_rubber_small_lock_reason: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_rubber_small_lock_reason: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_rubber_small_lock_reason:edit',
|
|
},
|
|
]"
|
|
:dropDownActions="getDropDownAction(record)"
|
|
/>
|
|
</template>
|
|
</BasicTable>
|
|
<MesXslRubberSmallLockReasonModal @register="registerModal" @success="handleSuccess" />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" name="xslmes-mesXslRubberSmallLockReason" setup>
|
|
import { BasicTable, TableAction } from '/@/components/Table';
|
|
import { useModal } from '/@/components/Modal';
|
|
import { useListPage } from '/@/hooks/system/useListPage';
|
|
import Icon from '/@/components/Icon';
|
|
import MesXslRubberSmallLockReasonModal from './components/MesXslRubberSmallLockReasonModal.vue';
|
|
import { columns, searchFormSchema } from './MesXslRubberSmallLockReason.data';
|
|
import { list, deleteOne, batchDelete, getExportUrl, getImportUrl } from './MesXslRubberSmallLockReason.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_rubber_small_lock_reason:delete',
|
|
},
|
|
];
|
|
}
|
|
</script>
|