From f1e3c9825c8ffa4b57129aa676014d3914fbbf13 Mon Sep 17 00:00:00 2001 From: BianLzhaoMin <11485688+bianliangzhaomin123@user.noreply.gitee.com> Date: Mon, 28 Apr 2025 18:10:58 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../gw-template/components/addAndEditForm.vue | 6 ------ src/views/data-create/gw-template/index.vue | 10 ++-------- 2 files changed, 2 insertions(+), 14 deletions(-) diff --git a/src/views/data-create/gw-template/components/addAndEditForm.vue b/src/views/data-create/gw-template/components/addAndEditForm.vue index e8ac648..5a8444e 100644 --- a/src/views/data-create/gw-template/components/addAndEditForm.vue +++ b/src/views/data-create/gw-template/components/addAndEditForm.vue @@ -798,8 +798,6 @@ export default { async onConfirm() { this.$refs.addAndEditFormRef.validate(async (valid) => { if (valid) { - console.log(this.addAndEditForm) - // 组装参数 const params = { ...this.addAndEditForm, @@ -1006,8 +1004,6 @@ export default { }) } - // console.log(params) - const API = this.formType === 1 ? addGwTemplateAPI : editGwTemplateAPI if (this.formType === 3) { params.id = this.queryId @@ -1282,8 +1278,6 @@ export default { // 人员下拉选的change事件 async onChangePerson(value) { - console.log(value, 'value') - console.log(this.companyKeyPersonList, 'this.companyKeyPersonList') if ( this.companyKeyPersonList.length > 0 && this.companyKeyPersonList.some((item) => item.userId == value) diff --git a/src/views/data-create/gw-template/index.vue b/src/views/data-create/gw-template/index.vue index b28c250..cc54c25 100644 --- a/src/views/data-create/gw-template/index.vue +++ b/src/views/data-create/gw-template/index.vue @@ -147,7 +147,6 @@ export default { }, // 删除 onHandleDelete(row) { - console.log(row) this.$modal .confirm('确定删除该业绩吗?') .then(async () => { @@ -157,9 +156,7 @@ export default { this.getGwTemplateList() } }) - .catch(() => { - console.log('取消') - }) + .catch(() => {}) }, // 新增或编辑 onHandleAddOrEdit(row, type) { @@ -178,9 +175,7 @@ export default { this.dialogConfig.outerVisible = true }, // 下载 - onHandleDownload(row) { - console.log(row) - }, + onHandleDownload(row) {}, // 获取国网模板列表列表 async getGwTemplateList() { @@ -194,7 +189,6 @@ export default { const res = await getGwTemplateListAPI(this.queryParams) this.tableList = res.rows this.total = res.total - console.log(res, 'res') }, // 重置 resetQueryParams() {