diff --git a/pages.json b/pages.json index 98066ff..73f39c4 100644 --- a/pages.json +++ b/pages.json @@ -195,7 +195,18 @@ "navigationBarBackgroundColor": "#292929", "navigationBarTextStyle": "white" } + }, + { + "path": "pages/coach/my/due_soon", + "style": { + "navigationBarTitleText": "即将到期", + "navigationStyle": "default", + "navigationBarBackgroundColor": "#292929", + "navigationBarTextStyle": "white" + } } + + ], "globalStyle": { "navigationBarTextStyle": "white", diff --git a/pages/coach/my/due_soon.vue b/pages/coach/my/due_soon.vue new file mode 100644 index 0000000..2257d18 --- /dev/null +++ b/pages/coach/my/due_soon.vue @@ -0,0 +1,316 @@ + + + + + + \ No newline at end of file diff --git a/pages/coach/my/index.vue b/pages/coach/my/index.vue index 311ffcc..77247c4 100644 --- a/pages/coach/my/index.vue +++ b/pages/coach/my/index.vue @@ -65,7 +65,7 @@ - 即将到期 + 即将到期 @@ -117,6 +117,13 @@ export default { url: '/pages/coach/my/arrival_statistics' }) }, + + //打开即将到期 + openViewDueSoon(){ + uni.navigateTo({ + url: '/pages/coach/my/due_soon' + }) + }, } }