From 9a6f26e519f38cb83ebd5658371b20e2ff1dfab7 Mon Sep 17 00:00:00 2001 From: laozt <2721205210@qq.com> Date: Tue, 26 Dec 2023 10:36:26 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AE=A1=E5=88=92=E7=AE=A1=E7=90=86=E6=89=B9?= =?UTF-8?q?=E9=87=8F=E5=88=A0=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.production | 4 +-- src/views/components/AddDialog/tab2.vue | 46 +++++++++++++++++-------- src/views/yingji/planManage.vue | 33 ++++++++++++++---- vue.config.js | 4 +-- 4 files changed, 62 insertions(+), 25 deletions(-) diff --git a/.env.production b/.env.production index 1dc3907..84401d1 100644 --- a/.env.production +++ b/.env.production @@ -6,8 +6,8 @@ ENV = 'production' # 苏州市应急执法计划管理系统/生产环境 # VUE_APP_BASE_API = 'http://192.168.0.105:9033' -VUE_APP_BASE_API = 'http://39.101.188.84:9033' -# VUE_APP_BASE_API = 'http://180.108.205.123:13002' +# VUE_APP_BASE_API = 'http://39.101.188.84:9033' +VUE_APP_BASE_API = 'http://180.108.205.123:13002' # 统一登录-内网 VUE_APP_SSO_LOGIN_N = 'http://2.46.4.197:8090/sso-server/oauth2/sso?aid=17847210&cbu=http%3A%2F%2F180.108.205.123%3A13001%2F&response_type=code' diff --git a/src/views/components/AddDialog/tab2.vue b/src/views/components/AddDialog/tab2.vue index 39e80f3..550341f 100644 --- a/src/views/components/AddDialog/tab2.vue +++ b/src/views/components/AddDialog/tab2.vue @@ -82,7 +82,13 @@
- + + 加入草稿箱
- @@ -168,6 +168,7 @@ 草稿箱( {{ enterpriseTotal }} 家)
下一步
+
批量加入草稿箱
@@ -290,6 +291,12 @@ export default { this.refreshList(); }, methods: { + // 多选框选中数据 + handleSelectionChange(selection) { + this.ids = selection.map((item) => item.id); + this.single = selection.length !== 1; + this.multiple = !selection.length; + }, refreshList() { let userInfo = JSON.parse(sessionStorage.getItem("USER_INFO")); if (userInfo.lawLevel == "县级" || userInfo.lawLevel == "镇级") { @@ -321,6 +328,7 @@ export default { btnNext() { this.$emit("nextTab", 2); }, + btnAdd() {}, // 加入草稿箱 handleAddDrafts(row) { this.resetPlanEnterprise(); @@ -545,7 +553,6 @@ export default { } } .tables { - // background-color: #eaf2fd; .tabs-btns { display: flex; align-items: center; @@ -585,13 +592,6 @@ export default { font-family: "Alibaba PuHuiTi"; font-weight: bold; color: #525966; - .el-checkbox { - display: none; - } - } - .el-table__body-wrapper { - // height: 448px !important; - overflow-y: auto; } } ::v-deep .el-table::before { @@ -727,6 +727,22 @@ export default { color: #2378ec; cursor: pointer; } + .btn-add { + width: 150px; + height: 30px; + border: 1px solid #3ecaa7; + border-radius: 2px; + background-color: #eff6ff; + display: flex; + align-items: center; + justify-content: center; + font-size: 15px; + font-family: "Alibaba PuHuiTi"; + font-weight: 400; + color: #48e1bb; + cursor: pointer; + margin-left: 10px; + } .selectBtn { background-color: #2378ec; color: #ffffff; diff --git a/src/views/yingji/planManage.vue b/src/views/yingji/planManage.vue index b521605..47ef81e 100644 --- a/src/views/yingji/planManage.vue +++ b/src/views/yingji/planManage.vue @@ -4,7 +4,7 @@ * @Author: JC9527 * @Date: 2023-09-04 10:20:06 * @LastEditors: laozt 2721205210@qq.com - * @LastEditTime: 2023-12-19 11:19:09 + * @LastEditTime: 2023-12-26 10:34:38 -->