作者 卢胜

订单优化

@@ -16,7 +16,7 @@ @@ -16,7 +16,7 @@
16 <view class="right"> 16 <view class="right">
17 <text v-if="item.status==1">待支付</text> 17 <text v-if="item.status==1">待支付</text>
18 <text v-if="item.status==2">待接收</text> 18 <text v-if="item.status==2">待接收</text>
19 - <text v-if="item.status==3">待买家确认</text> 19 + <text v-if="item.status==3">待确认</text>
20 <text v-if="item.status==4">已收货</text> 20 <text v-if="item.status==4">已收货</text>
21 <text v-if="item.status==5">平台裁决</text> 21 <text v-if="item.status==5">平台裁决</text>
22 <text v-if="item.status==6">已完成</text> 22 <text v-if="item.status==6">已完成</text>
@@ -182,15 +182,9 @@ @@ -182,15 +182,9 @@
182 } 182 }
183 }, 183 },
184 //状态筛选 184 //状态筛选
185 - reQest(s) {  
186 - if (s == 3) return true;  
187 - },  
188 reChest(s) { 185 reChest(s) {
189 if (s == 3) return true; 186 if (s == 3) return true;
190 }, 187 },
191 - reNest(s) {  
192 -  
193 - },  
194 }, 188 },
195 } 189 }
196 </script> 190 </script>
@@ -31,9 +31,12 @@ @@ -31,9 +31,12 @@
31 <view class="name">买方:{{item.buyer_name}}</view> 31 <view class="name">买方:{{item.buyer_name}}</view>
32 </view> 32 </view>
33 </view> 33 </view>
34 - <view class="right" v-if="item.status==7">  
35 - <text style="font-size: 20rpx;">¥</text>30.88  
36 - <view style=" color: rgba(0,0,0,0.4);font-size: 24rpx;"> 34 + <view class="right" >
  35 + <text style="font-size: 20rpx;">¥</text>{{item.orderinfo.price}}
  36 + <view style=" color: rgba(0,0,0,0.4);font-size: 24rpx;" v-if="item.status==5">
  37 + 审核中
  38 + </view>
  39 + <view style=" color: rgba(0,0,0,0.4);font-size: 24rpx;" v-if="item.status==7">
37 已退回 40 已退回
38 </view> 41 </view>
39 </view> 42 </view>
@@ -41,7 +44,7 @@ @@ -41,7 +44,7 @@
41 <view class="line"></view> 44 <view class="line"></view>
42 <view class="botBtn flexA"> 45 <view class="botBtn flexA">
43 <view v-if="reseller(item.status)" class="flexC" @click.stop="openshowBuyer(item)">买家信息</view> 46 <view v-if="reseller(item.status)" class="flexC" @click.stop="openshowBuyer(item)">买家信息</view>
44 - <view v-if="!item.license_preview" class="flexC" @click.stop="openimag(item.id,idx)">上传转赠证明</view> 47 + <view v-if="!item.license_preview&&(item.status==2||item.status==3)" class="flexC" @click.stop="openimag(item.id,idx)">上传转赠证明</view>
45 <view v-if="reseller(item.status)" class="flexC" @click.stop="order_send(item.id,idx)">发货</view> 48 <view v-if="reseller(item.status)" class="flexC" @click.stop="order_send(item.id,idx)">发货</view>
46 <view v-if="item.license_preview" class="flexC yellow" @click.stop="openshow(item.license_preview)">查看交易证明</view> 49 <view v-if="item.license_preview" class="flexC yellow" @click.stop="openshow(item.license_preview)">查看交易证明</view>
47 <view v-if="item.license_preview" class="flexC yellow" @click.stop="openimag(item.id,idx)">重新上传证明</view> 50 <view v-if="item.license_preview" class="flexC yellow" @click.stop="openimag(item.id,idx)">重新上传证明</view>
@@ -159,11 +162,6 @@ @@ -159,11 +162,6 @@
159 reseller(s) { 162 reseller(s) {
160 if (s == 2) return true; 163 if (s == 2) return true;
161 }, 164 },
162 - rechange(s) {  
163 - if (s == 3) return true;  
164 - if (s == 4) return true;  
165 - if (s == 6) return true;  
166 - },  
167 openshowBuyer(item) { 165 openshowBuyer(item) {
168 this.showBuyer = true 166 this.showBuyer = true
169 this.code = item.buyer_name 167 this.code = item.buyer_name