From d046f4f74df9d6a3cd662522604bdf28afd434bb Mon Sep 17 00:00:00 2001 From: fengachen <373943794@qq.com> Date: Fri, 1 Jul 2022 17:36:21 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E5=BC=80=E5=8F=91=E3=80=91=E5=9B=BD?= =?UTF-8?q?=E9=99=85=E7=A0=94=E8=AE=A8=E4=BC=9A=E5=A2=9E=E5=8A=A0=E5=8F=82?= =?UTF-8?q?=E5=B1=95=E5=95=86=20=E5=8F=82=E4=BC=9A=E4=BA=BA=E5=86=85?= =?UTF-8?q?=E9=83=A8=E4=BC=81=E4=B8=9A=E5=8E=BB=E6=8E=89=E8=A1=8C=E7=A8=8B?= =?UTF-8?q?=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../guestEditSignUpInfo.js | 17 +++++++---- .../guestEditSignUpInfo.wxml | 4 +-- .../meetingDetailSigned.wxml | 4 +-- pages/signUpPageGuoji/signUpPageGuoji.js | 20 ++++++++++--- pages/signUpPageGuoji/signUpPageGuoji.wxml | 30 ------------------- 5 files changed, 32 insertions(+), 43 deletions(-) diff --git a/pages/guestEditSignUpinfo/guestEditSignUpInfo.js b/pages/guestEditSignUpinfo/guestEditSignUpInfo.js index e18624c..9b175de 100644 --- a/pages/guestEditSignUpinfo/guestEditSignUpInfo.js +++ b/pages/guestEditSignUpinfo/guestEditSignUpInfo.js @@ -74,6 +74,11 @@ Page({ 'guestType_dictText': '合作伙伴' }); break + case 5: + this.setData({ + 'guestType_dictText': '参展商' + }); + break } }, // 表单的显示隐藏 @@ -83,14 +88,16 @@ Page({ 'info.speechPpt':record.speechPpt }) } + // 不是合作伙伴和参展商 + let isCoopOrExint = record.guestType !== 4 && record.guestType !== 5 // 是否用餐 - if (record.haveMeals !== null) { + if (isCoopOrExint && record.haveMeals !== null) { this.setData({ haveMeal: record.haveMeals }) } // 是否住酒店 - if (record.checkInHotel !== null) { + if (isCoopOrExint && record.checkInHotel !== null) { this.setData({ needHotel: record.checkInHotel }) @@ -107,7 +114,7 @@ Page({ } // 是否接站 - if (record.pickUp !== null) { + if (isCoopOrExint && record.pickUp !== null) { this.setData({ needPick: record.pickUp }) @@ -118,7 +125,7 @@ Page({ } } // 是否送站 - if (record.deliveryStation !== null) { + if (isCoopOrExint && record.deliveryStation !== null) { this.setData({ needSend: record.deliveryStation }) @@ -144,7 +151,7 @@ Page({ formData.speechPpt = this.data.info.speechPpt } console.log(formData) - if(this.data.info.guestType !== 4){ + if(this.data.info.guestType !== 4 && this.data.info.guestType !== 5){ // 不是合作伙伴的需要校验 if(!formData.haveMeals){ wx.showToast({ diff --git a/pages/guestEditSignUpinfo/guestEditSignUpInfo.wxml b/pages/guestEditSignUpinfo/guestEditSignUpInfo.wxml index 96f32ce..9f14836 100644 --- a/pages/guestEditSignUpinfo/guestEditSignUpInfo.wxml +++ b/pages/guestEditSignUpinfo/guestEditSignUpInfo.wxml @@ -3,7 +3,7 @@