|
|
@ -1,23 +1,31 @@ |
|
|
|
<template> |
|
|
|
<ContentWrap> |
|
|
|
<!-- 搜索工作栏 --> |
|
|
|
<Search :schema="[...InspectionQ3Main.allSchemas.searchSchema,...InspectionQ3Detail.allSchemas.searchSchema]" @search="setSearchParams" @reset="setSearchParams" /> |
|
|
|
<Search |
|
|
|
:schema="[ |
|
|
|
...InspectionQ3Main.allSchemas.searchSchema, |
|
|
|
...InspectionQ3Detail.allSchemas.searchSchema |
|
|
|
]" |
|
|
|
@search="setSearchParams" |
|
|
|
@reset="setSearchParams" |
|
|
|
/> |
|
|
|
</ContentWrap> |
|
|
|
|
|
|
|
<!-- 列表头部 --> |
|
|
|
<TableHead |
|
|
|
:HeadButttondata="HeadButttondata" |
|
|
|
@button-base-click="buttonBaseClick" |
|
|
|
:routeName="routeName" |
|
|
|
@updataTableColumns="updataTableColumns" |
|
|
|
@searchFormClick="searchFormClick" |
|
|
|
:allSchemas="InspectionQ3Main.allSchemas" |
|
|
|
:detailAllSchemas="InspectionQ3Detail.allSchemas" |
|
|
|
/> |
|
|
|
<!-- 列表头部 --> |
|
|
|
<TableHead |
|
|
|
:HeadButttondata="HeadButttondata" |
|
|
|
@button-base-click="buttonBaseClick" |
|
|
|
:routeName="routeName" |
|
|
|
@updataTableColumns="updataTableColumns" |
|
|
|
@searchFormClick="searchFormClick" |
|
|
|
:allSchemas="InspectionQ3Main.allSchemas" |
|
|
|
:detailAllSchemas="InspectionQ3Detail.allSchemas" |
|
|
|
/> |
|
|
|
|
|
|
|
<!-- 列表 --> |
|
|
|
<ContentWrap> |
|
|
|
<Table v-clientTable |
|
|
|
<Table |
|
|
|
v-clientTable |
|
|
|
:columns="tableColumns" |
|
|
|
:data="tableObject.tableList" |
|
|
|
:loading="tableObject.loading" |
|
|
@ -28,13 +36,16 @@ |
|
|
|
v-model:currentPage="tableObject.currentPage" |
|
|
|
v-model:sort="tableObject.sort" |
|
|
|
> |
|
|
|
<template #number="{row}"> |
|
|
|
<template #number="{ row }"> |
|
|
|
<el-button type="primary" link @click="openDetail(row, '单据号', row.number)"> |
|
|
|
<span>{{ row.number }}</span> |
|
|
|
</el-button> |
|
|
|
</template> |
|
|
|
<template #action="{ row,$index }"> |
|
|
|
<ButtonBase :Butttondata="butttondata(row,$index)" @button-base-click="buttonTableClick($event,row)" /> |
|
|
|
<template #action="{ row, $index }"> |
|
|
|
<ButtonBase |
|
|
|
:Butttondata="butttondata(row, $index)" |
|
|
|
@button-base-click="buttonTableClick($event, row)" |
|
|
|
/> |
|
|
|
</template> |
|
|
|
</Table> |
|
|
|
</ContentWrap> |
|
|
@ -59,15 +70,17 @@ |
|
|
|
@tableSelectionDelete="tableSelectionDelete" |
|
|
|
@searchTableSuccess="searchTableSuccess" |
|
|
|
@submitForm="submitForm" |
|
|
|
@onChange="onChange" |
|
|
|
@inputNumberChange="inputNumberChange" |
|
|
|
@clearSearchInput="onChange" |
|
|
|
:sumFormDataByTableCustom ="(formRef,formModel,tableData)=>{ |
|
|
|
tableData.forEach(item=>{ |
|
|
|
item.qty = item.countQty*item.packQty |
|
|
|
}) |
|
|
|
}" |
|
|
|
:sumFormDataByTableCustom=" |
|
|
|
(formRef, formModel, tableData) => { |
|
|
|
tableData.forEach((item) => { |
|
|
|
item.qty = item.countQty * item.packQty |
|
|
|
}) |
|
|
|
} |
|
|
|
" |
|
|
|
> |
|
|
|
<!-- <template #default="{row}"> |
|
|
|
<!-- <template #default="{row}"> |
|
|
|
<el-input-number disabled v-model="row.qty"></el-input-number> |
|
|
|
</template> --> |
|
|
|
</BasicForm> |
|
|
@ -86,19 +99,26 @@ |
|
|
|
@searchTableSuccessDetail="searchTableSuccessDetail" |
|
|
|
:detailValidate="detailValidate" |
|
|
|
/> |
|
|
|
|
|
|
|
</template> |
|
|
|
|
|
|
|
<script setup lang="ts"> |
|
|
|
import download from '@/utils/download' |
|
|
|
import { CACHE_KEY, useCache } from '@/hooks/web/useCache' |
|
|
|
import { InspectionQ3Main,InspectionQ3MainRules,InspectionQ3Detail,InspectionQ3DetailRules } from './inspectionQ3.data' |
|
|
|
import { |
|
|
|
InspectionQ3Main, |
|
|
|
InspectionQ3MainRules, |
|
|
|
InspectionQ3Detail, |
|
|
|
InspectionQ3DetailRules |
|
|
|
} from './inspectionQ3.data' |
|
|
|
import * as InspectionQ3MainApi from '@/api/qms/inspectionQ3/inspectionQ3Main' |
|
|
|
import * as InspectionQ3DetailApi from '@/api/qms/inspectionQ3/inspectionQ3Detail' |
|
|
|
import * as defaultButtons from '@/utils/disposition/defaultButtons' |
|
|
|
import * as ProductionlineitemApi from '@/api/wms/productionlineitem' |
|
|
|
import * as StdcostpriceApi from '@/api/wms/stdcostprice' |
|
|
|
import { formatDate } from '@/utils/formatTime' |
|
|
|
import { async } from '@antv/x6/lib/registry/marker/async' |
|
|
|
import { useUserStore } from '@/store/modules/user' |
|
|
|
const userStore = useUserStore() |
|
|
|
|
|
|
|
// 发料申请 |
|
|
|
defineOptions({ name: 'InspectionQ3Main' }) |
|
|
@ -109,7 +129,10 @@ const { t } = useI18n() // 国际化 |
|
|
|
const route = useRoute() // 路由信息 |
|
|
|
const routeName = ref() |
|
|
|
routeName.value = route.name |
|
|
|
const tableColumns = ref([...InspectionQ3Main.allSchemas.tableColumns,...InspectionQ3Detail.allSchemas.tableMainColumns]) |
|
|
|
const tableColumns = ref([ |
|
|
|
...InspectionQ3Main.allSchemas.tableColumns, |
|
|
|
...InspectionQ3Detail.allSchemas.tableMainColumns |
|
|
|
]) |
|
|
|
|
|
|
|
// 字段设置 更新主列表字段 |
|
|
|
const updataTableColumns = (val) => { |
|
|
@ -118,69 +141,63 @@ const updataTableColumns = (val) => { |
|
|
|
|
|
|
|
// 查询页面返回 |
|
|
|
const priceObj = ref() |
|
|
|
const searchTableSuccess = (formField, searchField, val, formRef, type, row ) => { |
|
|
|
nextTick(async() => { |
|
|
|
const searchTableSuccess = (formField, searchField, val, formRef, type, row) => { |
|
|
|
nextTick(async () => { |
|
|
|
const setV = {} |
|
|
|
if (type == 'tableForm') { |
|
|
|
// 明细查询页赋值 |
|
|
|
if (formField == 'itemCode') { |
|
|
|
val.forEach(item=>{ |
|
|
|
let tableForm = JSON.parse(JSON.stringify(tableFormKeys)) |
|
|
|
if(tableData.value.find(item1=>item1['itemCode'] == item['itemCode'])) return |
|
|
|
const newRow = JSON.parse(JSON.stringify({...tableForm,...item})) |
|
|
|
newRow['itemCode'] = item['code'] |
|
|
|
newRow['uom'] = item['uom'] |
|
|
|
tableData.value.push(newRow) |
|
|
|
}) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// row['uom'] = val[0]['uom'] |
|
|
|
// console.log(formRef.formModel.qty) |
|
|
|
// // let res = await ProductionlineitemApi.selectItemCodeToProductionLineCode(val[0].code) |
|
|
|
// ProductionlineitemApi.selectItemCodeToProductionLineCode(val[0].code).then((res) => { |
|
|
|
// console.log(res) |
|
|
|
// if (res?.length > 0) { |
|
|
|
// formRef.formModel.defectLocation = res[0].productionLineCode |
|
|
|
// InspectionQ3Detail.allSchemas.formSchema.forEach(item=>{ |
|
|
|
// if (item.field == 'defectLocation') { |
|
|
|
// item.componentProps.options = res |
|
|
|
// } |
|
|
|
// }) |
|
|
|
// } |
|
|
|
// }) |
|
|
|
// const params = { |
|
|
|
// by: "ASC", |
|
|
|
// filters: [{column: "itemCode", action: "==", value: val[0].code}], |
|
|
|
// pageNo: 1, |
|
|
|
// pageSize: 500, |
|
|
|
// sort: "" |
|
|
|
// } |
|
|
|
// params.isSearch = true |
|
|
|
// StdcostpriceApi.getStdcostpricePage(params).then((res) => { |
|
|
|
// if (res.list?.length > 0) { |
|
|
|
// priceObj.value = res.list[0] |
|
|
|
// formRef.setValues({ |
|
|
|
// amount: (parseFloat(formRef.formModel.qty) * parseFloat(priceObj.value.price)).toFixed(6) |
|
|
|
// }) |
|
|
|
// } |
|
|
|
|
|
|
|
// }) |
|
|
|
// val.forEach(item=>{ |
|
|
|
|
|
|
|
// }) |
|
|
|
const index1 = 0 |
|
|
|
setTableFormsValues(val, index1) |
|
|
|
|
|
|
|
// row['uom'] = val[0]['uom'] |
|
|
|
// console.log(formRef.formModel.qty) |
|
|
|
// // let res = await ProductionlineitemApi.selectItemCodeToProductionLineCode(val[0].code) |
|
|
|
// ProductionlineitemApi.selectItemCodeToProductionLineCode(val[0].code).then((res) => { |
|
|
|
// console.log(res) |
|
|
|
// if (res?.length > 0) { |
|
|
|
// formRef.formModel.defectLocation = res[0].productionLineCode |
|
|
|
// InspectionQ3Detail.allSchemas.formSchema.forEach(item=>{ |
|
|
|
// if (item.field == 'defectLocation') { |
|
|
|
// item.componentProps.options = res |
|
|
|
// } |
|
|
|
// }) |
|
|
|
// } |
|
|
|
// }) |
|
|
|
// const params = { |
|
|
|
// by: "ASC", |
|
|
|
// filters: [{column: "itemCode", action: "==", value: val[0].code}], |
|
|
|
// pageNo: 1, |
|
|
|
// pageSize: 500, |
|
|
|
// sort: "" |
|
|
|
// } |
|
|
|
// params.isSearch = true |
|
|
|
// StdcostpriceApi.getStdcostpricePage(params).then((res) => { |
|
|
|
// if (res.list?.length > 0) { |
|
|
|
// priceObj.value = res.list[0] |
|
|
|
// formRef.setValues({ |
|
|
|
// amount: (parseFloat(formRef.formModel.qty) * parseFloat(priceObj.value.price)).toFixed(6) |
|
|
|
// }) |
|
|
|
// } |
|
|
|
|
|
|
|
// }) |
|
|
|
} |
|
|
|
if (formField == 'costCode') { |
|
|
|
console.log(11111) |
|
|
|
row['costCode'] = val[0]['costcentreCode'] |
|
|
|
} |
|
|
|
if (formField == 'q1Number') { |
|
|
|
//Q1通知单号 |
|
|
|
let list = [] |
|
|
|
val.forEach((item) => { |
|
|
|
list.push(item[searchField]) |
|
|
|
}) |
|
|
|
setV[formField] = list.join(',') |
|
|
|
formRef.setValues(setV) |
|
|
|
} |
|
|
|
if (formField == 'costCode') { |
|
|
|
console.log(11111) |
|
|
|
row['costCode'] = val[0]['costcentreCode'] |
|
|
|
} |
|
|
|
if (formField == 'q1Number') { |
|
|
|
//Q1通知单号 |
|
|
|
let list = [] |
|
|
|
val.forEach((item) => { |
|
|
|
list.push(item[searchField]) |
|
|
|
}) |
|
|
|
setV[formField] = list.join(',') |
|
|
|
formRef.setValues(setV) |
|
|
|
} |
|
|
|
} else { |
|
|
|
const setV = {} |
|
|
|
setV[formField] = val[0][searchField] |
|
|
@ -188,13 +205,55 @@ const searchTableSuccess = (formField, searchField, val, formRef, type, row ) => |
|
|
|
} |
|
|
|
}) |
|
|
|
} |
|
|
|
const onChange =(field,e)=>{ |
|
|
|
if (field == 'qty') { |
|
|
|
formRef.value.formRef.formModel.amount = (parseFloat( formRef.value.formRef.formModel.qty) * parseFloat( priceObj.value.price)).toFixed(6) |
|
|
|
const setTableFormsValues = async (val, index1) => { |
|
|
|
if (index1 <= val.length - 1) { |
|
|
|
let tableForm = JSON.parse(JSON.stringify(tableFormKeys)) |
|
|
|
if (tableData.value.find((item1) => item1['itemCode'] == val[index1]['itemCode'])) return |
|
|
|
const newRow = JSON.parse(JSON.stringify({ ...tableForm, ...val[index1] })) |
|
|
|
newRow['itemCode'] = val[index1]['itemCode'] |
|
|
|
newRow['uom'] = val[index1]['uom'] |
|
|
|
newRow['qty'] = 0 |
|
|
|
newRow.defectLocation = val[index1]['productionLineCode'] |
|
|
|
await ProductionlineitemApi.selectItemCodeToProductionLineCode(val[index1].itemCode).then( |
|
|
|
(res) => { |
|
|
|
console.log(res) |
|
|
|
if (res?.length > 0) { |
|
|
|
newRow.defectLocationInitOptions = res |
|
|
|
} |
|
|
|
} |
|
|
|
) |
|
|
|
const params = { |
|
|
|
by: 'ASC', |
|
|
|
filters: [{ column: 'itemCode', action: '==', value: val[index1].itemCode }], |
|
|
|
pageNo: 1, |
|
|
|
pageSize: 500, |
|
|
|
sort: '' |
|
|
|
} |
|
|
|
params.isSearch = true |
|
|
|
await StdcostpriceApi.getStdcostpricePage(params).then((res) => { |
|
|
|
if (res.list?.length > 0) { |
|
|
|
priceObj.value = res.list[0] |
|
|
|
newRow['price'] = parseFloat(priceObj.value.price) |
|
|
|
newRow['amount']=(parseFloat(newRow['qty']) * parseFloat(priceObj.value.price)).toFixed(6) |
|
|
|
} |
|
|
|
}) |
|
|
|
tableData.value.push(newRow) |
|
|
|
index1++ |
|
|
|
setTableFormsValues(val, index1) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
const inputNumberChange = (field, index, row, val) => { |
|
|
|
if (field == 'qty') { |
|
|
|
row.amount = (parseFloat(row['qty']) * parseFloat(row.price)).toFixed(6) |
|
|
|
} |
|
|
|
formRef.value.formRef.formModel.summaryAmount =0 |
|
|
|
tableData.value.forEach(item=>{ |
|
|
|
formRef.value.formRef.formModel.summaryAmount += parseFloat(item.amount) |
|
|
|
}) |
|
|
|
} |
|
|
|
// 查询页面返回——详情 |
|
|
|
const searchTableSuccessDetail = (formField, searchField, val, formRef ) => { |
|
|
|
const searchTableSuccessDetail = (formField, searchField, val, formRef) => { |
|
|
|
nextTick(() => { |
|
|
|
const setV = {} |
|
|
|
if (formField == 'itemCode') { |
|
|
@ -216,23 +275,28 @@ const { getList, setSearchParams } = tableMethods |
|
|
|
|
|
|
|
// 列表头部按钮 |
|
|
|
const HeadButttondata = [ |
|
|
|
defaultButtons.defaultAddBtn({hasPermi:'qms:inspection-Q3-main:create'}), // 新增 |
|
|
|
defaultButtons.defaultExportBtn({hasPermi:'qms:inspection-Q3-main:export'}), // 导出 |
|
|
|
defaultButtons.defaultAddBtn({ hasPermi: 'qms:inspection-Q3-main:create' }), // 新增 |
|
|
|
defaultButtons.defaultExportBtn({ hasPermi: 'qms:inspection-Q3-main:export' }), // 导出 |
|
|
|
defaultButtons.defaultFreshBtn(null), // 刷新 |
|
|
|
defaultButtons.defaultFilterBtn(null), // 筛选 |
|
|
|
defaultButtons.defaultSetBtn(null), // 设置 |
|
|
|
defaultButtons.defaultSetBtn(null) // 设置 |
|
|
|
] |
|
|
|
|
|
|
|
// 头部按钮事件 |
|
|
|
const buttonBaseClick = (val, item) => { |
|
|
|
if (val == 'add') { // 新增 |
|
|
|
if (val == 'add') { |
|
|
|
// 新增 |
|
|
|
openForm('create') |
|
|
|
} else if (val == 'export') { // 导出 |
|
|
|
} else if (val == 'export') { |
|
|
|
// 导出 |
|
|
|
handleExport() |
|
|
|
} else if (val == 'refresh') { // 刷新 |
|
|
|
getList() |
|
|
|
} else if (val == 'filtrate') { // 筛选 |
|
|
|
} else { // 其他按钮 |
|
|
|
} else if (val == 'refresh') { |
|
|
|
// 刷新 |
|
|
|
getList() |
|
|
|
} else if (val == 'filtrate') { |
|
|
|
// 筛选 |
|
|
|
} else { |
|
|
|
// 其他按钮 |
|
|
|
console.log('其他按钮', item) |
|
|
|
} |
|
|
|
} |
|
|
@ -247,12 +311,14 @@ const isShowMainButton = (row, val) => { |
|
|
|
} |
|
|
|
|
|
|
|
// 列表-操作按钮 |
|
|
|
const butttondata = (row,$index) => { |
|
|
|
const findIndex = row['masterId']?tableObject.tableList.findIndex(item=>item['masterId'] == row['masterId']):-1 |
|
|
|
if(findIndex>-1&&findIndex<$index){ |
|
|
|
const butttondata = (row, $index) => { |
|
|
|
const findIndex = row['masterId'] |
|
|
|
? tableObject.tableList.findIndex((item) => item['masterId'] == row['masterId']) |
|
|
|
: -1 |
|
|
|
if (findIndex > -1 && findIndex < $index) { |
|
|
|
return [] |
|
|
|
} |
|
|
|
return [ |
|
|
|
return [ |
|
|
|
defaultButtons.mainListEditBtn({ |
|
|
|
hide: isShowMainButton(row, ['0']), |
|
|
|
hasPermi: 'qms:inspection-Q3-main:update' |
|
|
@ -268,11 +334,9 @@ const butttondata = (row,$index) => { |
|
|
|
] |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 列表-操作按钮事件 |
|
|
|
const buttonTableClick = async (val, row) => { |
|
|
|
if (val == 'edit') { |
|
|
|
if (val == 'edit') { |
|
|
|
// 编辑 |
|
|
|
openForm('update', row) |
|
|
|
} else if (val == 'delete') { |
|
|
@ -295,21 +359,21 @@ const handleFinish = async (id: number) => { |
|
|
|
|
|
|
|
/** 添加/修改操作 */ |
|
|
|
const formRef = ref() |
|
|
|
const openForm =async (type: string, row?: number) => { |
|
|
|
const openForm = async (type: string, row?: any) => { |
|
|
|
tableData.value = [] // 重置明细数据 |
|
|
|
// 编辑时 车间代码不可修改 |
|
|
|
if (type == 'update') { |
|
|
|
// 修改 tableform 属性 |
|
|
|
InspectionQ3Main.allSchemas.formSchema.map(itemColumns => { |
|
|
|
if(itemColumns.field == 'workshopCode') { |
|
|
|
InspectionQ3Main.allSchemas.formSchema.map((itemColumns) => { |
|
|
|
if (itemColumns.field == 'workshopCode') { |
|
|
|
itemColumns.componentProps.isSearchList = false |
|
|
|
itemColumns.componentProps.disabled = true |
|
|
|
} |
|
|
|
}) |
|
|
|
} else { |
|
|
|
// 修改 tableform 属性 |
|
|
|
InspectionQ3Main.allSchemas.formSchema.map(itemColumns => { |
|
|
|
if(itemColumns.field == 'workshopCode') { |
|
|
|
InspectionQ3Main.allSchemas.formSchema.map((itemColumns) => { |
|
|
|
if (itemColumns.field == 'workshopCode') { |
|
|
|
itemColumns.componentProps.isSearchList = true |
|
|
|
itemColumns.componentProps.disabled = false |
|
|
|
} |
|
|
@ -323,9 +387,11 @@ const { wsCache } = useCache() |
|
|
|
/** 详情操作 */ |
|
|
|
const detailRef = ref() |
|
|
|
const openDetail = (row: any, titleName: any, titleValue: any) => { |
|
|
|
const departmentCode = wsCache.get(CACHE_KEY.DEPT).find((account) => account.id == row.departmentCode)?.name |
|
|
|
const departmentCode = wsCache |
|
|
|
.get(CACHE_KEY.DEPT) |
|
|
|
.find((account) => account.id == row.departmentCode)?.name |
|
|
|
if (departmentCode) row.departmentCode = JSON.parse(JSON.stringify(departmentCode)) |
|
|
|
detailRef.value.openDetail(row, titleName, titleValue,"requestIssueMain") |
|
|
|
detailRef.value.openDetail(row, titleName, titleValue, 'requestIssueMain') |
|
|
|
} |
|
|
|
|
|
|
|
/** 删除按钮操作 */ |
|
|
@ -339,7 +405,7 @@ const handleDelete = async (id: number) => { |
|
|
|
tableObject.loading = false |
|
|
|
message.success(t('common.delSuccess')) |
|
|
|
// 刷新列表 |
|
|
|
buttonBaseClick('refresh',null) |
|
|
|
buttonBaseClick('refresh', null) |
|
|
|
} catch {} |
|
|
|
} |
|
|
|
|
|
|
@ -360,10 +426,10 @@ const handleExport = async () => { |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* tableForm方法 |
|
|
|
*/ |
|
|
|
* tableForm方法 |
|
|
|
*/ |
|
|
|
const tableFormKeys = {} |
|
|
|
InspectionQ3Detail.allSchemas.tableFormColumns.forEach(item => { |
|
|
|
InspectionQ3Detail.allSchemas.tableFormColumns.forEach((item) => { |
|
|
|
tableFormKeys[item.field] = item.default ? item.default : '' |
|
|
|
}) |
|
|
|
const tableData = ref([]) |
|
|
@ -381,21 +447,22 @@ const handleAddTable = () => { |
|
|
|
// 删除明细 |
|
|
|
const handleDeleteTable = (item, index) => { |
|
|
|
let itemIndex = tableData.value.indexOf(item) |
|
|
|
if(itemIndex>-1){ |
|
|
|
if (itemIndex > -1) { |
|
|
|
tableData.value.splice(itemIndex, 1) |
|
|
|
} |
|
|
|
} |
|
|
|
const tableSelectionDelete = (selection) => { |
|
|
|
tableData.value = tableData.value.filter(item => !selection.includes(item)) |
|
|
|
tableData.value = tableData.value.filter((item) => !selection.includes(item)) |
|
|
|
} |
|
|
|
// 主子数据 提交 |
|
|
|
const submitForm = async (formType, submitData) => { |
|
|
|
let data = {...submitData} |
|
|
|
if(data.masterId){ |
|
|
|
let data = { ...submitData } |
|
|
|
if (data.masterId) { |
|
|
|
data.id = data.masterId |
|
|
|
} |
|
|
|
data.responUser = userStore.getUser.nickname |
|
|
|
data.subList = tableData.value // 拼接子表数据参数 |
|
|
|
if(tableData.value.find(item => (item.qty <= 0))) { |
|
|
|
if (tableData.value.find((item) => item.qty <= 0)) { |
|
|
|
message.warning('数量必须大于0') |
|
|
|
formRef.value.formLoading = false |
|
|
|
return |
|
|
@ -430,8 +497,8 @@ const submitForm = async (formType, submitData) => { |
|
|
|
// 刷新当前列表 |
|
|
|
if (formType === 'create') { |
|
|
|
getList() |
|
|
|
}else{ |
|
|
|
buttonBaseClick('refresh',null) |
|
|
|
} else { |
|
|
|
buttonBaseClick('refresh', null) |
|
|
|
} |
|
|
|
} finally { |
|
|
|
formRef.value.formLoading = false |
|
|
@ -440,10 +507,10 @@ const submitForm = async (formType, submitData) => { |
|
|
|
|
|
|
|
// 子表新增/编辑校验 |
|
|
|
const detailValidate = async (data) => { |
|
|
|
// let rs = false |
|
|
|
// TODO: 单一新编/编辑,校验是否与其他子数据存在生产线工位有不同数据情况 |
|
|
|
return true |
|
|
|
} |
|
|
|
// let rs = false |
|
|
|
// TODO: 单一新编/编辑,校验是否与其他子数据存在生产线工位有不同数据情况 |
|
|
|
return true |
|
|
|
} |
|
|
|
|
|
|
|
/** 导入 */ |
|
|
|
const importFormRef = ref() |
|
|
|