186 lines
6.2 KiB
Vue
186 lines
6.2 KiB
Vue
<template>
|
|
<div>
|
|
<BasicTable @register="registerTable" :rowSelection="rowSelection">
|
|
<template #form-sparePartsCategoryPicker="{ model, field }">
|
|
<MesSearchPickerInput
|
|
:model="model"
|
|
:field="field"
|
|
placeholder="请选择备品件类别"
|
|
:show-clear="!!model.sparePartsCategoryId"
|
|
@open="openCategorySelect"
|
|
@clear="clearModelFields(model, ['sparePartsCategoryId', 'sparePartsCategoryName'])"
|
|
/>
|
|
</template>
|
|
<template #form-unitPicker="{ model, field }">
|
|
<MesSearchPickerInput
|
|
:model="model"
|
|
:field="field"
|
|
placeholder="请选择单位"
|
|
:show-clear="!!model.unitId"
|
|
@open="openUnitSelect"
|
|
@clear="clearModelFields(model, ['unitId', 'unitName'])"
|
|
/>
|
|
</template>
|
|
<template #tableTitle>
|
|
<a-button type="primary" v-auth="'mes:mes_xsl_spare_part:add'" @click="handleAdd" preIcon="ant-design:plus-outlined">
|
|
新增
|
|
</a-button>
|
|
<a-button
|
|
type="primary"
|
|
v-auth="'mes:mes_xsl_spare_part:exportXls'"
|
|
preIcon="ant-design:export-outlined"
|
|
@click="onExportXls"
|
|
>
|
|
导出
|
|
</a-button>
|
|
<j-upload-button
|
|
type="primary"
|
|
v-auth="'mes:mes_xsl_spare_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_spare_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_spare_part:edit' },
|
|
]"
|
|
:dropDownActions="getDropDownAction(record)"
|
|
/>
|
|
</template>
|
|
</BasicTable>
|
|
<MesXslSparePartModal @register="registerModal" @success="handleSuccess" />
|
|
<MesXslSparePartsCategorySelectModal @register="registerCategoryModal" @select="onCategorySelect" />
|
|
<MesXslUnitSelectModal @register="registerUnitModal" @select="onUnitSelect" />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" name="xslmes-mesXslSparePart" setup>
|
|
import { BasicTable, TableAction } from '/@/components/Table';
|
|
import { useModal } from '/@/components/Modal';
|
|
import { useListPage } from '/@/hooks/system/useListPage';
|
|
import Icon from '/@/components/Icon';
|
|
import MesSearchPickerInput from '../components/MesSearchPickerInput.vue';
|
|
import MesXslSparePartModal from './components/MesXslSparePartModal.vue';
|
|
import MesXslSparePartsCategorySelectModal from '/@/views/xslmes/mesXslSparePartsCategory/components/MesXslSparePartsCategorySelectModal.vue';
|
|
import MesXslUnitSelectModal from '/@/views/xslmes/mesXslVehicle/components/MesXslUnitSelectModal.vue';
|
|
import { clearModelFields, createStripIdNameBeforeFetch } from '../utils/mesSearchPickerUtil';
|
|
import { columns, searchFormSchema } from './MesXslSparePart.data';
|
|
import { list, deleteOne, batchDelete, getExportUrl, getImportUrl } from './MesXslSparePart.api';
|
|
|
|
const SEARCH_ID_NAME_PAIRS = [
|
|
{ idField: 'sparePartsCategoryId', nameField: 'sparePartsCategoryName' },
|
|
{ idField: 'unitId', nameField: 'unitName' },
|
|
];
|
|
|
|
const [registerModal, { openModal }] = useModal();
|
|
const [registerCategoryModal, { openModal: openCategoryModal }] = useModal();
|
|
const [registerUnitModal, { openModal: openUnitModal }] = useModal();
|
|
|
|
const { tableContext, onExportXls, onImportXls } = useListPage({
|
|
tableProps: {
|
|
title: '备品件信息',
|
|
api: list,
|
|
columns,
|
|
canResize: true,
|
|
beforeFetch: createStripIdNameBeforeFetch(SEARCH_ID_NAME_PAIRS),
|
|
formConfig: {
|
|
schemas: searchFormSchema,
|
|
labelWidth: 110,
|
|
autoSubmitOnEnter: true,
|
|
showAdvancedButton: true,
|
|
},
|
|
actionColumn: {
|
|
width: 200,
|
|
fixed: 'right',
|
|
},
|
|
},
|
|
exportConfig: {
|
|
name: '备品件信息',
|
|
url: getExportUrl,
|
|
},
|
|
importConfig: {
|
|
url: getImportUrl,
|
|
success: handleSuccess,
|
|
},
|
|
});
|
|
|
|
const [registerTable, { reload, getForm }, { rowSelection, selectedRowKeys }] = tableContext;
|
|
|
|
function openCategorySelect() {
|
|
const v = getForm()?.getFieldsValue?.() || {};
|
|
openCategoryModal(true, { sparePartsCategoryId: v.sparePartsCategoryId });
|
|
}
|
|
|
|
function onCategorySelect(payload: Recordable) {
|
|
getForm()?.setFieldsValue?.({
|
|
sparePartsCategoryId: payload.sparePartsCategoryId || '',
|
|
sparePartsCategoryName: payload.sparePartsCategoryName || '',
|
|
});
|
|
}
|
|
|
|
function openUnitSelect() {
|
|
const v = getForm()?.getFieldsValue?.() || {};
|
|
openUnitModal(true, { unitId: v.unitId });
|
|
}
|
|
|
|
function onUnitSelect(payload: Recordable) {
|
|
getForm()?.setFieldsValue?.({
|
|
unitId: payload.unitId || '',
|
|
unitName: payload.unitName || '',
|
|
});
|
|
}
|
|
|
|
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_spare_part:delete',
|
|
},
|
|
];
|
|
}
|
|
</script>
|