From 59da004f2ec6c8dc2b59b524ea4c20883e317ca5 Mon Sep 17 00:00:00 2001
From: li-guang <153605324@qq.com>
Date: Tue, 15 Dec 2020 17:27:28 +0800
Subject: [PATCH] 个人中心设置,会员详情修改
---
hive-app/pages.json | 108 ++++++++++++++++++++++++++++++++++++++++++++++++------
1 files changed, 96 insertions(+), 12 deletions(-)
diff --git a/hive-app/pages.json b/hive-app/pages.json
index 27973fb..c6486fe 100644
--- a/hive-app/pages.json
+++ b/hive-app/pages.json
@@ -1,17 +1,101 @@
{
- "pages": [{
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "uni-app"
+ "pages": [
+ {
+ "path": "pages/workbench/index",
+ "style": {
+ "transparentTitle": "always",
+ "app-plus":{
+ "scrollIndicator": "none"
+ }
+ }
+ },
+ {
+ "path": "pages/login/index",
+ "style": {
+ "transparentTitle": "always",
+ "app-plus":{
+ "scrollIndicator": "none"
+ }
+ }
+ },
+
+ {
+ "path": "pages/member/index",
+ "style": {
+ "transparentTitle": "always",
+ "app-plus":{
+ "scrollIndicator": "none"
+ }
+ }
+ },
+ {
+ "path": "pages/mine/index",
+ "style": {
+ "transparentTitle": "always",
+ "app-plus":{
+ "scrollIndicator": "none"
+ }
+ }
+ },
+ {
+ "path": "pages/member/detail",
+ "style": {
+ "navigationBarTitleText": "",
+ "navigationBarBackgroundColor":"#518EFF",
+ "app-plus":{
+ "scrollIndicator": "none"
+ }
+ }
+ },
+ {
+ "path": "pages/mine/setting",
+ "style": {
+ "navigationBarTitleText": "设置",
+ "navigationBarBackgroundColor":"#FFFFFF",
+ "navigationBarTextStyle":"black",
+ "app-plus":{
+ "scrollIndicator": "none"
+ }
+ }
+ },
+ {
+ "path": "pages/mine/knowledge",
+ "style": {
+ "navigationBarTitleText": "知识库",
+ "navigationBarBackgroundColor":"#FFFFFF",
+ "navigationBarTextStyle":"black",
+ "app-plus":{
+ "scrollIndicator": "none"
+ }
+ }
}
- }],
+ ],
"globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8",
- "app-plus": {
- "background": "#efeff4"
- }
+ "backgroundColor":"#F8F8F8"
+ },
+ "tabBar":{
+ "color": "#abb1cc",
+ "selectedColor": "#518EFF",
+ "backgroundColor": "#FFFFFF",
+ "list":[
+ {
+ "pagePath": "pages/workbench/index",
+ "iconPath": "static/images/tabbar1.png",
+ "selectedIconPath": "static/images/tabbar1-2.png",
+ "text": "工作台"
+ },
+ {
+ "pagePath": "pages/member/index",
+ "iconPath": "static/images/tabbar2.png",
+ "selectedIconPath": "static/images/tabbar2-2.png",
+ "text": "会员"
+ },
+ {
+ "pagePath": "pages/mine/index",
+ "iconPath": "static/images/tabbar3.png",
+ "selectedIconPath": "static/images/tabbar3-2.png",
+ "text": "我的"
+ }
+ ]
}
}
--
Gitblit v1.9.1