From b666a66a95f669a94ee0d6af28beabd0696bccd9 Mon Sep 17 00:00:00 2001 From: wuteng <419274783@qq.com> Date: Tue, 12 Aug 2025 17:57:49 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BD=91=E7=82=B9=E8=B4=B9=E7=94=A8=E7=94=B3?= =?UTF-8?q?=E8=AF=B7,=E6=96=B0=E5=A2=9E=E5=92=8C=E5=86=8D=E6=AC=A1?= =?UTF-8?q?=E7=94=B3=E8=AF=B7=E5=8F=82=E6=95=B0=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../emisWaybillAjustApplyForm.vue | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) 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"); });