From 4bd9ecdb092c88d050e58d5a150b62e5e90b65b0 Mon Sep 17 00:00:00 2001 From: gaoluyang <2820782392@qq.com> Date: 星期五, 14 三月 2025 16:10:14 +0800 Subject: [PATCH] 删除无用代码 --- src/views/CNAS/systemManagement/internalAuditManagement/components/auditInspection.vue | 9 +++------ 1 files changed, 3 insertions(+), 6 deletions(-) diff --git a/src/views/CNAS/systemManagement/internalAuditManagement/components/auditInspection.vue b/src/views/CNAS/systemManagement/internalAuditManagement/components/auditInspection.vue index ecbc0cf..5638155 100644 --- a/src/views/CNAS/systemManagement/internalAuditManagement/components/auditInspection.vue +++ b/src/views/CNAS/systemManagement/internalAuditManagement/components/auditInspection.vue @@ -4,11 +4,11 @@ <span class="search-group"> <span style="width: 160px">鍙楀閮ㄩ棬锛�</span> <el-input v-model="searchForm.department" 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"> @@ -171,7 +171,6 @@ this.tableLoading = true pageInternalCheck({ ...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 => { @@ -205,7 +204,6 @@ this.tableLoading = true delInternalCheck({ checkId: row.checkId }).then(res => { this.tableLoading = false - if (res.code === 201) return this.$message.success('鍒犻櫎鎴愬姛') this.searchList() }).catch(err => { @@ -223,7 +221,6 @@ handleDown(row) { exportInternalCheck({ checkId: row.checkId }).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