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/implementationPlan.vue | 9 +++------
1 files changed, 3 insertions(+), 6 deletions(-)
diff --git a/src/views/CNAS/systemManagement/internalAuditManagement/components/implementationPlan.vue b/src/views/CNAS/systemManagement/internalAuditManagement/components/implementationPlan.vue
index 92f721f..98ddec0 100644
--- a/src/views/CNAS/systemManagement/internalAuditManagement/components/implementationPlan.vue
+++ b/src/views/CNAS/systemManagement/internalAuditManagement/components/implementationPlan.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">
@@ -209,7 +209,6 @@
this.tableLoading = true
pageInternalImplement({ ...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 => {
@@ -243,7 +242,6 @@
this.tableLoading = true
delInternalImplement({ implementId: row.implementId }).then(res => {
this.tableLoading = false
- if (res.code === 201) return
this.$message.success('鍒犻櫎鎴愬姛')
this.searchList()
}).catch(err => {
@@ -261,7 +259,6 @@
handleDown(row) {
exportInternalImplement({ implementId: row.implementId }).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