From 57ccd0b832e3db5dfa9810f4036e51b44a3dc1af Mon Sep 17 00:00:00 2001 From: aBin Date: Thu, 4 Nov 2021 17:22:02 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E7=9C=81=E5=8D=AB=E5=81=A5=E5=A7=94?= =?UTF-8?q?=E7=9B=B8=E5=85=B3=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 3 +- src/apis/tall.js | 2 +- src/components/Globals/Globals.vue | 29 +++++- src/components/Greenway/Greenway.vue | 132 +++++++++++++++++++++++++++ src/manifest.json | 2 +- src/pages/project/project.vue | 13 ++- src/store/messages/mutations.js | 20 ++++ src/store/messages/state.js | 19 ++++ src/store/project/mutations.js | 9 ++ src/store/project/state.js | 1 + src/store/socket/actions.js | 3 + 11 files changed, 224 insertions(+), 9 deletions(-) create mode 100644 src/components/Greenway/Greenway.vue diff --git a/CHANGELOG.md b/CHANGELOG.md index 1731c2e..824e0ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# 0.1.0 (2021-10-18) +# 0.1.0 (2021-11-04) ### 🌟 新功能 范围|描述|commitId @@ -165,6 +165,7 @@ - | 修改定期任务状态0和4时不加载圆圈 | [30e352f](https://dd.tall.wiki/gitea/wally/tall-mui-3-project/commits/30e352f) - | 修改角色栏组件 | [a54c601](https://dd.tall.wiki/gitea/wally/tall-mui-3-project/commits/a54c601) - | 修改接口路径 | [df6acf2](https://dd.tall.wiki/gitea/wally/tall-mui-3-project/commits/df6acf2) + - | 修改时间至无法正确滚动到第一个真实任务的问题 | [7522344](https://dd.tall.wiki/gitea/wally/tall-mui-3-project/commits/7522344) - | 修改时间轴定期任务加载逻辑 | [1977c00](https://dd.tall.wiki/gitea/wally/tall-mui-3-project/commits/1977c00) - | 修改项目详情页返回首页bug | [e942887](https://dd.tall.wiki/gitea/wally/tall-mui-3-project/commits/e942887) - | 修改小红点传参 | [87b20fd](https://dd.tall.wiki/gitea/wally/tall-mui-3-project/commits/87b20fd) diff --git a/src/apis/tall.js b/src/apis/tall.js index a8e2688..07c947f 100644 --- a/src/apis/tall.js +++ b/src/apis/tall.js @@ -32,7 +32,7 @@ export const getQueryButton = { }, }; -// 查询当前用户是否展示宣传页按钮 +// 查询当前用户是否展示宣传页 export const queryIsShow = { async index(params) { try { diff --git a/src/components/Globals/Globals.vue b/src/components/Globals/Globals.vue index 68b5acf..a728653 100644 --- a/src/components/Globals/Globals.vue +++ b/src/components/Globals/Globals.vue @@ -1,17 +1,24 @@