|
|
@ -95,6 +95,8 @@ import TableHead from '@/components/TableHead/src/TableHead.vue' |
|
|
|
import ImportForm from '@/components/ImportForm/src/ImportForm.vue' |
|
|
|
import Detail from '@/components/Detail/src/Detail.vue' |
|
|
|
import { debug } from 'console' |
|
|
|
import { DeliTime } from '../deliTime/deliTime.data' |
|
|
|
import * as DeliTimeApi from '@/api/wms/deliTime' |
|
|
|
|
|
|
|
defineOptions({ name: 'SupplierAddrDeliTime' }) |
|
|
|
|
|
|
@ -349,7 +351,9 @@ const formsSuccess = async (formType,data) => { |
|
|
|
/** 详情操作 */ |
|
|
|
const detailRef = ref() |
|
|
|
const detailData = ref({}) |
|
|
|
const masterId = ref(0) |
|
|
|
const openDetail = (row: any, titleName: any, titleValue: any) => { |
|
|
|
masterId.value = row.masterId |
|
|
|
detailData.value = row |
|
|
|
detailRef.value.openDetail(row, titleName, titleValue, 'basicSupplierAddrDeliTimeDetail') |
|
|
|
} |
|
|
@ -412,11 +416,11 @@ const tableSelectionDelete = (selection) => { |
|
|
|
const searchTableRef = ref() |
|
|
|
const detailOpenForm = (type, row) => { |
|
|
|
searchTableRef.value.open( |
|
|
|
'选择设备保养项', |
|
|
|
SupplierAddrDeliTime.allSchemas, |
|
|
|
SupplierAddrDeliTimeDetailApi.getSupplierAddrDeliTimeDetailPage, |
|
|
|
'便次时间配置', |
|
|
|
DeliTime.allSchemas, |
|
|
|
DeliTimeApi.getDeliTimePage, |
|
|
|
null, |
|
|
|
SupplierAddrDeliTime.allSchemas.searchSchema, |
|
|
|
DeliTime.allSchemas.searchSchema, |
|
|
|
true, |
|
|
|
null, |
|
|
|
null, |
|
|
@ -431,6 +435,12 @@ const submitItem = async (formType, data, val, tableList) => { |
|
|
|
console.log('data',data) |
|
|
|
console.log('val',val) |
|
|
|
console.log('tableList',tableList) |
|
|
|
val.forEach((item) => { |
|
|
|
item.masterId = masterId; |
|
|
|
}); |
|
|
|
await SupplierAddrDeliTimeDetailApi.addSupplierAddrDeliTimeDetail(val) |
|
|
|
message.success(t('common.createSuccess')) |
|
|
|
detailRef.value.updateList() |
|
|
|
} |
|
|
|
/** 初始化 **/ |
|
|
|
onMounted(async () => { |
|
|
|