From 7b50f264251ffa3f8f2c55f015c59919b6de2e6f Mon Sep 17 00:00:00 2001 From: yujialong <479214531@qq.com> Date: Wed, 20 Mar 2024 14:07:32 +0800 Subject: [PATCH] fix --- src/components/quill/index.vue | 2 +- src/pages/project/add/index.vue | 26 ++++++++++++++++---------- src/setting.js | 2 +- 3 files changed, 18 insertions(+), 12 deletions(-) diff --git a/src/components/quill/index.vue b/src/components/quill/index.vue index 3128580..365045d 100644 --- a/src/components/quill/index.vue +++ b/src/components/quill/index.vue @@ -189,7 +189,7 @@ export default { children.padding = "0"; children.overflow = "hidden"; children.height = "0"; - children.borderTop = "0"; + children.border = "0"; } }, beforeDestroy () { diff --git a/src/pages/project/add/index.vue b/src/pages/project/add/index.vue index 346a134..73cb7e1 100644 --- a/src/pages/project/add/index.vue +++ b/src/pages/project/add/index.vue @@ -144,9 +144,9 @@ class="table" stripe header-align="center" - use-virtual - :max-height="400" - :row-height="168" + :use-virtual="isLc" + :max-height="600" + :row-height="60" :border="false" @selection-change="handleSelectionProjectJudgment" row-key="judgmentId" @@ -164,20 +164,21 @@ + align="center" + show-overflow-tooltip + min-width="140"> + align="center" + show-overflow-tooltip + min-width="140"> @@ -378,7 +379,12 @@ export default { return score; }, set (val) { } - } + }, + // 是否流程点分类 + isLc () { + const systemId = +this.projectManage.systemId + return systemId === 11 || systemId === 12 || systemId === 19 + }, }, watch: { // 监听信息是否有更改,有的话页面离开的时候要询问是否要保存 diff --git a/src/setting.js b/src/setting.js index 44e6744..02c2f94 100644 --- a/src/setting.js +++ b/src/setting.js @@ -32,7 +32,7 @@ if (isPro) { uploadURL = `http://121.37.12.51/` host = "http://121.37.12.51/"; // 中台测试服 // host = 'https://www.occupationlab.com/' // 正式服 - host = "http://192.168.31.217:9000/"; + // host = "http://192.168.31.217:9000/"; } else if (isSq) { zcPath = `10.20.100.204:8883` }