|
|
|
@ -22,11 +22,11 @@
|
|
|
|
|
<a-col :xs="24" :sm="8"> |
|
|
|
|
<a-form-model-item label="入目标库" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="storageLocation"> |
|
|
|
|
<!-- <a-input v-decorator="['storageLocation']" placeholder="请输入目标库"></a-input>--> |
|
|
|
|
<j-select-depart v-decorator="['storageLocation']" :multiple="false" /> |
|
|
|
|
<j-select-depart v-decorator="['storageLocation',validatorRules.storageLocation]" :multiple="false" /> |
|
|
|
|
</a-form-model-item> |
|
|
|
|
</a-col> |
|
|
|
|
<a-col :span="8"> |
|
|
|
|
<a-form-item label="关联预算流程" :labelCol="labelCol" :wrapperCol="wrapperCol"> |
|
|
|
|
<a-form-item label="关联采购流程" :labelCol="labelCol" :wrapperCol="wrapperCol"> |
|
|
|
|
<!-- <a-input v-decorator="['processUdgetPlanId']" placeholder="请输入关联预算流程" ></a-input>--> |
|
|
|
|
<r-plan v-decorator="['industrialPurchaseId']" :trigger-change="true" |
|
|
|
|
code="demo" field="name" orgFields="name" @mounted="getPlanList" @PlanIds="getPlanIds" |
|
|
|
@ -39,11 +39,16 @@
|
|
|
|
|
<a-form-model-item label="物资类型" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="type"> |
|
|
|
|
<!-- <a-input v-model="model.type" placeholder="请输入物资类型"></a-input>--> |
|
|
|
|
<!-- <a-input v-model="model.type" placeholder="请输入物资类型" ></a-input>--> |
|
|
|
|
<j-dict-select-tag type="list" v-decorator="['type',validatorRules.materialType]" |
|
|
|
|
<j-dict-select-tag type="list" v-decorator="['materialType']" |
|
|
|
|
dictCode="explosive_type" :trigger-change="true" disabled |
|
|
|
|
placeholder="请选择物资类型" @change="elect" /> |
|
|
|
|
</a-form-model-item> |
|
|
|
|
</a-col> |
|
|
|
|
<a-col :span="8" > |
|
|
|
|
<a-form-item label="批次" :labelCol="labelCol" :wrapperCol="wrapperCol"> |
|
|
|
|
<a-input-number v-decorator="['batch',validatorRules.batch]" placeholder="请输入批次!" style="width: 100%"/> |
|
|
|
|
</a-form-item> |
|
|
|
|
</a-col> |
|
|
|
|
<a-col :xs="24" :sm="8"> |
|
|
|
|
<a-form-model-item label="文件" :labelCol="labelCol3" :wrapperCol="wrapperCol3" prop="fileId"> |
|
|
|
|
<!-- <a-input v-decorator="['fileId']" placeholder="请输入文件"></a-input>--> |
|
|
|
@ -63,9 +68,10 @@
|
|
|
|
|
:dataSource="processIndustrialStorageMaterialTable.dataSource" |
|
|
|
|
:maxHeight="200" |
|
|
|
|
:disabled="formDisabled" |
|
|
|
|
@valueChange="onSelect" |
|
|
|
|
:rowNumber="true" |
|
|
|
|
:rowSelection="true" |
|
|
|
|
:actionButton="true" /> |
|
|
|
|
:actionButton="false"/> |
|
|
|
|
</a-tab-pane> |
|
|
|
|
</a-tabs> |
|
|
|
|
<div class="div_process"> |
|
|
|
@ -106,6 +112,7 @@ import JSelectCompany from '../../../../components/jeecgbiz/JSelectCompany'
|
|
|
|
|
import { getStringArry, httpAction,getAction,postFormAction } from '@api/manage' |
|
|
|
|
import pick from 'lodash.pick' |
|
|
|
|
import RPlan from '@comp/jeecg/RPlan' |
|
|
|
|
import { accMul } from '../../../../../common/common' |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export default { |
|
|
|
@ -150,18 +157,16 @@ export default {
|
|
|
|
|
materialType: { rules:[ |
|
|
|
|
{ required: true, message: '请输入物资类型!'}, |
|
|
|
|
]}, |
|
|
|
|
money: [ |
|
|
|
|
{ required: true, message: '请输入金额!' } |
|
|
|
|
], |
|
|
|
|
storageLocation: [ |
|
|
|
|
|
|
|
|
|
storageLocation: { rules:[ |
|
|
|
|
{ required: true, message: '请输入存储位置!' } |
|
|
|
|
], |
|
|
|
|
batch: [ |
|
|
|
|
]}, |
|
|
|
|
batch: { rules:[ |
|
|
|
|
{ required: true, message: '请输入批次!' } |
|
|
|
|
], |
|
|
|
|
departId: [ |
|
|
|
|
{ required: true, message: '请输入流程发起部门!' } |
|
|
|
|
] |
|
|
|
|
]}, |
|
|
|
|
industrialPurchaseId:{ rules: [ |
|
|
|
|
{ required: true, message: '请选择采购关联流程!' } |
|
|
|
|
]} |
|
|
|
|
}, |
|
|
|
|
// 新增时子表默认添加几行空数据 |
|
|
|
|
addDefaultRowNum: 1, |
|
|
|
@ -182,12 +187,40 @@ export default {
|
|
|
|
|
// defaultValue: '' |
|
|
|
|
// }, |
|
|
|
|
{ |
|
|
|
|
title: '民爆物资名称', |
|
|
|
|
key: 'industrialName', |
|
|
|
|
title: '火工品物料组', |
|
|
|
|
key: 'materialGroup', |
|
|
|
|
type: FormTypes.input, |
|
|
|
|
width: '200px', |
|
|
|
|
width: '150px', |
|
|
|
|
placeholder: '请输入${title}', |
|
|
|
|
defaultValue: '' |
|
|
|
|
defaultValue: '', |
|
|
|
|
disabled: true |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title: '火工品物料号', |
|
|
|
|
key: 'coding', |
|
|
|
|
type: FormTypes.input, |
|
|
|
|
width: '150px', |
|
|
|
|
placeholder: '请输入${title}', |
|
|
|
|
defaultValue: '', |
|
|
|
|
disabled: true |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title: '火工品名称', |
|
|
|
|
key: 'materialName', |
|
|
|
|
type: FormTypes.input, |
|
|
|
|
width: '150px', |
|
|
|
|
placeholder: '请输入${title}', |
|
|
|
|
defaultValue: '', |
|
|
|
|
disabled: true |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title: '单位', |
|
|
|
|
key: 'materialUnit', |
|
|
|
|
type: FormTypes.input, |
|
|
|
|
width: '60px', |
|
|
|
|
placeholder: '请输入${title}', |
|
|
|
|
defaultValue: '', |
|
|
|
|
disabled: true |
|
|
|
|
}, |
|
|
|
|
// { |
|
|
|
|
// title: '民爆物质', |
|
|
|
@ -198,95 +231,111 @@ export default {
|
|
|
|
|
// defaultValue: '' |
|
|
|
|
// }, |
|
|
|
|
{ |
|
|
|
|
title: '民爆物资类型', |
|
|
|
|
key: 'industrialType', |
|
|
|
|
title: '物资类型', |
|
|
|
|
key: 'materialType', |
|
|
|
|
type: FormTypes.input, |
|
|
|
|
width: '200px', |
|
|
|
|
width: '120px', |
|
|
|
|
placeholder: '请输入${title}', |
|
|
|
|
defaultValue: '' |
|
|
|
|
defaultValue: '', |
|
|
|
|
disabled: true |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title: '单价', |
|
|
|
|
key: 'price', |
|
|
|
|
key: 'materialPrice', |
|
|
|
|
type: FormTypes.input, |
|
|
|
|
width: '200px', |
|
|
|
|
width: '120px', |
|
|
|
|
placeholder: '请输入${title}', |
|
|
|
|
defaultValue: '' |
|
|
|
|
defaultValue: '', |
|
|
|
|
disabled: this.disabled, |
|
|
|
|
validateRules: [{ required: true, message: '${title}不能为空' }], |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title: '金额', |
|
|
|
|
key: 'money', |
|
|
|
|
title: '数量', |
|
|
|
|
key: 'materialQuantity', |
|
|
|
|
type: FormTypes.input, |
|
|
|
|
width: '200px', |
|
|
|
|
width: '120px', |
|
|
|
|
placeholder: '请输入${title}', |
|
|
|
|
defaultValue: '' |
|
|
|
|
defaultValue: '', |
|
|
|
|
disabled: this.disabled, |
|
|
|
|
validateRules: [{ required: true, message: '${title}不能为空' }], |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title: '单位', |
|
|
|
|
key: 'unit', |
|
|
|
|
title: '金额', |
|
|
|
|
key: 'materialAmount', |
|
|
|
|
type: FormTypes.input, |
|
|
|
|
width: '200px', |
|
|
|
|
width: '120px', |
|
|
|
|
placeholder: '请输入${title}', |
|
|
|
|
defaultValue: '' |
|
|
|
|
defaultValue: '', |
|
|
|
|
disabled: true |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title: '备注', |
|
|
|
|
key: 'remarks', |
|
|
|
|
type: FormTypes.input, |
|
|
|
|
width: '200px', |
|
|
|
|
title: '生产日期', |
|
|
|
|
key: 'productionTime', |
|
|
|
|
type: FormTypes.date, |
|
|
|
|
width: '150px', |
|
|
|
|
placeholder: '请输入${title}', |
|
|
|
|
defaultValue: '' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title: '外观', |
|
|
|
|
key: 'exterior', |
|
|
|
|
title: '保质期(年)', |
|
|
|
|
key: 'expirationDate', |
|
|
|
|
type: FormTypes.input, |
|
|
|
|
width: '200px', |
|
|
|
|
width: '120px', |
|
|
|
|
placeholder: '请输入${title}', |
|
|
|
|
defaultValue: '' |
|
|
|
|
}, |
|
|
|
|
// { |
|
|
|
|
// title: '标识', |
|
|
|
|
// key: 'identification', |
|
|
|
|
// title: '出库质量证明', |
|
|
|
|
// key: 'qualityCertificate', |
|
|
|
|
// type: FormTypes.input, |
|
|
|
|
// width: '200px', |
|
|
|
|
// placeholder: '请输入${title}', |
|
|
|
|
// defaultValue: '' |
|
|
|
|
// }, |
|
|
|
|
{ |
|
|
|
|
title: '数量', |
|
|
|
|
key: 'realQuantity', |
|
|
|
|
title: '批次', |
|
|
|
|
key: 'batch', |
|
|
|
|
type: FormTypes.input, |
|
|
|
|
width: '200px', |
|
|
|
|
width: '80px', |
|
|
|
|
placeholder: '请输入${title}', |
|
|
|
|
defaultValue: '' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title: '出库质量证明', |
|
|
|
|
key: 'qualityCertificate', |
|
|
|
|
title: '外观', |
|
|
|
|
key: 'exterior', |
|
|
|
|
type: FormTypes.input, |
|
|
|
|
width: '200px', |
|
|
|
|
placeholder: '请输入${title}', |
|
|
|
|
defaultValue: '' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title: '批次', |
|
|
|
|
key: 'batch', |
|
|
|
|
title: '备注', |
|
|
|
|
key: 'remarks', |
|
|
|
|
type: FormTypes.input, |
|
|
|
|
width: '200px', |
|
|
|
|
placeholder: '请输入${title}', |
|
|
|
|
defaultValue: '' |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title: '', |
|
|
|
|
key: 'materialId', |
|
|
|
|
type: FormTypes.input, |
|
|
|
|
width: '0px', |
|
|
|
|
placeholder: '请输入${title}', |
|
|
|
|
defaultValue: '' |
|
|
|
|
}, |
|
|
|
|
] |
|
|
|
|
}, |
|
|
|
|
url: { |
|
|
|
|
add: '/burst/processIndustrialStorage/add', |
|
|
|
|
list: '/burst/processIndustrialPurchase/queryProcessIndustrialPurchaseMaterialByMainIds', |
|
|
|
|
edit: '/burst/processIndustrialStorage/edit', |
|
|
|
|
addIndustrialStorage: '/burst/processIndustrialStorage/addIndustrialStorage', //提交入库申请 |
|
|
|
|
processIndustrialStorageMaterial: { |
|
|
|
|
list: '/burst/processIndustrialStorage/queryProcessIndustrialStorageMaterialByMainId' |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
industrialPurchaseId: '', |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
props: { |
|
|
|
@ -323,6 +372,28 @@ export default {
|
|
|
|
|
this.popupCallback(company, userInfo, puwwcid); |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
|
|
|
|
|
onSelect(record){ |
|
|
|
|
//计算金额 |
|
|
|
|
if (!!record.row.materialQuantity && !!record.row.materialPrice && !!record.row.id ) { |
|
|
|
|
// record.row.materialAmount = record.row.materialQuantity * record.row.materialPrice; |
|
|
|
|
console.log("3出发了"); |
|
|
|
|
//回填数据 |
|
|
|
|
if (record.row.id !== undefined) { |
|
|
|
|
let values = [ |
|
|
|
|
{ |
|
|
|
|
rowKey: record.row.id, |
|
|
|
|
values: { |
|
|
|
|
'materialQuantity': record.row.materialQuantity, |
|
|
|
|
'materialAmount': accMul(record.row.materialQuantity,record.row.materialPrice), |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
] |
|
|
|
|
this.$refs.processIndustrialStorageMaterial.setValues(values) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
getcallType(type) { |
|
|
|
|
this.data.materialType = type.materialType |
|
|
|
|
let fieldval = pick(this.data, 'materialType') |
|
|
|
@ -337,7 +408,7 @@ export default {
|
|
|
|
|
ids.push(val[i].id) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
this.processUdgetPlanIds = ids.join(',') |
|
|
|
|
this.industrialPurchaseId = ids.join(',') |
|
|
|
|
}, |
|
|
|
|
async getPlanList(val) { |
|
|
|
|
if (val.length > 0) { |
|
|
|
@ -353,11 +424,11 @@ export default {
|
|
|
|
|
ids.push(val[i].id) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
this.processUdgetPlanIds = ids.join(',') |
|
|
|
|
this.industrialPurchaseId = ids.join(',') |
|
|
|
|
let params = {} |
|
|
|
|
params.ids = JSON.stringify(ids) |
|
|
|
|
console.log(params,"*****************>>") |
|
|
|
|
await this.requestSubTableDatas(this.url.list, params, this.processMaterialWarehousingListTable) |
|
|
|
|
params.id = JSON.stringify(ids) |
|
|
|
|
// console.log(params,"*****************>>") |
|
|
|
|
await this.requestSubTableDatas(this.url.list, params, this.processIndustrialStorageMaterialTable); |
|
|
|
|
// getAction(this.url.list,params).then((res)=>{ |
|
|
|
|
// if(res.success){ |
|
|
|
|
// console.log('将要回填的数据',res.result) |
|
|
|
@ -371,9 +442,73 @@ export default {
|
|
|
|
|
this.data = param |
|
|
|
|
let fieldval = pick(this.data, 'planType','ifDirect','ifInspection') |
|
|
|
|
this.$nextTick(() => { |
|
|
|
|
this.form.setFieldsValue(fieldval) |
|
|
|
|
console.log("-=-="); |
|
|
|
|
this.form.setFieldsValue(fieldval); |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
/** 查询某个tab的数据 */ |
|
|
|
|
requestSubTableDatas(url, params, tab) { |
|
|
|
|
// tab.loading = true; |
|
|
|
|
// console.log("-=-=-=-",url,params,tab); |
|
|
|
|
if (this.disabled && !this.task) { |
|
|
|
|
// console.log('执行了不重新查', tab.dataSource) |
|
|
|
|
|
|
|
|
|
} else { |
|
|
|
|
getAction(url, params).then(res => { |
|
|
|
|
let { result } = res |
|
|
|
|
let dataSource = [] |
|
|
|
|
if (result) { |
|
|
|
|
if (Array.isArray(result)) { |
|
|
|
|
dataSource = result |
|
|
|
|
} else if (Array.isArray(result.records)) { |
|
|
|
|
dataSource = result.records |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
// console.log("tab.dataSource",tab.dataSource) |
|
|
|
|
// dataSource.forEach(item => { |
|
|
|
|
// let par = { id: item.materialGroup } |
|
|
|
|
// let param = { id: item.materialNumber } |
|
|
|
|
// getAction(this.url.queryByIdDescription, par).then(res => { |
|
|
|
|
// // console.log(res); |
|
|
|
|
// if (res.success) { |
|
|
|
|
// this.processIndustrialStorageMaterialTable.columns[0].options = [{ |
|
|
|
|
// title: res.result.materialClassify, |
|
|
|
|
// value: item.materialGroup, |
|
|
|
|
// disabled: true |
|
|
|
|
// }] |
|
|
|
|
// } |
|
|
|
|
// }) |
|
|
|
|
// getAction(this.url.queryByIdMerchandiseNews, param).then(res => { |
|
|
|
|
// // console.log(res); |
|
|
|
|
// if (res.success) { |
|
|
|
|
// this.processIndustrialStorageMaterialTable.columns[1].options = [{ |
|
|
|
|
// title: res.result.materialsNumber, |
|
|
|
|
// value: item.materialNumber, |
|
|
|
|
// disabled: true |
|
|
|
|
// }] |
|
|
|
|
// } |
|
|
|
|
// }) |
|
|
|
|
// |
|
|
|
|
// }) |
|
|
|
|
// dataSource.forEach(item =>{ |
|
|
|
|
// item.materialPrice = null; |
|
|
|
|
// item.materialQuantity = null; |
|
|
|
|
// item.materialAmount = null; |
|
|
|
|
// }) |
|
|
|
|
let par = {}; |
|
|
|
|
dataSource.forEach(it =>{ |
|
|
|
|
it.materialId = it.id |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
tab.dataSource = dataSource; |
|
|
|
|
console.log("-==-=-tab.dataSource",tab.dataSource); |
|
|
|
|
typeof success === 'function' ? success(res) : '' |
|
|
|
|
}).finally(() => { |
|
|
|
|
tab.loading = false |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
popupCallback(company, row, puwwcid) { |
|
|
|
|
let res = JSON.parse(row) |
|
|
|
|
let param = {} |
|
|
|
@ -417,24 +552,32 @@ export default {
|
|
|
|
|
} |
|
|
|
|
let formData = this.classifyIntoFormData(allValues) |
|
|
|
|
console.log('=--=-=-', formData) |
|
|
|
|
if (formData.processIndustrialStorageMaterialList==0){ |
|
|
|
|
console.log('=-industrialPurchaseId-=-=-', this.industrialPurchaseId) |
|
|
|
|
if (formData.processIndustrialStorageMaterialList.length < 1){ |
|
|
|
|
this.$message.error('请填写清单内容') |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
// for (let i = 0; i < formData.processIndustrialStorageMaterialList.length; i++) { |
|
|
|
|
// if (i == 0) { |
|
|
|
|
// this.describes = formData.processIndustrialStorageMaterialList[i].materialName |
|
|
|
|
// } else { |
|
|
|
|
// this.describes = this.describes + '---' + formData.processIndustrialStorageMaterialList[i].materialName |
|
|
|
|
// } |
|
|
|
|
// } |
|
|
|
|
let par = false; |
|
|
|
|
formData.processIndustrialStorageMaterialList.forEach(item =>{ |
|
|
|
|
console.log("-=-=-=",item); |
|
|
|
|
if(!item.materialPrice || !item.materialQuantity){ |
|
|
|
|
par = true; |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
if(par){ |
|
|
|
|
this.$message.warning("请完善单价,数量等数据!"); |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
for (let i = 0; i < formData.processIndustrialStorageMaterialList.length; i++) { |
|
|
|
|
if (i == 0) { |
|
|
|
|
this.describes = formData.processIndustrialStorageMaterialList[i].materialName |
|
|
|
|
} else { |
|
|
|
|
this.describes = this.describes + '---' + formData.processIndustrialStorageMaterialList[i].materialName |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
formData.fileId = getStringArry(formData.fileId) |
|
|
|
|
// if (this.materialPrice != 0 && this.materialPrice != null) { |
|
|
|
|
// formData.materialPrice = this.materialPrice; |
|
|
|
|
// }else{ |
|
|
|
|
// formData.materialPrice = 0; |
|
|
|
|
// } |
|
|
|
|
formData.describes = this.describes |
|
|
|
|
formData.describes = this.describes; |
|
|
|
|
formData.industrialPurchaseId = this.industrialPurchaseId; //关联采购ID |
|
|
|
|
if (new Date(formData.createTime).getTime() / 100 > new Date(formData.needTime).getTime() / 100) { |
|
|
|
|
this.$message.error('需求时间不能小于当前流程发起时间') |
|
|
|
|
return |
|
|
|
@ -506,7 +649,7 @@ export default {
|
|
|
|
|
} |
|
|
|
|
let formData = this.classifyIntoFormData(allValues) |
|
|
|
|
|
|
|
|
|
/* if (formData.processIndustrialPurchaseMaterialList==0){ |
|
|
|
|
if (formData.processIndustrialPurchaseMaterialList.length < 1){ |
|
|
|
|
this.$message.error('请填写清单内容') |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
@ -516,8 +659,8 @@ export default {
|
|
|
|
|
} else { |
|
|
|
|
this.describes = this.describes + '---' + formData.processIndustrialStorageMaterialList[i].materialName |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
*/ |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// if (this.isPlanType) { |
|
|
|
@ -579,19 +722,19 @@ export default {
|
|
|
|
|
if (!!formData.ifInspection) formData.ifInspection = parseInt(formData.ifInspection) |
|
|
|
|
console.log(formData, '格式化的数据') |
|
|
|
|
if (this.btndisabled === false) { |
|
|
|
|
// this.btndisabled = true |
|
|
|
|
// httpAction(url, formData, method).then((res) => { |
|
|
|
|
// if (res.success) { |
|
|
|
|
// //todo 将表单的数据传给父组件 |
|
|
|
|
// if (e != true) { |
|
|
|
|
// this.$emit('afterSubmit', formData) |
|
|
|
|
// } |
|
|
|
|
// } else { |
|
|
|
|
// this.$message.error(res.message) |
|
|
|
|
// } |
|
|
|
|
// }).finally(() => { |
|
|
|
|
// this.btndisabled = false |
|
|
|
|
// }) |
|
|
|
|
this.btndisabled = true |
|
|
|
|
httpAction(url, formData, method).then((res) => { |
|
|
|
|
if (res.success) { |
|
|
|
|
//todo 将表单的数据传给父组件 |
|
|
|
|
if (e != true) { |
|
|
|
|
this.$emit('afterSubmit', formData) |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
this.$message.error(res.message) |
|
|
|
|
} |
|
|
|
|
}).finally(() => { |
|
|
|
|
this.btndisabled = false |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|