diff --git a/src/views/EquipmentLedger/index.vue b/src/views/EquipmentLedger/index.vue index 40277ca3..bf1b4ab0 100644 --- a/src/views/EquipmentLedger/index.vue +++ b/src/views/EquipmentLedger/index.vue @@ -911,7 +911,7 @@ import EquAnalysis from '@/views/EquipmentLedger/components/EquAnalysis' export default { name: 'EquipmentLedger', - dicts: ['user_year_type'], + dicts: ['user_year_type'], components: { AddEquip, QrcodeGenerator, EquAnalysis }, data() { return { @@ -1255,7 +1255,7 @@ export default { this.queryParams.propertyUnitId = undefined this.$refs.queryForm.resetFields() this.queryParams.pageNum = 1 - this.getDeviceList() + //this.getDeviceList() }, /** diff --git a/src/views/business/outbound/index.vue b/src/views/business/outbound/index.vue index 0c76a6d3..02d4a980 100644 --- a/src/views/business/outbound/index.vue +++ b/src/views/business/outbound/index.vue @@ -186,11 +186,11 @@ export default { }, // 查看 handleView(row) { - this.$router.push({ path: '/business/outbound/details', query: { id: row.id, isView: true } }) + this.$router.push({ path: '/all/business/outbound/details', query: { id: row.id, isView: true } }) }, // 审核 handleApprove(row) { - this.$router.push({ path: '/business/outbound/details', query: { id: row.id } }) + this.$router.push({ path: '/all/business/outbound/details', query: { id: row.id } }) } } }