diff --git a/src/views/EquipmentEntryApply/equipmentInput/add.vue b/src/views/EquipmentEntryApply/equipmentInput/add.vue index 584c6303..08e178f7 100644 --- a/src/views/EquipmentEntryApply/equipmentInput/add.vue +++ b/src/views/EquipmentEntryApply/equipmentInput/add.vue @@ -525,11 +525,25 @@ export default { // 返回上一页 goBack() { // this.$tab.closePage() - this.$router.go(-1) + this.$router.push({ + name: 'equipmentInput', + query: { + orderId: this.orderId, + isAddVisible: false, + isApprovalVisible: false, + }, + }) }, close() { this.$tab.closePage({ path: '/equipment/equipment-input/add' }).then(() => { - this.$router.go(-1) + this.$router.push({ + name: 'equipmentInput', + query: { + orderId: this.orderId, + isAddVisible: false, + isApprovalVisible: false, + }, + }) }) }, deviceTypeChange(val) {