<template> <ContentWrap> <!-- 搜索工作栏 --> <Search :schema="Itembasic.allSchemas.searchSchema" @search="setSearchParams" @reset="setSearchParams" /> </ContentWrap> <!-- 列表头部 --> <TableHead :HeadButttondata="HeadButttondata" @button-base-click="buttonBaseClick" :tableColumns="tableColumns" :routeName="routeName" @updataTableColumns="updataTableColumns" @searchFormClick="searchFormClick" :allSchemas="Itembasic.allSchemas" /> <!-- 列表 --> <ContentWrap> <Table v-clientTable :columns="tableColumns" :data="tableObject.tableList" :loading="tableObject.loading" :pagination="{ total: tableObject.total }" v-model:pageSize="tableObject.pageSize" v-model:currentPage="tableObject.currentPage"> <template #code="{row}"> <el-button type="primary" link @click="openDetail(row, '代码', row.code)"> <span>{{ row.code }}</span> </el-button> </template> <template #action="{ row }"> <ButtonBase :Butttondata="butttondata" @button-base-click="buttonTableClick($event,row)" /> </template> </Table> </ContentWrap> <!-- 表单弹窗:添加/修改 --> <BasicForm ref="basicFormRef" @success="formsSuccess" :rules="rules" :formAllSchemas="Itembasic.allSchemas" :apiUpdate="ItembasicApi.updateItembasic" :apiCreate="ItembasicApi.createItembasic" :isBusiness="false" @onChange="onChange" /> <!-- 详情 --> <Detail ref="detailRef" :tabs="ItemBasicTabsList" :isBasic="true" :allSchemas="allSchemas" @changeTabs="changeTabs" :detailAllSchemas="detailAllSchemas" :apiPage="apiPage" :tabsExtend="tabsExtend" :tableObjectExtend="tableObjectExtend" /> <!-- 导入 --> <ImportForm ref="importFormRef" :url="ItembasicApi.importUrl" :importTemplateData="importTemplateData" @success="importSuccess" /> </template> <script setup lang="ts"> import download from '@/utils/download' import * as ItembasicApi from '@/api/wms/itembasic' import Detail from '@/components/Detail/src/Detail.vue' import ImportForm from '@/components/ImportForm/src/ImportForm.vue' import { Itembasic, rules } from './itembasic.data' import * as defaultButtons from '@/utils/disposition/defaultButtons' import { ItemBasicTabsList } from '@/utils/disposition/tabsList' import { Supplieritem } from '@/views/wms/basicDataManage/supplierManage/supplieritem/supplieritem.data' import * as SupplieritemApi from '@/api/wms/supplieritem' import { Customeritem } from '@/views/wms/basicDataManage/customerManage/customeritem/customeritem.data' import * as CustomeritemApi from '@/api/wms/customeritem' import { PurchaseMain } from '@/views/wms/purchasereceiptManage/supplierdeliver/purchaseMain/purchaseMain.data' import * as PurchaseDetailApi from '@/api/wms/purchaseDetail' import { PurchasePlanMain } from '@/views/wms/purchasereceiptManage/supplierdeliver/purchasePlanMain/purchasePlanMain.data' import * as PurchasePlanDetailApi from '@/api/wms/purchasePlanDetail' import { Balance } from '@/views/wms/inventoryManage/balance/balance.data' import * as BalanceApi from '@/api/wms/balance' import { Expectout } from '@/views/wms/inventoryManage/expectout/expectout.data' import * as ExpectoutApi from '@/api/wms/expectout' import { Expectin } from '@/views/wms/inventoryManage/expectin/expectin.data' import * as ExpectinApi from '@/api/wms/expectin' import { formatDate } from '@/utils/formatTime' import { usePageLoading } from '@/hooks/web/usePageLoading' const { loadStart, loadDone } = usePageLoading() //物料基础信息 defineOptions({ name: 'Itembasic' }) const tabsExtend = ref(false) const allSchemas = ref(Itembasic.allSchemas) const detailAllSchemas = ref() const apiPage = ref() const itemCodeRow = ref() const tableObjectExtend = ref() const { tableObject, tableMethods } = useTable({ getListApi: ItembasicApi.getItembasicPage // 分页接口 }) const importFormRef = ref() // 列表头部按钮 const HeadButttondata = [ defaultButtons.defaultAddBtn(null), // 新增 defaultButtons.defaultImportBtn(null), // 导入 defaultButtons.defaultExportBtn(null), // 导出 defaultButtons.defaultFreshBtn(null), // 刷新 defaultButtons.defaultFilterBtn(null), // 筛选 defaultButtons.defaultSetBtn(null), // 设置 // { // label: '自定义扩展按钮', // name: 'zdy', // hide: false, // type: 'primary', // icon: 'Select', // color: '' // }, ] // 获得表格的各种操作 const { getList, setSearchParams } = tableMethods const message = useMessage() // 消息弹窗 const { t } = useI18n() // 国际化 const route = useRoute() // 路由信息 const routeName = ref() routeName.value = route.name const tableColumns = ref(Itembasic.allSchemas.tableColumns) // 字段设置 更新主列表字段 const updataTableColumns = (val) => { tableColumns.value = val } const exportLoading = ref(false) // 导出的加载中 // 头部按钮事件 const buttonBaseClick = (val, item) => { if (val == 'add') { // 新增 openForm('create') } else if (val == 'import') { // 导入 handleImport() } else if (val == 'export') { // 导出 handleExport() } else if (val == 'refresh') { // 刷新 if (tableObject.params.filters && tableObject.params.filters.length > 0 ) { searchFormClick({ filters: tableObject.params.filters }) } else { getList() } } else { // 其他按钮 console.log('其他按钮', item) } } // 列表-操作按钮 const butttondata = [ defaultButtons.mainListEditBtn({hasPermi:'wms:itembasic:update'}), // 编辑 defaultButtons.mainListDeleteBtn({hasPermi:'wms:itembasic:delete'}), // 删除 ] // 列表-操作按钮事件 const buttonTableClick = (val, row) => { if (val == 'edit') { // 编辑 openForm('update', row) } else if (val == 'delete') { // 删除 handleDelete(row.id) } } onMounted(async () => { importTemplateData.templateUrl = await ItembasicApi.importTemplate() }) const handleImport = () => { importFormRef.value.open() } // 导入附件弹窗所需的参数 const importTemplateData = reactive({ templateUrl: '', templateTitle: `【${route.meta.title}】导入模版.xlsx` }) // 导入成功之后 const importSuccess = () => { getList() } /** 添加/修改操作 */ const basicFormRef = ref() const openForm = (type: string, id?: number) => { if(type == "update"){ Itembasic.allSchemas.formSchema.forEach((item) => { if (item.field == 'code') { item.componentProps.disabled = true } }) }else { Itembasic.allSchemas.formSchema.forEach((item) => { if (item.field == 'code') { item.componentProps.disabled = false } }) } basicFormRef.value.open(type, id) } /** * 监听改变事件 * @param field 当前操作字段 * @param cur 改变后值 */ const onChange = (field, cur) => { // 当有效天数 和 生效时间 发生变化 if (field == 'validityDays' || field == 'activeTime') { // 根据 有效天数 和 生效时间 计算 失效时间 basicFormRef.value.formRef.formModel.expireTime = basicFormRef.value.formRef.formModel.activeTime + basicFormRef.value.formRef.formModel.validityDays * 24 * 60 * 60 * 1000 } } // form表单提交 const formsSuccess = async (formType,data) => { var isHave =Itembasic.allSchemas.formSchema.some(function (item) { return item.field === 'activeTime' || item.field === 'expireTime'; }) if(isHave){ if(data.activeTime && data.expireTime && data.activeTime >=data.expireTime){ message.error('失效时间要大于生效时间') return } } if(data.activeTime==0)data.activeTime = null; if(data.expireTime==0)data.expireTime = null; basicFormRef.value.formLoading = true if (formType === 'create') { await ItembasicApi.createItembasic(data) message.success(t('common.createSuccess')) } else { await ItembasicApi.updateItembasic(data) message.success(t('common.updateSuccess')) } basicFormRef.value.formLoading = false basicFormRef.value.dialogVisible = false if (formType === 'create') { getList() }else{ buttonBaseClick('refresh',null) } } const detailRef = ref() const openDetail = (row: any, titleName: any, titleValue: any) => { itemCodeRow.value = row.code detailRef.value.openDetail(row, titleName, titleValue, 'basicItembasic') } /** 删除按钮操作 */ const handleDelete = async (id: number) => { try { // 删除的二次确认 await message.delConfirm() tableObject.loading = true // 发起删除 await ItembasicApi.deleteItembasic(id) tableObject.loading = false message.success(t('common.delSuccess')) // 刷新列表 buttonBaseClick('refresh',null) } catch { } } /** 导出按钮操作 */ const handleExport = async () => { try { // 导出的二次确认 await message.exportConfirm() // 发起导出 loadStart() const excelTitle = ref(route.meta.title) const data = await ItembasicApi.exportItembasic(tableObject.params) download.excel(data, `【${excelTitle.value}】【${formatDate(new Date())}】.xlsx`) } catch { } finally { loadDone() } } // 筛选提交 const searchFormClick = (searchData) => { tableObject.params = { isSearch: true, filters: searchData.filters } getList() // 刷新当前列表 } // tabs 切换事件 const changeTabs = (item) => { if(item.prop == 'SupplierItems'){ tabsExtend.value = true apiPage.value = SupplieritemApi.getSupplieritemPage detailAllSchemas.value = Supplieritem.allSchemas } else if(item.prop == 'CustomerItems'){ tabsExtend.value = true apiPage.value = CustomeritemApi.getCustomeritemPage detailAllSchemas.value = Customeritem.allSchemas } else if(item.prop == 'PurchaseOrder'){ tabsExtend.value = true apiPage.value = PurchaseDetailApi.getPurchaseDetailPageWMS detailAllSchemas.value = PurchaseMain.allSchemas } else if(item.prop == 'PurchasingPlan'){ tabsExtend.value = true apiPage.value = PurchasePlanDetailApi.getPurchasePlanDetailPagewms detailAllSchemas.value = PurchasePlanMain.allSchemas } else if(item.prop == 'InventoryBalance'){ tabsExtend.value = true apiPage.value = BalanceApi.getBalancePage detailAllSchemas.value = JSON.parse(JSON.stringify(Balance.allSchemas)) } else if(item.prop == 'ExpectedIn'){ tabsExtend.value = true apiPage.value = ExpectinApi.getExpectinPage detailAllSchemas.value = Expectin.allSchemas } else if(item.prop == 'ExpectedOut'){ tabsExtend.value = true apiPage.value = ExpectoutApi.getExpectoutPage detailAllSchemas.value = Expectout.allSchemas } else { tabsExtend.value = false allSchemas.value = Itembasic.allSchemas } detailAllSchemas.value.tableColumns.map((item,index) => { if (item.field == 'action') { detailAllSchemas.value.tableColumns.splice(index,1) } }) // 当前物料代码作为条件 tableObjectExtend.value = [{ key: 'itemCode', value: itemCodeRow.value }] } /** 初始化 **/ onMounted(() => { getList() }) </script>