diff --git a/pages.json b/pages.json index b2dd996..0a0b224 100644 --- a/pages.json +++ b/pages.json @@ -324,13 +324,36 @@ "navigationBarBackgroundColor": "#fff", "navigationBarTextStyle": "black" } + }, + { + "path": "pages/market/my/info", + "style": { + "navigationBarTitleText": "个人资料", + "navigationStyle": "default", + "navigationBarBackgroundColor": "#292929", + "navigationBarTextStyle": "white" + } + }, + { + "path": "pages/market/my/set_up", + "style": { + "navigationBarTitleText": "设置", + "navigationStyle": "default", + "navigationBarBackgroundColor": "#292929", + "navigationBarTextStyle": "white" + } + }, + { + "path": "pages/market/my/update_pass", + "style": { + "navigationBarTitleText": "修改密码", + "navigationStyle": "default", + "navigationBarBackgroundColor": "#fff", + "navigationBarTextStyle": "black" + } } - - - - ], "globalStyle": { "navigationBarTextStyle": "white", diff --git a/pages/market/my/index.vue b/pages/market/my/index.vue index 6c015e4..aef340b 100644 --- a/pages/market/my/index.vue +++ b/pages/market/my/index.vue @@ -111,21 +111,21 @@ export default { //打开到课率统计 openViewArrivalStatistics(){ uni.navigateTo({ - url: '/pages/coach/my/arrival_statistics' + url: '/pages/market/my/arrival_statistics' }) }, //打开即将到期 openViewDueSoon(){ uni.navigateTo({ - url: '/pages/coach/my/due_soon' + url: '/pages/market/my/due_soon' }) }, //打开授课统计 openViewSchoolingStatistics(){ uni.navigateTo({ - url: '/pages/coach/my/schooling_statistics' + url: '/pages/market/my/schooling_statistics' }) }, @@ -139,14 +139,14 @@ export default { //打开个人资料 openViewMyInfo(){ uni.navigateTo({ - url: '/pages/coach/my/info' + url: '/pages/market/my/info' }) }, //打开设置 openViewSetUp(){ uni.navigateTo({ - url: '/pages/coach/my/set_up' + url: '/pages/market/my/set_up' }) } } @@ -182,7 +182,6 @@ export default { color: #fff; font-size: 28rpx; .box{ - border: 1px solid red; padding-left: 19rpx; padding-right: 29rpx; display: flex; diff --git a/pages/market/my/set_up.vue b/pages/market/my/set_up.vue index 31e3566..af5d87e 100644 --- a/pages/market/my/set_up.vue +++ b/pages/market/my/set_up.vue @@ -28,7 +28,7 @@ }, update_pass(){ uni.navigateTo({ - url: '/pages/coach/my/update_pass' + url: '/pages/market/my/update_pass' }) } }