From b304ff03ae47e963b3b398d382090679d6a4944f Mon Sep 17 00:00:00 2001
From: gaoluyang <2820782392@qq.com>
Date: 星期五, 14 三月 2025 09:22:28 +0800
Subject: [PATCH] 标准查新分页修改
---
src/views/CNAS/systemManagement/internalAuditManagement/components/auditReport.vue | 9 +++------
1 files changed, 3 insertions(+), 6 deletions(-)
diff --git a/src/views/CNAS/systemManagement/internalAuditManagement/components/auditReport.vue b/src/views/CNAS/systemManagement/internalAuditManagement/components/auditReport.vue
index 1eb6332..38bdaeb 100644
--- a/src/views/CNAS/systemManagement/internalAuditManagement/components/auditReport.vue
+++ b/src/views/CNAS/systemManagement/internalAuditManagement/components/auditReport.vue
@@ -4,11 +4,11 @@
<span class="search-group">
<span style="width: 160px">瀹℃牳鐩殑锛�</span>
<el-input v-model="searchForm.purposes" clearable size="small"></el-input>
- <el-button size="medium" style="margin-left: 10px" @click="resetSearchForm">閲� 缃�</el-button>
- <el-button size="medium" type="primary" @click="searchList">鏌� 璇�</el-button>
+ <el-button size="small" style="margin-left: 10px" @click="resetSearchForm">閲� 缃�</el-button>
+ <el-button size="small" type="primary" @click="searchList">鏌� 璇�</el-button>
</span>
<span class="search-group">
- <el-button size="medium" type="primary" @click="openFormDia('add')">鏂� 澧�</el-button>
+ <el-button size="small" type="primary" @click="openFormDia('add')">鏂� 澧�</el-button>
</span>
</div>
<div class="table">
@@ -229,7 +229,6 @@
this.tableLoading = true
pageInternalReport({ ...entity, ...page }).then(res => {
this.tableLoading = false
- if (res.code === 201) return
this.tableData = res.data.records
this.page.total = res.data.total
}).catch(err => {
@@ -263,7 +262,6 @@
this.tableLoading = true
delInternalReport({ reportId: row.reportId }).then(res => {
this.tableLoading = false
- if (res.code === 201) return
this.$message.success('鍒犻櫎鎴愬姛')
this.searchList()
}).catch(err => {
@@ -281,7 +279,6 @@
handleDown(row) {
exportInternalReport({ reportId: row.reportId }).then(res => {
this.outLoading = false
- this.$message.success('瀵煎嚭鎴愬姛')
const blob = new Blob([res], { type: 'application/msword' });
this.$download.saveAs(blob, '鍐呭鎶ュ憡' + '.docx');
})
--
Gitblit v1.9.3