|
@@ -67,7 +67,7 @@
|
|
|
<view class="other">
|
|
|
<view class="other_1">订单备注</view>
|
|
|
<view class="other_3">
|
|
|
- <input type="text" v-model="tag.remarks" placeholder="选填,可填写您与卖家达成一致的要求" />
|
|
|
+ <input type="text" v-model="item.remarks" placeholder="选填,可填写您与卖家达成一致的要求" />
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -115,7 +115,9 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="content" v-else v-for="(item,index) in couponList" :key="index">
|
|
|
- <view class="one">{{item.name}}</view>
|
|
|
+ <view class="one">
|
|
|
+ {{item.name}}
|
|
|
+ </view>
|
|
|
</view>
|
|
|
</uni-popup>
|
|
|
</mobile-frame>
|
|
@@ -136,7 +138,14 @@
|
|
|
// 收货地址
|
|
|
addressList: [],
|
|
|
// 优惠劵
|
|
|
- couponList: [{name:'家庭囤货特惠劵',}],
|
|
|
+ couponList: [{
|
|
|
+ name: '家庭囤货特惠劵',
|
|
|
+ issue: '平台方',
|
|
|
+ shop: '店铺',
|
|
|
+ expire_type: '失效方式',
|
|
|
+ discount_type: '满25减4',
|
|
|
+ status: '0'
|
|
|
+ }],
|
|
|
type: ''
|
|
|
};
|
|
|
},
|
|
@@ -492,6 +501,7 @@
|
|
|
.content {
|
|
|
display: flex;
|
|
|
flex-direction: column;
|
|
|
+ min-height: 100vw;
|
|
|
background-color: var(--f1Color);
|
|
|
|
|
|
.one {
|