فهرست منبع

Merge branch 'dev' of http://git.izouma.com/panhui/card-wechat into dev

xuqiang 5 سال پیش
والد
کامیت
d53a12f723
2فایلهای تغییر یافته به همراه3 افزوده شده و 1 حذف شده
  1. 2 0
      src/pages/store/productEdit.vue
  2. 1 1
      src/vant/field/index.js

+ 2 - 0
src/pages/store/productEdit.vue

@@ -23,6 +23,7 @@
                 @input="form.boxPrice = $event.detail"
                 placeholder="请输入金额"
             >
+                <span slot="right-icon">元</span>
             </van-field>
             <van-field
                 label="拼箱结束"
@@ -49,6 +50,7 @@
                 @input="form.postage = $event.detail"
                 placeholder="请输入邮费"
             >
+                <span slot="right-icon">元</span>
             </van-field>
         </van-cell-group>
         <div class="box-con">

+ 1 - 1
src/vant/field/index.js

@@ -78,7 +78,7 @@ VantComponent({
         onConfirm(event) {
             const { value = '' } = event.detail || {};
             // this.value = value;
-            this.setData({ innerValue: '' });
+            // this.setData({ innerValue: '' });
             this.setShowClear();
             this.$emit('confirm', value);
         },