diff --git a/src/views/material/stquery/deviceComparisonStatistical.vue b/src/views/material/stquery/deviceComparisonStatistical.vue index 3a31c337..809494d6 100644 --- a/src/views/material/stquery/deviceComparisonStatistical.vue +++ b/src/views/material/stquery/deviceComparisonStatistical.vue @@ -281,6 +281,9 @@ export default { this.openUseRecord = true this.dialogUseQuery.typeId = row.typeId this.dialogUseQuery.keyWord = '' + this.dialogUseQuery.pageNum = 1 + this.dialogUseQuery.pageSize = 10 + this.useRecordList = [] this.getUserRecords() }, /** 查询在用设备列表 */ diff --git a/src/views/material/stquery/deviceStatusRecord.vue b/src/views/material/stquery/deviceStatusRecord.vue index 1af06ae2..672a521d 100644 --- a/src/views/material/stquery/deviceStatusRecord.vue +++ b/src/views/material/stquery/deviceStatusRecord.vue @@ -790,6 +790,9 @@ export default { this.openRecord = true this.dialogQuery.keyWord = "" this.dialogQuery.typeId = row.typeId; + this.dialogQuery.pageNum = 1 + this.dialogQuery.pageSize = 10 + this.dialogList = [] this.getStoreCodeList() }, /** 查询在库编码列表 */ @@ -828,6 +831,9 @@ export default { this.openUseRecord = true this.dialogUseQuery.typeId= row.typeId this.dialogUseQuery.keyWord = ""; + this.dialogUseQuery.pageNum = 1 + this.dialogUseQuery.pageSize = 10 + this.useRecordList = [] this.getUserRecords() }, /** 查询在用设备列表 */ @@ -867,6 +873,9 @@ export default { this.dialogRepairQuery.typeId= row.typeId this.dialogRepairQuery.pageNum = 1; this.dialogRepairQuery.keyWord = ""; + this.dialogRepairQuery.pageNum = 1 + this.dialogRepairQuery.pageSize = 10 + this.repairRecordList = [] this.getRepairRecords() }, /** 查询在修设备列表 */ @@ -905,7 +914,9 @@ export default { this.openPurchaseRecord = true this.dialogPurchaseQuery.typeId= row.typeId this.dialogPurchaseQuery.pageNum = 1; + this.dialogPurchaseQuery.pageSize = 10 this.dialogPurchaseQuery.keyWord = ""; + this.purchaseRecordList = [] this.getPurchaseRecords() }, /** 查询新购入库设备列表 */ @@ -944,7 +955,9 @@ export default { this.openTestedRecord = true this.dialogTestedQuery.typeId= row.typeId this.dialogTestedQuery.pageNum = 1; + this.dialogTestedQuery.pageSize = 10 this.dialogTestedQuery.keyWord = ""; + this.testedRecordList = [] this.getTestedRecords() }, /** 查询修试入库设备列表 */ @@ -984,7 +997,9 @@ export default { this.openToScrapRecord = true this.dialogToScrapQuery.typeId= row.typeId this.dialogToScrapQuery.pageNum = 1; + this.dialogToScrapQuery.pageSize = 10 this.dialogToScrapQuery.keyWord = ""; + this.toScrapRecordList = [] this.getToScrapRecords() }, /** 查询待报废设备列表 */ @@ -1023,7 +1038,9 @@ export default { this.openAuditedRecord = true this.dialogAuditedQuery.typeId= row.typeId this.dialogAuditedQuery.pageNum = 1; + this.dialogAuditedQuery.pageSize = 10 this.dialogAuditedQuery.keyWord = ""; + this.auditedRecordList = [] this.getAuditedRecords() }, /** 查询已审核报废设备列表 */