From e1a74972f24913f2502e397c40bbd5d305163755 Mon Sep 17 00:00:00 2001 From: ghusermoon <2673031505@qq.com> Date: Sat, 5 Sep 2020 10:54:53 +0800 Subject: [PATCH] =?UTF-8?q?=E6=89=8B=E6=9C=BA=E5=8F=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pageC/cart/selectInvoice.vue | 2 +- pageC/merchant/details.vue | 2 -- pageE/more/ApplyLive.vue | 8 ++++---- pageE/order/commentItem.vue | 2 ++ 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pageC/cart/selectInvoice.vue b/pageC/cart/selectInvoice.vue index 2158951..cb24372 100644 --- a/pageC/cart/selectInvoice.vue +++ b/pageC/cart/selectInvoice.vue @@ -12,7 +12,7 @@ - + - + @@ -121,11 +121,11 @@ export default { this.$u.toast('姓名不能为空'); return false; } - if(this.$u.test.isEmpty(this.phone)) { + if(this.$u.test.isEmpty(this.$refs.phone.valueSync)) { this.$u.toast('手机号不能为空'); return false; } - if(!this.$u.test.mobile(this.phone)) { + if(!this.$u.test.mobile(this.$refs.phone.valueSync)) { this.$u.toast('手机号错误'); return false; } @@ -153,7 +153,7 @@ export default { this.isSubmit = false; this.$u.api.applyExpert({ name: this.name, - mobile: this.phone, + mobile: this.$refs.phone.valueSync, address: this.address + this.details, industry: this.checkedIndustryList, hobby: this.checkedHobbyList, diff --git a/pageE/order/commentItem.vue b/pageE/order/commentItem.vue index 92653be..5e8f284 100644 --- a/pageE/order/commentItem.vue +++ b/pageE/order/commentItem.vue @@ -22,6 +22,7 @@ :header="header" :form-data="formData" :name="fileName" + :size-type="['original']" @on-list-change="setImageList" > @@ -33,6 +34,7 @@