Skip to content

Commit

Permalink
修复下单买家留言
Browse files Browse the repository at this point in the history
  • Loading branch information
Eratosici authored and Eratosici committed Jun 15, 2021
1 parent 018344b commit f8e06c1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion mall4uni/pages/orderList/orderList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
<view class="prod-foot">
<view class="btn">
<text v-if="item.status==1" class="button" @tap="onCancelOrder" :data-ordernum="item.orderNumber" hover-class="none">取消订单</text>
<text class="button warn" @tap :data-ordernum="item.orderNumber" hover-class="none">再次购买</text>
<text class="button warn" :data-ordernum="item.orderNumber" hover-class="none">再次购买</text>
<text v-if="item.status==1" class="button warn" @tap="normalPay" :data-ordernum="item.orderNumber" hover-class="none">付款</text>
<text v-if="item.status==3 || item.status==5" class="button" @tap="toDeliveryPage" :data-ordernum="item.orderNumber" hover-class="none">查看物流</text>
<text v-if="item.status==3" class="button warn" @tap="onConfirmReceive" :data-ordernum="item.orderNumber" hover-class="none">确认收货</text>
Expand Down
6 changes: 3 additions & 3 deletions mall4uni/pages/submit-order/submit-order.vue
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
</view>
<view class="item">
<text>买家留言:</text>
<input placeholder="给卖家留言"></input>
<input v-model="remarks" placeholder="给卖家留言"></input>
</view>
</view>

Expand Down Expand Up @@ -205,7 +205,7 @@ export default {
totalCount: 0,
transfee: 0,
reduceAmount: 0,
remark: "",
remarks: "",
couponIds: [],
coupons: {},
shopReduce: ""
Expand Down Expand Up @@ -384,7 +384,7 @@ export default {
method: "POST",
data: {
orderShopParam: [{
remarks: this.remark,
remarks: this.remarks,
shopId: 1
}]
},
Expand Down

0 comments on commit f8e06c1

Please sign in to comment.