装备配置率配置问题修改

This commit is contained in:
jiang 2026-02-05 16:34:32 +08:00
parent e19122314f
commit 8781d9b45b
2 changed files with 4 additions and 4 deletions

View File

@ -911,7 +911,7 @@ import EquAnalysis from '@/views/EquipmentLedger/components/EquAnalysis'
export default { export default {
name: 'EquipmentLedger', name: 'EquipmentLedger',
dicts: ['user_year_type'], dicts: ['user_year_type'],
components: { AddEquip, QrcodeGenerator, EquAnalysis }, components: { AddEquip, QrcodeGenerator, EquAnalysis },
data() { data() {
return { return {
@ -1255,7 +1255,7 @@ export default {
this.queryParams.propertyUnitId = undefined this.queryParams.propertyUnitId = undefined
this.$refs.queryForm.resetFields() this.$refs.queryForm.resetFields()
this.queryParams.pageNum = 1 this.queryParams.pageNum = 1
this.getDeviceList() //this.getDeviceList()
}, },
/** /**

View File

@ -186,11 +186,11 @@ export default {
}, },
// //
handleView(row) { 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) { 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 } })
} }
} }
} }