Browse Source

email

yuenan
xubin 3 years ago
parent
commit
7bf0a031a8
2 changed files with 2 additions and 8 deletions
  1. +1
    -8
      addons/unishop/uniapp/uni-shop/pages/order/createOrder.vue
  2. +1
    -0
      addons/unishop/uniapp/uni-shop/pages/product/product.vue

+ 1
- 8
addons/unishop/uniapp/uni-shop/pages/order/createOrder.vue View File

@@ -15,11 +15,6 @@
<input class="input" type="text" v-model="addressData.address" placeholder="详细地址,楼号"
placeholder-class="placeholder" />
</view>
<view class="row b-b">
<text class="tit">邮箱</text>
<input class="input" type="text" v-model="addressData.email" placeholder="邮箱"
placeholder-class="placeholder" />
</view>

<view class="progress" v-if="progress.number">

@@ -161,8 +156,7 @@
addressData: {
name: '',
mobile: '',
address: '',
email: ''
address: ''
},
id: "", //商品ID
maskState: 0, //优惠券面板显示状态
@@ -301,7 +295,6 @@
name: this.addressData.name,
mobile: this.addressData.mobile,
address: this.addressData.address,
email: this.addressData.email,
delivery_id: delivery_id,
coupon_id: coupon_id,
remark: this.remark,


+ 1
- 0
addons/unishop/uniapp/uni-shop/pages/product/product.vue View File

@@ -247,6 +247,7 @@
},
round: function (value) {
if (!value) return 0;
if(value<1000)return value;
return (value/1000).toFixed(1)*1000
}
},


Loading…
Cancel
Save