@@ -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
+ }
+ })
}