From 9fadad4c83972193d680dea949b8e770a83d7edb Mon Sep 17 00:00:00 2001 From: liutong <836164388@qq.com> Date: Thu, 13 Mar 2025 14:55:11 +0800 Subject: [PATCH] =?UTF-8?q?feat(coach):=20=E6=B7=BB=E5=8A=A0=E6=84=8F?= =?UTF-8?q?=E8=A7=81=E5=8F=8D=E9=A6=88=E5=8A=9F=E8=83=BD-=20=E5=9C=A8?= =?UTF-8?q?=E6=95=99=E7=BB=83=E9=A1=B5=E9=9D=A2=E6=B7=BB=E5=8A=A0=E6=84=8F?= =?UTF-8?q?=E8=A7=81=E5=8F=8D=E9=A6=88=E5=85=A5=E5=8F=A3-=20=E6=96=B0?= =?UTF-8?q?=E5=A2=9E=E5=8F=8D=E9=A6=88=E9=A1=B5=E9=9D=A2=E7=BB=84=E4=BB=B6?= =?UTF-8?q?=20-=20=E5=AE=9E=E7=8E=B0=E5=8F=8D=E9=A6=88=E9=A1=B5=E9=9D=A2?= =?UTF-8?q?=E5=9F=BA=E6=9C=AC=E5=8A=9F=E8=83=BD=EF=BC=8C=E5=8C=85=E6=8B=AC?= =?UTF-8?q?=E8=AF=BE=E7=A8=8B=E5=92=8C=E8=AF=BE=E5=AE=A4=E9=80=89=E6=8B=A9?= =?UTF-8?q?=E3=80=81=E6=95=B0=E6=8D=AE=E5=B1=95=E7=A4=BA=E7=AD=89=20-=20?= =?UTF-8?q?=E6=9B=B4=E6=96=B0=E5=85=A8=E5=B1=80=E9=85=8D=E7=BD=AE=EF=BC=8C?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=8F=8D=E9=A6=88=E9=A1=B5=E9=9D=A2=E8=B7=AF?= =?UTF-8?q?=E5=BE=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages.json | 9 ++ pages/coach/my/index.vue | 11 +- pages/common/feedback.vue | 275 ++++++++++++++++++++++++++++++++++++++ 3 files changed, 293 insertions(+), 2 deletions(-) create mode 100644 pages/common/feedback.vue diff --git a/pages.json b/pages.json index 239c706..1e6c61c 100644 --- a/pages.json +++ b/pages.json @@ -99,6 +99,15 @@ "navigationBarTextStyle": "black" } }, + { + "path" : "pages/common/feedback", + "style": { + "navigationBarTitleText": "意见反馈", + "navigationStyle": "default", + "navigationBarBackgroundColor": "#292929", + "navigationBarTextStyle": "white" + } + }, diff --git a/pages/coach/my/index.vue b/pages/coach/my/index.vue index 6ca62d0..b602749 100644 --- a/pages/coach/my/index.vue +++ b/pages/coach/my/index.vue @@ -78,7 +78,7 @@ - 意见反馈 + 意见反馈 @@ -125,12 +125,19 @@ export default { }) }, - //大家授课统计 + //打开授课统计 openViewSchoolingStatistics(){ uni.navigateTo({ url: '/pages/coach/my/schooling_statistics' }) }, + + //打开意见反馈 + openViewFeedback(){ + uni.navigateTo({ + url: '/pages/common/feedback' + }) + }, } } diff --git a/pages/common/feedback.vue b/pages/common/feedback.vue new file mode 100644 index 0000000..9daaa6e --- /dev/null +++ b/pages/common/feedback.vue @@ -0,0 +1,275 @@ + + + + + + \ No newline at end of file