From f6b61a485501f326debe52d77ea65d87fb34b37f Mon Sep 17 00:00:00 2001 From: 田源 <tianyuan@vci-tech.com> Date: 星期三, 05 三月 2025 17:57:09 +0800 Subject: [PATCH] 完善集成日志查询 --- Source/UBCS-WEB/src/components/template/SetPersonnel.vue | 7 ++----- 1 files changed, 2 insertions(+), 5 deletions(-) diff --git a/Source/UBCS-WEB/src/components/template/SetPersonnel.vue b/Source/UBCS-WEB/src/components/template/SetPersonnel.vue index f3a8041..64ec3ec 100644 --- a/Source/UBCS-WEB/src/components/template/SetPersonnel.vue +++ b/Source/UBCS-WEB/src/components/template/SetPersonnel.vue @@ -1,5 +1,5 @@ <template> - <el-dialog :title="title" :visible.sync="dialogVisible" append-to-body="true" width="30%"> + <el-dialog :title="title" :visible.sync="dialogVisible" append-to-body="true" class="avue-dialog avue-dialog--top" top="-3%" width="30%"> <el-tag v-for="tag in tags" :key="tag" closable disable-transitions effect="Plain" size="medium" @click="handleClickTag(tag)" @close="handleCloseTag(tag)"> <span> {{ tag.name }}</span> @@ -142,9 +142,7 @@ }, async apiDict() { const response = await personnelDict() - console.log(response) if (response.status === 200) { - console.log(response) const data = response.data.data this.typeName = data.map(item => { const { account, deptName, id, realName } = item @@ -174,7 +172,6 @@ async canCollect(name) { const response = await cancelCollect({ name: name }) if (response.status === 200) { - console.log(response) this.apiInit() this.isCollent = true this.$message({ @@ -253,7 +250,6 @@ this.done() }, handleConfirm() { - console.log(this.saveParam) this.apiSave() } } @@ -284,4 +280,5 @@ justify-content: end; padding-bottom: 10px; } + </style> -- Gitblit v1.9.3