From a0b491b38c45b59c0e5a3d28409935d083501566 Mon Sep 17 00:00:00 2001 From: song Date: Tue, 24 Aug 2021 18:30:16 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B7=BB=E5=8A=A0=E9=A1=B9=E7=9B=AE?= =?UTF-8?q?=E6=8E=92=E5=BA=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 1 + package.json | 1 + src/.hbuilderx/launch.json | 11 -- src/components/Projects/Projects.vue | 172 ++++++++++++++++++++++++--- src/package.json | 37 ++++++ 5 files changed, 192 insertions(+), 30 deletions(-) delete mode 100644 src/.hbuilderx/launch.json create mode 100644 src/package.json diff --git a/CHANGELOG.md b/CHANGELOG.md index 1aa5ac4..3344cf8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -110,6 +110,7 @@ - | 定期任务接口 | [aa4981c](https://dd.tall.wiki/gitea/ccsens_fe/TALL-MUI-3/commits/aa4981c) - | 定期任务插件 | [92b3254](https://dd.tall.wiki/gitea/ccsens_fe/TALL-MUI-3/commits/92b3254) - | 定期任务未加载时,显示空的时间轴并能上下滑动 | [ce38093](https://dd.tall.wiki/gitea/ccsens_fe/TALL-MUI-3/commits/ce38093) + - | 定期任务本地缓存和api赋值,未完成 | [5a10856](https://dd.tall.wiki/gitea/ccsens_fe/TALL-MUI-3/commits/5a10856) 定期任务本地缓存和api赋值,未完成 | 定期任务本地缓存和api赋值,未完成 | [b22a366](https://dd.tall.wiki/gitea/ccsens_fe/TALL-MUI-3/commits/b22a366) - | 定期任务骨架屏修改 | [8ff72dd](https://dd.tall.wiki/gitea/ccsens_fe/TALL-MUI-3/commits/8ff72dd) - | 平车演示临时去掉项目快捷方式的toast提示 | [e0b2c23](https://dd.tall.wiki/gitea/ccsens_fe/TALL-MUI-3/commits/e0b2c23) diff --git a/package.json b/package.json index 5ca43c4..ca9496d 100644 --- a/package.json +++ b/package.json @@ -48,6 +48,7 @@ "regenerator-runtime": "^0.12.1", "uview-ui": "^1.8.4", "vue": "^2.6.11", + "vuedraggable": "^2.24.3", "vuex": "^3.2.0" }, "devDependencies": { diff --git a/src/.hbuilderx/launch.json b/src/.hbuilderx/launch.json deleted file mode 100644 index e5aaa3e..0000000 --- a/src/.hbuilderx/launch.json +++ /dev/null @@ -1,11 +0,0 @@ -{ // launch.json 配置了启动调试时相关设置,configurations下节点名称可为 app-plus/h5/mp-weixin/mp-baidu/mp-alipay/mp-qq/mp-toutiao/mp-360/ - // launchtype项可配置值为local或remote, local代表前端连本地云函数,remote代表前端连云端云函数 - "version": "0.0", - "configurations": [{ - "type": "uniCloud", - "default": { - "launchtype": "local" - } - } - ] -} diff --git a/src/components/Projects/Projects.vue b/src/components/Projects/Projects.vue index 6338842..1d2d651 100644 --- a/src/components/Projects/Projects.vue +++ b/src/components/Projects/Projects.vue @@ -1,39 +1,88 @@ diff --git a/src/package.json b/src/package.json new file mode 100644 index 0000000..743d5c5 --- /dev/null +++ b/src/package.json @@ -0,0 +1,37 @@ +{ + "pages": [ + { + "path": "pages/index/index", + "style": { + "navigationStyle": "custom" , + "navigationBarTextStyle": "white" + } + }, + { + "path": "pages/project/project", + "style": { + "navigationStyle": "custom" , + "navigationBarTextStyle": "white" + } + }, + { + "path": "pages/test/test", + "style": { + "navigationBarTitleText": "测试" + } + } + ], + "globalStyle": { + "navigationBarTextStyle": "black", + "navigationBarTitleText": "TALL", + "navigationBarBackgroundColor": "#F8F8F8", + "backgroundColor": "#F8F8F8" + }, + "easycom": { + "autoscan": true, + "custom": { + "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue", + "^p-(.*)": "@/plugins/p-$1/p-$1.vue" + } + } +}