From aea68af91a36b430f5f013f8a8c43e3f51fa78e7 Mon Sep 17 00:00:00 2001 From: unknown <331404948@qq.com> Date: Mon, 21 Aug 2023 20:27:22 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8A=A5=E5=90=8D=E6=B5=81=E7=A8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- App.vue | 1 + common/css/app.scss | 28 +- pages.json | 63 ++++ pages/indexEntry/enroll/enroll.vue | 127 +++++++ pages/indexEntry/enroll/payment/payment.vue | 95 ++++++ .../enroll/registInfo/comp/comfigPopup.vue | 95 ++++++ pages/indexEntry/enroll/registInfo/registInfo.vue | 364 +++++++++++++++++++++ .../enroll/signContract/signContract.vue | 29 ++ .../enroll/uploadAvatar/uploadAvatar.vue | 114 +++++++ .../mineEntry/carLearProgress/carLearProgress.vue | 128 ++++++++ pages/mineEntry/carLearnHours/carLearnHours.vue | 98 ++++++ pages/tabbar/index/index.vue | 1 + pages/tabbar/mine/index.vue | 5 +- static/images/index/wxicon.png | Bin 0 -> 1734 bytes 14 files changed, 1145 insertions(+), 3 deletions(-) create mode 100644 pages/indexEntry/enroll/enroll.vue create mode 100644 pages/indexEntry/enroll/payment/payment.vue create mode 100644 pages/indexEntry/enroll/registInfo/comp/comfigPopup.vue create mode 100644 pages/indexEntry/enroll/registInfo/registInfo.vue create mode 100644 pages/indexEntry/enroll/signContract/signContract.vue create mode 100644 pages/indexEntry/enroll/uploadAvatar/uploadAvatar.vue create mode 100644 pages/mineEntry/carLearProgress/carLearProgress.vue create mode 100644 pages/mineEntry/carLearnHours/carLearnHours.vue create mode 100644 static/images/index/wxicon.png diff --git a/App.vue b/App.vue index 2211627..bb9b0e2 100644 --- a/App.vue +++ b/App.vue @@ -18,3 +18,4 @@ @import '@/uni_modules/uview-ui/index.scss'; @import 'common/css/app.scss' + diff --git a/common/css/app.scss b/common/css/app.scss index df0acaa..c820e0c 100644 --- a/common/css/app.scss +++ b/common/css/app.scss @@ -116,4 +116,30 @@ image { font-size: 28rpx; color:$themC; border: 2rpx solid #1989FA; - } \ No newline at end of file + } + + /* 通用 */ + ::-webkit-input-placeholder { color:#ADADAD; } + ::-moz-placeholder { color:#ADADAD; } /* firefox 19+ */ + :-ms-input-placeholder { color:#ADADAD; } /* ie */ + input:-moz-placeholder { color:#ADADAD; } + + input::-webkit-input-placeholder { + color: #CDCDCD !important; + } + input::-moz-input-placeholder { + color: #CDCDCD !important; + } + input::-ms-input-placeholder { + color: #CDCDCD !important; + } + + // /* webkit专用 */ + .input1::-webkit-input-placeholder { color:#00f; } + // #input2::-webkit-input-placeholder { color:#090; background:lightgreen; text-transform:uppercase; } + // #input3::-webkit-input-placeholder { font-style:italic; text-decoration:overline; color:#999; } + + // /* mozilla专用 */ + // #input1::-moz-placeholder { color:#00f; } + // #input2::-moz-placeholder { color:#090; background:lightgreen; text-transform:uppercase; } + // #input3::-moz-placeholder { font-style:italic; text-decoration:overline; color:#999; } diff --git a/pages.json b/pages.json index 9dcf705..fd964f8 100644 --- a/pages.json +++ b/pages.json @@ -33,6 +33,51 @@ "root": "pages/indexEntry", "pages": [ { + "path": "enroll/enroll", + "style": { + "navigationBarTitleText": "学员报名", + "navigationStyle": "custom", + "enablePullDownRefresh": false, + "backgroundTextStyle": "dark" + } + }, + { + "path": "enroll/uploadAvatar/uploadAvatar", + "style": { + "navigationBarTitleText": "上传头像", + "navigationStyle": "custom", + "enablePullDownRefresh": false, + "backgroundTextStyle": "dark" + } + }, + { + "path": "enroll/registInfo/registInfo", + "style": { + "navigationBarTitleText": "报名信息确认", + "navigationStyle": "custom", + "enablePullDownRefresh": false, + "backgroundTextStyle": "dark" + } + }, + { + "path": "enroll/payment/payment", + "style": { + "navigationBarTitleText": "报名信息确认", + "navigationStyle": "custom", + "enablePullDownRefresh": false, + "backgroundTextStyle": "dark" + } + }, + { + "path": "enroll/signContract/signContract", + "style": { + "navigationBarTitleText": "上传头像", + "navigationStyle": "custom", + "enablePullDownRefresh": false, + "backgroundTextStyle": "dark" + } + }, + { "path": "findShcool/findShcool", "style": { "navigationBarTitleText": "找驾校", @@ -266,6 +311,24 @@ } }, { + "path": "carLearProgress/carLearProgress", + "style": { + "navigationBarTitleText": "学车进度", + "navigationStyle": "custom", + "enablePullDownRefresh": false, + "backgroundTextStyle": "dark" + } + }, + { + "path": "carLearnHours/carLearnHours", + "style": { + "navigationBarTitleText": "学车进度", + "navigationStyle": "custom", + "enablePullDownRefresh": false, + "backgroundTextStyle": "dark" + } + }, + { "path": "carData/carData", "style": { "navigationBarTitleText": "我的数据", diff --git a/pages/indexEntry/enroll/enroll.vue b/pages/indexEntry/enroll/enroll.vue new file mode 100644 index 0000000..6a7676f --- /dev/null +++ b/pages/indexEntry/enroll/enroll.vue @@ -0,0 +1,127 @@ + + + + + \ No newline at end of file diff --git a/pages/indexEntry/enroll/payment/payment.vue b/pages/indexEntry/enroll/payment/payment.vue new file mode 100644 index 0000000..e9050dd --- /dev/null +++ b/pages/indexEntry/enroll/payment/payment.vue @@ -0,0 +1,95 @@ + + + + + \ No newline at end of file diff --git a/pages/indexEntry/enroll/registInfo/comp/comfigPopup.vue b/pages/indexEntry/enroll/registInfo/comp/comfigPopup.vue new file mode 100644 index 0000000..a8dce69 --- /dev/null +++ b/pages/indexEntry/enroll/registInfo/comp/comfigPopup.vue @@ -0,0 +1,95 @@ + + + + + \ No newline at end of file diff --git a/pages/indexEntry/enroll/registInfo/registInfo.vue b/pages/indexEntry/enroll/registInfo/registInfo.vue new file mode 100644 index 0000000..e832f2c --- /dev/null +++ b/pages/indexEntry/enroll/registInfo/registInfo.vue @@ -0,0 +1,364 @@ + + + + + \ No newline at end of file diff --git a/pages/indexEntry/enroll/signContract/signContract.vue b/pages/indexEntry/enroll/signContract/signContract.vue new file mode 100644 index 0000000..33baa96 --- /dev/null +++ b/pages/indexEntry/enroll/signContract/signContract.vue @@ -0,0 +1,29 @@ + + + + + \ No newline at end of file diff --git a/pages/indexEntry/enroll/uploadAvatar/uploadAvatar.vue b/pages/indexEntry/enroll/uploadAvatar/uploadAvatar.vue new file mode 100644 index 0000000..b6c030a --- /dev/null +++ b/pages/indexEntry/enroll/uploadAvatar/uploadAvatar.vue @@ -0,0 +1,114 @@ + + + + + \ No newline at end of file diff --git a/pages/mineEntry/carLearProgress/carLearProgress.vue b/pages/mineEntry/carLearProgress/carLearProgress.vue new file mode 100644 index 0000000..24aca32 --- /dev/null +++ b/pages/mineEntry/carLearProgress/carLearProgress.vue @@ -0,0 +1,128 @@ + + + + + \ No newline at end of file diff --git a/pages/mineEntry/carLearnHours/carLearnHours.vue b/pages/mineEntry/carLearnHours/carLearnHours.vue new file mode 100644 index 0000000..7debaea --- /dev/null +++ b/pages/mineEntry/carLearnHours/carLearnHours.vue @@ -0,0 +1,98 @@ + + + + + \ No newline at end of file diff --git a/pages/tabbar/index/index.vue b/pages/tabbar/index/index.vue index 5c367ea..b44e7b2 100644 --- a/pages/tabbar/index/index.vue +++ b/pages/tabbar/index/index.vue @@ -112,6 +112,7 @@ entrySection: [{ text: '我要报名', icon: require('../../../static/images/index/ic_baoming.png'), + url: '/pages/indexEntry/enroll/enroll' }, { text: '找驾校', diff --git a/pages/tabbar/mine/index.vue b/pages/tabbar/mine/index.vue index f1aee49..4ea3775 100644 --- a/pages/tabbar/mine/index.vue +++ b/pages/tabbar/mine/index.vue @@ -33,7 +33,7 @@ 科目一考试通过 当前进度 - 进度查询 + 进度查询 @@ -51,7 +51,7 @@ 业务办理 - + @@ -106,6 +106,7 @@ { text: '学时查询', icon: require('../../../static/images/userCenter/ic_chaxun.png'), + url: '/pages/mineEntry/carLearnHours/carLearnHours' }, { text: '同城转校', diff --git a/static/images/index/wxicon.png b/static/images/index/wxicon.png new file mode 100644 index 0000000000000000000000000000000000000000..9a813dc8012567f2fbdd04328c013a6467d3db80 GIT binary patch literal 1734 zcmV;%208hOP)Px*fJsC_RA@u(S#4}n=M{d=d#__B#G-3Dpk?dYZM0K6=%#!)S*Wv zNpraN0_5sR*!%*?9%+u$UhQd{Q4@hb{a-+STRykeS8NAFIoF(|i%j}_5+Diat5|>t z#%baRQ#?V<*9rZO0ncbsEUy@-Fl|`|L)|H0Jt%j9Q$@6xXD)VtB6t%TJI|NM3$cON zIdo)?bLEaoPeld3ro84)DDndk3kwxdqyU};u{Gf@eYwBB-ztQ}nx5(!Tn67aOZ1S|=VkxbFD-`GU@7-x3boL&z=&Zpp`AAp$7mOCx8jjYE$OrSbvGWxFa| zd9$g^J)~6SvYmckfB=T06Y=||TUob2ZtWVn>Xw?NJSxD=Zr0={z`!X^j#u^F_xcBJ zoabY+djHqGOx#chpZt_In<4PIxpLhLP=L1ehJ$MdU(SbEF56(&9pzr1zflae1=K-^ zD1xV;*#o6E=Mv#sfSBkXc`p^3t8?GfclS+dGWBCI)x#jZ?9?~_|ACEd=SKN_Y3gj! zw|GgMHdbT{f-3=H2x#k#(f0VxToKLnzOkp~HdD(cQECIp8=VR*N^DW=)X8K=blvbf z(>|KJ1HS^~*=%2kE(PFYPNbGa?;kodlVB)Z(`J~eRgaB66J7t-N0|gPhO4U$s4b$< z2FP_&#GQU#jzinOoP4e9aDT_AYsso`pw?5OVmg(%S#~GDl;M&0k}HQE8ycTUuqhH) zW|pYG+DZP?Qi-)kT95zxlQu1p>PABSjF1Kqluk!e41BCDb|fc9pYLD)x3SrThyJ)? z5lYJ56{0j#U|b1MUWpty8oPJa7NHA9i@&au79W7%v}oy|*sp0CcPQw`siaB>&!u}? zNQiW6CVz3LZTMuiBe$xna-mu7IYB#fadRcW@TpzG*`|FBs{OdZK(wx{I0+L-N{^uekqB2>#m2ze}JecN`Uf6e8PJsm<>F%ulgbJ z7`tF!ZjmWSf!u4Uifqs7*u3t2h`O?39g2Oi4xu~KNXXRfQ?U45sw%p9i8k~tC}2}`5; zP;2asxgwd-520EP)V)HR59Gpfb%ds!h=Jh|JGFAC{j&uv7f?R$Ly?-T0=3P}n!E%! z4oU9lTN~f(#(5z&O_9JFrPLm1`rNF~TYyuj1bD8uJ^r*CfP8G4B7u+sUP<>#E}sGf zr1!zO*j`AKC!Xl9KXJ|_Rz|bnt1!KzHBUn1SwPD2@mHXL^qk5f*m|%%-j@&HOxxzY zH7jYTUkh0Ksn)}#(}D#69Ji8s`QiJI{ma1$b_7jh#rVR*-y8fW-S=d9g0J4<^NcP2 zE`TRRr2do5o=e`B%!(24VYDs2$RQgF*W3!FwkxuQz)1+=V)O4XEw0FyLV#AZ=mrb z5Jo`}`MeexxFD81)jJ&fgY$)W`Su~Cr8lsgHaCFsO+v~)FHSjeoGLCH0XQfg`^9L> c