From fb871219777c83c4c5917d0b46857de0ac44887e Mon Sep 17 00:00:00 2001 From: YCC Date: Tue, 19 Sep 2023 14:46:25 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A4=9A=E4=B8=AA=E6=9D=A5=E6=BA=90=E6=9F=A5?= =?UTF-8?q?=E8=AF=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/libs/ht.js | 2 +- src/stores/CustomerStore.js | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/libs/ht.js b/src/libs/ht.js index d133d26..37e5b86 100644 --- a/src/libs/ht.js +++ b/src/libs/ht.js @@ -42,7 +42,7 @@ export const sites = [ { key: '163', label: 'GH', code: 'GH' }, { key: '28', label: '客运中国', code: 'GHKYZG' }, { key: '7', label: '客运海外', code: 'GHKYHW' }, - { key: '172', label: 'B业务', code: 'GHTOB' }, + { key: '172', label: 'ToB业务', code: 'GHTOB' }, { key: '11,12,20,21,10,18', label: '国际(入境)', code: 'JP,VAC,IT,GM,RU,VC' }, { key: '122,200,211,100,188', label: '国际(海外)', code: 'VACHW,ITHW,GMHW,RUHW,VCHW' }, { key: '11', label: '日语', code: 'JP' }, diff --git a/src/stores/CustomerStore.js b/src/stores/CustomerStore.js index 0eeb1c7..bfc715a 100644 --- a/src/stores/CustomerStore.js +++ b/src/stores/CustomerStore.js @@ -15,7 +15,7 @@ class CustomerStore { this.potential_data.loading = true; const date_picker_store = this.rootStore.date_picker_store; let url = '/service-tourdesign/PotentialCusOrder'; - url += '?Website=' + this.potential_data.webcode + '&DEI_SNList=' + this.potential_data.groups.toString(); + url += '?Website=' + this.potential_data.webcode.toString() + '&DEI_SNList=' + this.potential_data.groups.toString(); if (this.potential_data.date_type == 'applyDate') { url += '&ApplydateCheck=1&EntrancedateCheck=0&ConfirmDateCheck=0'; } else if(this.potential_data.date_type == 'ConfirmDate'){ @@ -70,7 +70,7 @@ class CustomerStore { data: [], data_detail: [], webcode: 'GHKYZG', - site_select_mode: false,// 站点是否多选 + site_select_mode: 'multiple',// 站点是否多选 group_select_mode: 'multiple',// 是否多选分组 groups: ['1', '2', '7'], date_type: 'applyDate', @@ -88,7 +88,7 @@ class CustomerStore { this.regular_data.loading = true; const date_picker_store = this.rootStore.date_picker_store; let url = '/service-tourdesign/RegularCusOrder'; - url += '?Website=' + this.regular_data.webcode + '&DEI_SNList=' + this.regular_data.groups.toString(); + url += '?Website=' + this.regular_data.webcode.toString() + '&DEI_SNList=' + this.regular_data.groups.toString(); if (this.regular_data.date_type == 'applyDate') { url += '&ApplydateCheck=1&EntrancedateCheck=0&ConfirmDateCheck=0'; } else if(this.regular_data.date_type == 'ConfirmDate'){ @@ -143,7 +143,7 @@ class CustomerStore { data: [], data_detail: [], webcode: 'ALL', - site_select_mode: false,// 站点是否多选 + site_select_mode: 'multiple',// 站点是否多选 group_select_mode: 'multiple',// 是否多选分组 groups: ['1', '2', '28', '7'], date_type: 'applyDate', @@ -161,7 +161,7 @@ class CustomerStore { this.inchina_data.loading = true; const date_picker_store = this.rootStore.date_picker_store; let url = '/service-tourdesign/RegularCusInChinaOrder'; - url += '?Website=' + this.inchina_data.webcode + '&DEI_SNList=' + this.inchina_data.groups.toString(); + url += '?Website=' + this.inchina_data.webcode.toString() + '&DEI_SNList=' + this.inchina_data.groups.toString(); if (this.inchina_data.date_type == 'applyDate') { url += '&ApplydateCheck=1&EntrancedateCheck=0&ConfirmDateCheck=0'; } else if(this.inchina_data.date_type == 'ConfirmDate'){ @@ -216,7 +216,7 @@ class CustomerStore { data: [], data_detail: [], webcode: 'ALL', - site_select_mode: false,// 站点是否多选 + site_select_mode: 'multiple',// 站点是否多选 group_select_mode: 'multiple',// 是否多选分组 groups: ['1', '2', '28', '7'], date_type: 'applyDate',