From 917a9d4c320c6001575338d3dd57525b13101df7 Mon Sep 17 00:00:00 2001 From: Jimmy Liow <18777396951@163.com> Date: Tue, 23 May 2023 15:38:14 +0800 Subject: [PATCH] =?UTF-8?q?=E7=A1=AE=E8=AE=A4=E5=8F=98=E6=9B=B4=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/stores/Reservation.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/stores/Reservation.js b/src/stores/Reservation.js index c73b5ca..0705a94 100644 --- a/src/stores/Reservation.js +++ b/src/stores/Reservation.js @@ -70,7 +70,8 @@ class Reservation { PCI_SendDate: data.PCI_SendDate, ConfirmPerson: data.ConfirmPerson, PCI_ConfirmText: data.PCI_ConfirmText, - PCI_ConfirmDate: data.PCI_ConfirmDate + PCI_ConfirmDate: data.PCI_ConfirmDate, + VAS_SN: data.PCI_VAS_SN } }); }); @@ -152,6 +153,8 @@ class Reservation { formData.append('PCI_SN', this.selectedConfirmation.key); formData.append('OPSN', this.root.authStore.login.userId); formData.append('ConfirmText', confirmText); + formData.append('VAS_SN', this.selectedConfirmation.VAS_SN); + const postUrl = HT_HOST + '/service-cusservice/PTConfirmPlanChange'; return postForm(postUrl, formData)