From 2e176f7137e1499fab95786b65895ad3a2f78186 Mon Sep 17 00:00:00 2001 From: xuesinan <1404152492@qq.com> Date: Fri, 26 Nov 2021 17:31:17 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20"=E7=A7=91=E7=A0=94=E4=BC=9A=E8=AE=AE?= =?UTF-8?q?=E7=AE=A1=E7=90=86"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.vue | 16 +-- src/apis/index.js | 4 +- src/components/tall/center/ProjectDetail.vue | 54 +++++++--- src/components/tall/left/Projects.vue | 4 + .../tall/task/MeetingManagement.vue | 100 +++++++++++++---- src/components/tall/task/PlanAssignment.vue | 3 + src/components/tall/task/TaskConList.vue | 102 ++++++++++++++++++ src/components/tall/top/Navbar.vue | 38 +++++-- src/store/tall/layout/mutations.js | 5 + src/store/tall/layout/state.js | 1 + src/store/tall/task/index.js | 13 +++ src/views/detail/Test.vue | 90 ++++++++++++---- 12 files changed, 353 insertions(+), 77 deletions(-) create mode 100644 src/components/tall/task/PlanAssignment.vue create mode 100644 src/components/tall/task/TaskConList.vue diff --git a/src/App.vue b/src/App.vue index 684366d..7323aa2 100644 --- a/src/App.vue +++ b/src/App.vue @@ -104,12 +104,20 @@ body, background: #fff; } +.font-14 { + font-size: 14px !important; +} + .color-3 { - color: #333; + color: #333 !important; } .color-6 { - color: #666; + color: #666 !important; +} + +.color-c { + color: #cccccc !important; } .border-radius-10 { @@ -120,8 +128,4 @@ body, display: block; margin-bottom: 5px; } - -::-webkit-scrollbar { - width: 0 !important; -} diff --git a/src/apis/index.js b/src/apis/index.js index eccab61..b7c94b0 100644 --- a/src/apis/index.js +++ b/src/apis/index.js @@ -6,7 +6,7 @@ const apiUrl = import.meta.env.VITE_API_URL; const users = `${apiUrl}/gateway/tall3/v3.0/users`; const tall = `${apiUrl}/gateway/tall3/v3.0`; const experiment = `${apiUrl}/gateway/experiment`; -const defaultwbs = `${apiUrl}/gateway/sports`; +const filedeal = `${apiUrl}/filedeal`; // 根据userId 获取token // eslint-disable-next-line import/prefer-default-export @@ -65,4 +65,4 @@ export const importWbs = async e => { export const create = param => http.post(`${experiment}/experiment/create`, { params: { param } }); // 上传文件 -export const uploadImg = `${defaultwbs}/file/upload`; +export const uploadImg = `${filedeal}/file/upload/multiple`; diff --git a/src/components/tall/center/ProjectDetail.vue b/src/components/tall/center/ProjectDetail.vue index c3fe21e..a4d597b 100644 --- a/src/components/tall/center/ProjectDetail.vue +++ b/src/components/tall/center/ProjectDetail.vue @@ -1,4 +1,5 @@