153 lines
4.6 KiB
Vue
153 lines
4.6 KiB
Vue
<template>
|
|
<div>
|
|
<BasicTable @register="registerTable" :rowSelection="rowSelection">
|
|
<template #tableTitle>
|
|
<a-button
|
|
type="primary"
|
|
v-auth="'xslmes:mes_xsl_mixer_material_substitute:add'"
|
|
@click="handleAdd"
|
|
preIcon="ant-design:plus-outlined"
|
|
>
|
|
新增
|
|
</a-button>
|
|
<a-button
|
|
type="primary"
|
|
v-auth="'xslmes:mes_xsl_mixer_material_substitute:exportXls'"
|
|
preIcon="ant-design:export-outlined"
|
|
@click="onExportXls"
|
|
>
|
|
导出
|
|
</a-button>
|
|
<j-upload-button
|
|
type="primary"
|
|
v-auth="'xslmes:mes_xsl_mixer_material_substitute: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="'xslmes:mes_xsl_mixer_material_substitute:deleteBatch'">
|
|
批量操作
|
|
<Icon icon="mdi:chevron-down" />
|
|
</a-button>
|
|
</a-dropdown>
|
|
<super-query :config="superQueryConfig" @search="handleSuperQuery" />
|
|
</template>
|
|
<template #action="{ record }">
|
|
<TableAction
|
|
:actions="[
|
|
{
|
|
label: '编辑',
|
|
onClick: handleEdit.bind(null, record),
|
|
auth: 'xslmes:mes_xsl_mixer_material_substitute:edit',
|
|
},
|
|
]"
|
|
:dropDownActions="getDropDownAction(record)"
|
|
/>
|
|
</template>
|
|
</BasicTable>
|
|
<MesXslMixerMaterialSubstituteModal @register="registerModal" @success="handleSuccess" />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" name="xslmes-mesXslMixerMaterialSubstitute" setup>
|
|
import { reactive } from 'vue';
|
|
import { BasicTable, TableAction } from '/@/components/Table';
|
|
import { useModal } from '/@/components/Modal';
|
|
import { useListPage } from '/@/hooks/system/useListPage';
|
|
import Icon from '/@/components/Icon';
|
|
import MesXslMixerMaterialSubstituteModal from './components/MesXslMixerMaterialSubstituteModal.vue';
|
|
import { columns, searchFormSchema, superQuerySchema } from './MesXslMixerMaterialSubstitute.data';
|
|
import { list, deleteOne, batchDelete, getExportUrl, getImportUrl } from './MesXslMixerMaterialSubstitute.api';
|
|
|
|
const queryParam = reactive<any>({});
|
|
const [registerModal, { openModal }] = useModal();
|
|
|
|
const { tableContext, onExportXls, onImportXls } = useListPage({
|
|
tableProps: {
|
|
title: '密炼物料替代对应关系',
|
|
api: list,
|
|
columns,
|
|
canResize: true,
|
|
formConfig: {
|
|
schemas: searchFormSchema,
|
|
labelWidth: 110,
|
|
autoSubmitOnEnter: true,
|
|
showAdvancedButton: true,
|
|
},
|
|
actionColumn: {
|
|
title: '操作',
|
|
dataIndex: 'action',
|
|
width: 160,
|
|
fixed: 'right',
|
|
slots: { customRender: 'action' },
|
|
},
|
|
beforeFetch: (params) => Object.assign(params, queryParam),
|
|
},
|
|
exportConfig: {
|
|
name: '密炼物料替代对应关系',
|
|
url: getExportUrl,
|
|
params: queryParam,
|
|
},
|
|
importConfig: {
|
|
url: getImportUrl,
|
|
success: handleSuccess,
|
|
},
|
|
});
|
|
|
|
const [registerTable, { reload }, { rowSelection, selectedRowKeys }] = tableContext;
|
|
const superQueryConfig = reactive(superQuerySchema);
|
|
|
|
function handleSuperQuery(params) {
|
|
Object.keys(params).forEach((k) => {
|
|
queryParam[k] = params[k];
|
|
});
|
|
reload();
|
|
}
|
|
|
|
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 });
|
|
}
|
|
|
|
function handleDelete(record: Recordable) {
|
|
deleteOne({ id: record.id }, handleSuccess);
|
|
}
|
|
|
|
function batchHandleDelete() {
|
|
batchDelete({ ids: selectedRowKeys.value.join(',') }, handleSuccess);
|
|
}
|
|
|
|
function handleSuccess() {
|
|
reload();
|
|
selectedRowKeys.value = [];
|
|
}
|
|
|
|
function getDropDownAction(record: Recordable) {
|
|
return [
|
|
{ label: '详情', onClick: handleDetail.bind(null, record) },
|
|
{
|
|
label: '删除',
|
|
popConfirm: { title: '是否确认删除', confirm: handleDelete.bind(null, record) },
|
|
auth: 'xslmes:mes_xsl_mixer_material_substitute:delete',
|
|
},
|
|
];
|
|
}
|
|
</script>
|