diff --git a/src/views/emis/emisWaybillAjustApply/emisWaybillAjustApplyForm.vue b/src/views/emis/emisWaybillAjustApply/emisWaybillAjustApplyForm.vue index a9a81390..79dad601 100644 --- a/src/views/emis/emisWaybillAjustApply/emisWaybillAjustApplyForm.vue +++ b/src/views/emis/emisWaybillAjustApply/emisWaybillAjustApplyForm.vue @@ -263,8 +263,16 @@ export default { if (valid) { let jsonData=this.$refs.refAdjustDetail.getJsonData(); console.log("====>jsonData==>",jsonData); - this.form.jsonData=JSON.stringify(jsonData); - addEmisWaybillAjustApply(this.form).then(response => { + const params={ + "applyManCode":this.form.applyManCode, + "applyMemo":this.form.applyMemo, + "applySiteCode":this.form.applySiteCode, + "applyType":this.form.applyType, + "billCode":this.form.billCode, + "destConfirmSiteCode":this.form.destConfirmSiteCode, + "jsonData":JSON.stringify(jsonData), + } + addEmisWaybillAjustApply(params).then(response => { this.$modal.msgSuccess("申请成功"); this.$emit("on-changed"); });