xiebaomin 1 年之前
父节点
当前提交
f26e680cb5
共有 1 个文件被更改,包括 10 次插入1 次删除
  1. 10 1
      src/views/order/order-remarks.vue

+ 10 - 1
src/views/order/order-remarks.vue

@@ -92,7 +92,16 @@ export default {
       this.$router.push({ path: '/order/add-remarks ', query: { orderId: this.orderId }})
     },
     backToList() {
-      this.$router.back()
+      this.$store.dispatch('tagsView/delView', this.$route).then(() => {
+        this.$nextTick(() => {
+          this.$router.replace({
+            path: '/order/deliver',
+            query: {
+              orderId: this.orderId
+            }
+          })
+        })
+      })
     }
   }
 }