144 lines
4.5 KiB
Vue
144 lines
4.5 KiB
Vue
<template>
|
|
<div>
|
|
<BasicTable @register="registerTable" :rowSelection="rowSelection">
|
|
<template #tableTitle>
|
|
<a-button type="primary" v-auth="'xslmes:mes_xsl_raw_material_entry:add'" @click="handleAdd" preIcon="ant-design:plus-outlined"> 新增</a-button>
|
|
<a-button type="primary" v-auth="'xslmes:mes_xsl_raw_material_entry:exportXls'" preIcon="ant-design:export-outlined" @click="onExportXls"> 导出</a-button>
|
|
<j-upload-button type="primary" v-auth="'xslmes:mes_xsl_raw_material_entry: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_raw_material_entry:deleteBatch'">批量操作
|
|
<Icon icon="mdi:chevron-down" />
|
|
</a-button>
|
|
</a-dropdown>
|
|
<super-query :config="superQueryConfig" @search="handleSuperQuery" />
|
|
</template>
|
|
<template #action="{ record }">
|
|
<TableAction :actions="getTableAction(record)" :dropDownActions="getDropDownAction(record)" />
|
|
</template>
|
|
</BasicTable>
|
|
<MesXslRawMaterialEntryModal @register="registerModal" @success="handleSuccess" />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" name="xslmes-mesXslRawMaterialEntry" setup>
|
|
import { ref, reactive } from 'vue';
|
|
import { BasicTable, useTable, TableAction } from '/@/components/Table';
|
|
import { useModal } from '/@/components/Modal';
|
|
import { useListPage } from '/@/hooks/system/useListPage';
|
|
import MesXslRawMaterialEntryModal from './components/MesXslRawMaterialEntryModal.vue';
|
|
import { columns, searchFormSchema, superQuerySchema } from './MesXslRawMaterialEntry.data';
|
|
import { list, deleteOne, batchDelete, getImportUrl, getExportUrl } from './MesXslRawMaterialEntry.api';
|
|
|
|
const queryParam = reactive<any>({});
|
|
const [registerModal, { openModal }] = useModal();
|
|
|
|
const { prefixCls, tableContext, onExportXls, onImportXls } = useListPage({
|
|
tableProps: {
|
|
title: '原料入场记录',
|
|
api: list,
|
|
columns,
|
|
canResize: true,
|
|
formConfig: {
|
|
schemas: searchFormSchema,
|
|
autoSubmitOnEnter: true,
|
|
showAdvancedButton: true,
|
|
fieldMapToTime: [
|
|
['entryTime', ['entryTime_begin', 'entryTime_end'], 'YYYY-MM-DD HH:mm:ss'],
|
|
],
|
|
},
|
|
actionColumn: {
|
|
width: 120,
|
|
fixed: 'right',
|
|
},
|
|
beforeFetch: (params) => {
|
|
return 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).map((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 });
|
|
}
|
|
|
|
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 getTableAction(record) {
|
|
return [
|
|
{
|
|
label: '编辑',
|
|
onClick: handleEdit.bind(null, record),
|
|
auth: 'xslmes:mes_xsl_raw_material_entry:edit',
|
|
},
|
|
];
|
|
}
|
|
|
|
function getDropDownAction(record) {
|
|
return [
|
|
{
|
|
label: '详情',
|
|
onClick: handleDetail.bind(null, record),
|
|
},
|
|
{
|
|
label: '删除',
|
|
popConfirm: {
|
|
title: '是否确认删除',
|
|
confirm: handleDelete.bind(null, record),
|
|
placement: 'topLeft',
|
|
},
|
|
auth: 'xslmes:mes_xsl_raw_material_entry:delete',
|
|
},
|
|
];
|
|
}
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
:deep(.ant-picker-range) {
|
|
width: 100%;
|
|
}
|
|
</style>
|