From a93032bebfdb6f174faa894bb9e607ad4a5080c2 Mon Sep 17 00:00:00 2001 From: unknown <331404948@qq.com> Date: Wed, 30 Aug 2023 18:58:47 +0800 Subject: [PATCH] =?UTF-8?q?=E5=86=99=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages.json | 53 +++++-- pages/tabbar/mine/index.vue | 8 +- pages/userCenter/examinInfo/comp/examinItem.vue | 98 ++++++++++++ pages/userCenter/examinInfo/examinInfo.vue | 69 ++++++++ .../indicatorRecharge/indicatorRecharge.vue | 65 ++++++++ pages/userCenter/myCar/myCar.vue | 30 ++++ pages/userCenter/refund/comp/item.vue | 130 +++++++++++++++ pages/userCenter/refund/refund.vue | 47 ++++++ pages/userCenter/settled/settled.vue | 174 +++++++++++++++++++++ pages/userCenter/studentComment/studentComment.vue | 26 ++- static/images/index/telephone.png | Bin 0 -> 1798 bytes 11 files changed, 682 insertions(+), 18 deletions(-) create mode 100644 pages/userCenter/examinInfo/comp/examinItem.vue create mode 100644 pages/userCenter/examinInfo/examinInfo.vue create mode 100644 pages/userCenter/indicatorRecharge/indicatorRecharge.vue create mode 100644 pages/userCenter/myCar/myCar.vue create mode 100644 pages/userCenter/refund/comp/item.vue create mode 100644 pages/userCenter/refund/refund.vue create mode 100644 pages/userCenter/settled/settled.vue create mode 100644 static/images/index/telephone.png diff --git a/pages.json b/pages.json index 75421d2..8037860 100644 --- a/pages.json +++ b/pages.json @@ -169,35 +169,62 @@ "enablePullDownRefresh": false, "backgroundTextStyle": "dark" } - } - ] - }, - { - "root": "pages/userCenter", - "pages": [ + }, + { + "path": "settled/settled", + "style": { + "navigationBarTitleText": "待结算记录", + "navigationStyle": "custom", + "enablePullDownRefresh": false, + "backgroundTextStyle": "dark" + } + }, { "path": "scanCode/scanCode", "style": { - "navigationBarTitleText": "", + "navigationBarTitleText": "个人二维码", "navigationStyle": "custom", "enablePullDownRefresh": false, "backgroundTextStyle": "dark" } - } - ] - }, - { - "root": "pages/userCenter", - "pages": [ + }, { "path": "studentComment/studentComment", "style": { + "navigationBarTitleText": "学员评价", + "navigationStyle": "custom", + "enablePullDownRefresh": false, + "backgroundTextStyle": "dark" + } + }, + { + "path": "refund/refund", + "style": { + "navigationBarTitleText": "退款信息", + "navigationStyle": "custom", + "enablePullDownRefresh": false, + "backgroundTextStyle": "dark" + } + }, + { + "path": "indicatorRecharge/indicatorRecharge", + "style": { "navigationBarTitleText": "", "navigationStyle": "custom", "enablePullDownRefresh": false, "backgroundTextStyle": "dark" } + }, + { + "path": "examinInfo/examinInfo", + "style": { + "navigationBarTitleText": "考场信息", + "navigationStyle": "custom", + "enablePullDownRefresh": false, + "backgroundTextStyle": "dark" + } } + ] } diff --git a/pages/tabbar/mine/index.vue b/pages/tabbar/mine/index.vue index ef3c1c7..8647b11 100644 --- a/pages/tabbar/mine/index.vue +++ b/pages/tabbar/mine/index.vue @@ -26,13 +26,13 @@ data() { return { tabData: [ - {text: '待结算记录', icon: require('../../../static/images/coach/ic_daijiesuan.png'), id: 1}, - {text: '指标充值记录', icon: require('../../../static/images/coach/ic_zhibiao.png'), id: 2}, + {text: '待结算记录', icon: require('../../../static/images/coach/ic_daijiesuan.png'), id: 1, url: '/pages/userCenter/settled/settled'}, + {text: '指标充值记录', icon: require('../../../static/images/coach/ic_zhibiao.png'), id: 2, url: '/pages/userCenter/indicatorRecharge/indicatorRecharge'}, {text: '我的车辆', icon: require('../../../static/images/coach/ic_cheliang.png'), id: 3}, - {text: '考场信息', icon: require('../../../static/images/coach/ic_changdi.png'), id: 4}, + {text: '考场信息', icon: require('../../../static/images/coach/ic_changdi.png'), id: 4, url: '/pages/userCenter/examinInfo/examinInfo'}, {text: '学员评价', icon: require('../../../static/images/coach/ic_pingjia.png'), id: 5, url: '/pages/userCenter/studentComment/studentComment'}, {text: '教学数据', icon: require('../../../static/images/coach/ic_shuju.png'), id: 6}, - {text: '学员退款', icon: require('../../../static/images/coach/ic_tuikuan.png'), id: 7}, + {text: '学员退款', icon: require('../../../static/images/coach/ic_tuikuan.png'), id: 7, url: '/pages/userCenter/refund/refund'}, ] } }, diff --git a/pages/userCenter/examinInfo/comp/examinItem.vue b/pages/userCenter/examinInfo/comp/examinItem.vue new file mode 100644 index 0000000..fe97d64 --- /dev/null +++ b/pages/userCenter/examinInfo/comp/examinItem.vue @@ -0,0 +1,98 @@ + + + + + \ No newline at end of file diff --git a/pages/userCenter/examinInfo/examinInfo.vue b/pages/userCenter/examinInfo/examinInfo.vue new file mode 100644 index 0000000..37a8b1e --- /dev/null +++ b/pages/userCenter/examinInfo/examinInfo.vue @@ -0,0 +1,69 @@ + + + + + \ No newline at end of file diff --git a/pages/userCenter/indicatorRecharge/indicatorRecharge.vue b/pages/userCenter/indicatorRecharge/indicatorRecharge.vue new file mode 100644 index 0000000..faf80d2 --- /dev/null +++ b/pages/userCenter/indicatorRecharge/indicatorRecharge.vue @@ -0,0 +1,65 @@ + + + + + \ No newline at end of file diff --git a/pages/userCenter/myCar/myCar.vue b/pages/userCenter/myCar/myCar.vue new file mode 100644 index 0000000..002215c --- /dev/null +++ b/pages/userCenter/myCar/myCar.vue @@ -0,0 +1,30 @@ + + + + + \ No newline at end of file diff --git a/pages/userCenter/refund/comp/item.vue b/pages/userCenter/refund/comp/item.vue new file mode 100644 index 0000000..7d4092f --- /dev/null +++ b/pages/userCenter/refund/comp/item.vue @@ -0,0 +1,130 @@ + + + + + \ No newline at end of file diff --git a/pages/userCenter/refund/refund.vue b/pages/userCenter/refund/refund.vue new file mode 100644 index 0000000..c88298e --- /dev/null +++ b/pages/userCenter/refund/refund.vue @@ -0,0 +1,47 @@ + + + + + \ No newline at end of file diff --git a/pages/userCenter/settled/settled.vue b/pages/userCenter/settled/settled.vue new file mode 100644 index 0000000..f27c443 --- /dev/null +++ b/pages/userCenter/settled/settled.vue @@ -0,0 +1,174 @@ + + + + + \ No newline at end of file diff --git a/pages/userCenter/studentComment/studentComment.vue b/pages/userCenter/studentComment/studentComment.vue index 4d71eba..565b349 100644 --- a/pages/userCenter/studentComment/studentComment.vue +++ b/pages/userCenter/studentComment/studentComment.vue @@ -6,7 +6,7 @@ - 全部(10) + 全部(10) 匿名(1) 有图(2) 有视频(6) @@ -28,4 +28,28 @@ padding: 28rpx; margin-bottom: 20rpx; } + .tabs { + display: flex; + justify-content: space-between; + padding: 24rpx 12rpx; + .tab { + line-height: 76rpx; + font-size: 28rpx; + color: #fff; + &.active { + position: relative; + &::before { + position: absolute; + content: ''; + left: 50%; + bottom: 0; + transform: translateX(-50%); + width: 56rpx; + height: 6rpx; + background: #FFFFFF; + border-radius: 3rpx; + } + } + } + } \ No newline at end of file diff --git a/static/images/index/telephone.png b/static/images/index/telephone.png new file mode 100644 index 0000000000000000000000000000000000000000..06a7b542d082970a28101fe452acc3c25f53603b GIT binary patch literal 1798 zcmV+h2l@DkP)Px*z)3_wRCr$PTuo?PRTMtwWhRrh`D>FV%$*RLE_5Zu)|H5Y3W^(xq9EFhMW|v6 zN=4AMpePDfR1jBH1f^OxqM(8zu57h*rHiJ7ygP0Fn!mQ0OlFRJFEi<6Iy3Liy!$3E z@D2=J(b@qQJ~Q6Vd5hE_Y^ZY;4809jgFMO-*&@ z^Z8@U{HlngZ9ChjJ!Z~|$ot7;^3$QAp=DdPtpFqQtBi#ueM^RrH);_dUgNW+S=Ddbf^`hTky@fL?ZF@@bK`ZW^FeO(B$OggGBT# zGxs%XY%BFeWPymD7#SJ)wHZH}0%&q_@+oFMO+=|?j6_H`Cn85iMn=9d^~o3@t@R5; z^ofXsmD8B|97vCu3qIDjh+hcxnQbT~STIKWk^V@AgHW@n5!Ni?RCJ#1R-Rc5V%5(nQMoYOVF4cPHlv4NB z%aiH?LDMLuKB)9<6F?<ow6tWHX5$(?@rM}!0L0an{MdXp777#H2r#f<~+btH0G(9~{g#v2FXbCg_q?CGe z1EA8@%!G~IhrYf(+O=z!QI8Qpb8~Y>x@}e}6bgk=Y$Qwu80Svlezd zJ?EPRXlZGQ@Qa|#E2RclYkf#W{<7uZ-o1M%nM@itH#<8^xm?azznzNAd=I;>`#ceS zZp(0QZ?Bgenh0{C`FU)$M^=tfgo@GnPAQT_M3G-j zcJt;zx+KS2=fvm3cwy;X|i&ejvZKjy@YpW7WOz zCX!6rgAO7N#jnjRC6Df~O_-T>2)s3-$z)D4ZPPMCuuho4xa+#sC|A?YloLrzzP3QZ zd<2%jlB`p%C4j7v_RTtn6aXNZrkaWq6wTfex`F15=GD^ zwi3pgThF!+F9ZPz--2wzN{2$XQA7b0Ebq3;j=F~zN|UwK<1ax$Du0g}tXziyEPw}K zu&iU=vCM7PKK=q{;saFF_yARDE{c!fRfK+gi1QX0W`{USQG{EB@iE{==b+<*J6hAEBhtT>iLi{v^ z0Zw2dfWj?B*L6=Y^BWPkYZk5NaVo)!A6W7WrPANyC%O!Qf?E8@TN7Z_dnS;G o`k1-9@|i#p!8>FNTm4Mn|M!TVKuaE07*qoM6N<$f~fvXPyhe` literal 0 HcmV?d00001