Browse Source

添加核销成功提示

htc 11 months ago
parent
commit
9a5acf893e
1 changed files with 6 additions and 3 deletions
  1. 6 3
      pagesHouse/Verification/details.vue

+ 6 - 3
pagesHouse/Verification/details.vue

@@ -165,9 +165,12 @@
 				}).then(res => {
 					console.log(res.data);
 					if (res.data.code == 0) {
-						uni.navigateTo({
-							url: '/pagesHouse/Mine/ordersList/outcome'
-						})
+						this.$showToast('核销成功');
+						setTimeout(()=>{
+							uni.navigateTo({
+								url: '/pagesHouse/Mine/ordersList/outcome'
+							})
+						},1500)
 					}
 				})
 			},