|
@@ -1748,7 +1748,6 @@ export default {
|
|
|
//确认变更
|
|
|
confirmChange() {
|
|
|
validChange().then(res => {
|
|
|
- console.log(res)
|
|
|
this.goodsForm.status = 0
|
|
|
this.goodsOptionFormC.disabled = false
|
|
|
this.goodsOptionForm.disabled = false
|
|
@@ -1769,14 +1768,16 @@ export default {
|
|
|
item.sort = index + 1
|
|
|
})
|
|
|
this.type = true
|
|
|
+ let form = this.goodsForm
|
|
|
delete this.goodsForm.status
|
|
|
+ delete form.orderItemList
|
|
|
changeSubmission({
|
|
|
- ...this.goodsForm,
|
|
|
+ ...form,
|
|
|
kind: '1',
|
|
|
orderAddressList: data,
|
|
|
fileList: this.orderFilesList,
|
|
|
itemList: this.entrustList,
|
|
|
- orderItemList: this.vehicleList,
|
|
|
+ orderItemList:[],
|
|
|
orderFeeList: this.collectionList.concat(this.paymentList)
|
|
|
}).then(res => {
|
|
|
this.$message.success('保存成功');
|