@@ -23,6 +23,7 @@
@input="form.boxPrice = $event.detail"
placeholder="请输入金额"
>
+ <span slot="right-icon">元</span>
</van-field>
<van-field
label="拼箱结束"
@@ -43,11 +44,12 @@
</van-field> -->
label="邮费"
- right-icon="gold-coin"
:value="form.postage"
@input="form.postage = $event.detail"
placeholder="请输入邮费"
+ type="digit"
</van-cell-group>
<div class="box-con">
@@ -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);
},