Browse Source

修改问题

1.0
396316021 1 year ago
parent
commit
f5d5cef7f4
  1. 6
      pages/User/order.vue

6
pages/User/order.vue

@ -77,7 +77,7 @@
</view> </view>
<view class="item-footer row"> <view class="item-footer row">
<view class="phone-button" @click="callPhone(item.take_phone)"> <view class="phone-button" @click="callPhone(item.tel)" v-if="item.tel!==null">
<view class="button phone col"> <view class="button phone col">
<u-icon name="phone-fill" size="32" color="#000" custom-style="margin-right:10rpx;"></u-icon> <u-icon name="phone-fill" size="32" color="#000" custom-style="margin-right:10rpx;"></u-icon>
<u-text size="32" color="#020B18" text="售后"></u-text> <u-text size="32" color="#020B18" text="售后"></u-text>
@ -88,7 +88,7 @@
<view class="button"> <view class="button">
<u-button @click="navTo('/pages/Order/info?id='+item.id)" text="查看详情" shape="circle" custom-style="height:64rpx;border: 2rpx solid #AFB5BE;padding:0rpx 42rpx;"></u-button> <u-button @click="navTo('/pages/Order/info?id='+item.id)" text="查看详情" shape="circle" custom-style="height:64rpx;border: 2rpx solid #AFB5BE;padding:0rpx 42rpx;"></u-button>
</view> </view>
<view class="button"> <view class="button" v-if="item.status > 1">
<u-button @click="openLogistics(item)" text="查看物流" shape="circle" custom-style="height:64rpx;border: 2rpx solid #AFB5BE;padding:0rpx 42rpx;"></u-button> <u-button @click="openLogistics(item)" text="查看物流" shape="circle" custom-style="height:64rpx;border: 2rpx solid #AFB5BE;padding:0rpx 42rpx;"></u-button>
</view> </view>
</view> </view>
@ -312,7 +312,7 @@ export default {
methods: { methods: {
openLogistics(item){ openLogistics(item){
this.checkInfo = item; this.checkInfo = item;
orderLogistics({goods_order_id :23}).then(res => { orderLogistics({goods_order_id :item.id}).then(res => {
this.logisticsList = res.data.data; this.logisticsList = res.data.data;
let info = res.data; let info = res.data;
delete info.data; delete info.data;

Loading…
Cancel
Save