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 @@