diff --git a/pages.config.ts b/pages.config.ts
index 672e834..bdb69ce 100644
--- a/pages.config.ts
+++ b/pages.config.ts
@@ -3,7 +3,7 @@ import { defineUniPages } from '@uni-helper/vite-plugin-uni-pages'
export default defineUniPages({
globalStyle: {
navigationStyle: 'default',
- navigationBarTitleText: 'unibest',
+ navigationBarTitleText: '星星勤务',
navigationBarBackgroundColor: '#f8f8f8',
navigationBarTextStyle: 'black',
backgroundColor: '#FFFFFF'
@@ -28,25 +28,25 @@ export default defineUniPages({
list: [
{
iconPath: 'static/tabbar/home.png',
- selectedIconPath: 'static/tabbar/homeHL.png',
+ selectedIconPath: 'static/tabbar/home_selected.png',
pagePath: 'pages/home/home',
text: '首页'
},
{
- iconPath: 'static/tabbar/home.png',
- selectedIconPath: 'static/tabbar/homeHL.png',
+ iconPath: 'static/tabbar/workbench.png',
+ selectedIconPath: 'static/tabbar/workbench_selected.png',
pagePath: 'pages/workbench/workbench',
text: '工作台'
},
{
- iconPath: 'static/tabbar/home.png',
- selectedIconPath: 'static/tabbar/homeHL.png',
+ iconPath: 'static/tabbar/notification.png',
+ selectedIconPath: 'static/tabbar/notification_selected.png',
pagePath: 'pages/notification/notification',
text: '消息'
},
{
- iconPath: 'static/tabbar/example.png',
- selectedIconPath: 'static/tabbar/exampleHL.png',
+ iconPath: 'static/tabbar/mine.png',
+ selectedIconPath: 'static/tabbar/mine_selected.png',
pagePath: 'pages/mine/mine',
text: '我的'
}
diff --git a/src/components/TeamDilog/TeamPopup.vue b/src/components/TeamDilog/TeamPopup.vue
new file mode 100644
index 0000000..d988f1f
--- /dev/null
+++ b/src/components/TeamDilog/TeamPopup.vue
@@ -0,0 +1,88 @@
+
+
+
+
+
+ 我的团队
+
+
+
+
+
+
+
+
+
+ 06066322的互联
+
+
+
+
+
+
+
+
+
+ 创建团队
+
+ 加入团队
+
+
+ 快捷添加我的设备
+
+
+
+
+
+
+
diff --git a/src/pages.json b/src/pages.json
index 0189e52..400228e 100644
--- a/src/pages.json
+++ b/src/pages.json
@@ -1,7 +1,7 @@
{
"globalStyle": {
"navigationStyle": "default",
- "navigationBarTitleText": "unibest",
+ "navigationBarTitleText": "星星勤务",
"navigationBarBackgroundColor": "#f8f8f8",
"navigationBarTextStyle": "black",
"backgroundColor": "#FFFFFF"
@@ -25,25 +25,25 @@
"list": [
{
"iconPath": "static/tabbar/home.png",
- "selectedIconPath": "static/tabbar/homeHL.png",
+ "selectedIconPath": "static/tabbar/home_selected.png",
"pagePath": "pages/home/home",
"text": "首页"
},
{
- "iconPath": "static/tabbar/home.png",
- "selectedIconPath": "static/tabbar/homeHL.png",
+ "iconPath": "static/tabbar/workbench.png",
+ "selectedIconPath": "static/tabbar/workbench_selected.png",
"pagePath": "pages/workbench/workbench",
"text": "工作台"
},
{
- "iconPath": "static/tabbar/home.png",
- "selectedIconPath": "static/tabbar/homeHL.png",
+ "iconPath": "static/tabbar/notification.png",
+ "selectedIconPath": "static/tabbar/notification_selected.png",
"pagePath": "pages/notification/notification",
"text": "消息"
},
{
- "iconPath": "static/tabbar/example.png",
- "selectedIconPath": "static/tabbar/exampleHL.png",
+ "iconPath": "static/tabbar/mine.png",
+ "selectedIconPath": "static/tabbar/mine_selected.png",
"pagePath": "pages/mine/mine",
"text": "我的"
}
diff --git a/src/pages/home/HomeAddDevice.vue b/src/pages/home/HomeAddDevice.vue
new file mode 100644
index 0000000..442a88c
--- /dev/null
+++ b/src/pages/home/HomeAddDevice.vue
@@ -0,0 +1,10 @@
+
+
+
+
+ 添加设备
+
+
+
+
+
diff --git a/src/pages/home/HomeAddTeamManager.vue b/src/pages/home/HomeAddTeamManager.vue
new file mode 100644
index 0000000..3463f5f
--- /dev/null
+++ b/src/pages/home/HomeAddTeamManager.vue
@@ -0,0 +1,20 @@
+
+
+
+
+ 添加人员
+
+
+ 开启协同管理
+
+
+
+ 添加设备
+
+
+ 开启智能物联
+
+
+
+
+
diff --git a/src/pages/home/HomeAttendance.vue b/src/pages/home/HomeAttendance.vue
new file mode 100644
index 0000000..53e6e30
--- /dev/null
+++ b/src/pages/home/HomeAttendance.vue
@@ -0,0 +1,27 @@
+
+
+
+
+ 考勤
+
+
+
+
+ {{ current }}%
+
+
+ 今日出勤率:2/12
+
+ 未打卡:
+ 10
+ 迟到:
+ 0
+
+
+
+
+
+
+
diff --git a/src/pages/home/HomeOpenDoor.vue b/src/pages/home/HomeOpenDoor.vue
new file mode 100644
index 0000000..6a3e01f
--- /dev/null
+++ b/src/pages/home/HomeOpenDoor.vue
@@ -0,0 +1,43 @@
+
+
+
+
+ 一键开门
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ item }}
+
+
+
+
+
+
+
+
diff --git a/src/pages/home/HomeSetting.vue b/src/pages/home/HomeSetting.vue
new file mode 100644
index 0000000..7131eb8
--- /dev/null
+++ b/src/pages/home/HomeSetting.vue
@@ -0,0 +1,16 @@
+
+
+
+
+
+ 编辑首页
+
+
+
+ 切换到简洁版
+
+
+
+
+
+
diff --git a/src/pages/home/HomeTab.vue b/src/pages/home/HomeTab.vue
index 485d109..f124fe2 100644
--- a/src/pages/home/HomeTab.vue
+++ b/src/pages/home/HomeTab.vue
@@ -31,6 +31,8 @@
diff --git a/src/pages/home/HomeTeamManager.vue b/src/pages/home/HomeTeamManager.vue
new file mode 100644
index 0000000..8d7c8a3
--- /dev/null
+++ b/src/pages/home/HomeTeamManager.vue
@@ -0,0 +1,26 @@
+
+
+
+
+ 12
+ 人
+
+ 人员管理
+
+
+ 人员总数
+
+
+
+ 1
+ 台
+
+ 设备管理
+
+
+ 设备总数
+
+
+
+
+
diff --git a/src/pages/home/HomeTodo.vue b/src/pages/home/HomeTodo.vue
index 87e36f4..ecc5421 100644
--- a/src/pages/home/HomeTodo.vue
+++ b/src/pages/home/HomeTodo.vue
@@ -11,10 +11,10 @@
:key="index"
>
- {{ item.name }}
+ {{ item.title }}
{{ item.content }}
- 去处理
+ 去处理
diff --git a/src/pages/home/home.vue b/src/pages/home/home.vue
index 2d14f90..0107281 100644
--- a/src/pages/home/home.vue
+++ b/src/pages/home/home.vue
@@ -15,9 +15,12 @@
- 19104656的互联
-
-
+
+ 19104656的互联
+
+
+
+
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+