diff --git a/addons/unishop/uniapp/uni-shop/pages/order/createOrder.vue b/addons/unishop/uniapp/uni-shop/pages/order/createOrder.vue index 0cba410..815bbf6 100755 --- a/addons/unishop/uniapp/uni-shop/pages/order/createOrder.vue +++ b/addons/unishop/uniapp/uni-shop/pages/order/createOrder.vue @@ -15,11 +15,6 @@ - - 邮箱 - - @@ -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, diff --git a/addons/unishop/uniapp/uni-shop/pages/product/product.vue b/addons/unishop/uniapp/uni-shop/pages/product/product.vue index 6fa15a2..1566876 100755 --- a/addons/unishop/uniapp/uni-shop/pages/product/product.vue +++ b/addons/unishop/uniapp/uni-shop/pages/product/product.vue @@ -247,6 +247,7 @@ }, round: function (value) { if (!value) return 0; + if(value<1000)return value; return (value/1000).toFixed(1)*1000 } },