Răsfoiți Sursa

确认送达

shish 2 ani în urmă
părinte
comite
4f845e8955
1 a modificat fișierele cu 9 adăugiri și 0 ștergeri
  1. 9 0
      ghsApp/src/pagesOrder/detail.vue

+ 9 - 0
ghsApp/src/pagesOrder/detail.vue

@@ -170,6 +170,9 @@
 				<view class="flex" style="color: #3385ff;font-weight: 400" v-if="detailInfo.status == 4">
 					<view @click.stop="goRefund()" style="margin-left: 20upx;">发起售后</view>
 				</view>
+				<view class="flex" style="color: #3385ff;font-weight: 400" v-if="detailInfo.status == 3 || detailInfo.status == 2">
+					<view @click.stop="confirmReach()" style="margin-left: 20upx;">确认送达</view>
+				</view>
 			</view>
 			<view class="module-com content-box">
 				<view class="commodity-view">
@@ -642,6 +645,12 @@ export default {
 				}
 			})
 		},
+		confirmReach(){
+			let that = this
+			that.$util.confirmModal({content:'确认已经送到?'},() => {
+
+            })
+		},
 		goRefund(){
 			this.$util.pageTo({url:'/pagesOrder/refund?id='+this.option.id})
 		},