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 @@
-
-
-
-
- {{ index + 1 }}
-
+
+
+
+
+
+
+
+
+ {{ project.name }}+{{ project.showBorder }}
+
+ 进行中
+
-
-
- {{ project.name }}
-
- 进行中
+
+ {{ $moment(+project.startTime).format('MM-DD HH:mm') }}
+ 至
+ {{ $moment(+project.endTime).format('MM-DD HH:mm') }}
+
-
- {{ $moment(+project.startTime).format('MM-DD HH:mm') }}
- 至
- {{ $moment(+project.endTime).format('MM-DD HH:mm') }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ subItem.name }}
+
+ 进行中
+
+
-
-
+
+
+
+
+
-
+
+
+
+
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"
+ }
+ }
+}