Commit 3374187170b7b0fac84ac0314617bd268c69b552

Authored by 刘淇
1 parent 4518bc07

修改title

Showing 1 changed file with 31 additions and 28 deletions
src/views/mySelf/selfNav.vue
... ... @@ -29,15 +29,15 @@
29 29 </g>
30 30 </g>
31 31 </svg>
32   - <div class="person-ifo">
33   - <div class="person-pic" :style="{backgroundImage:'url('+this.headPicUrl+')',backgroundSize:'100%'}"></div>
34   - <ul class="person-con">
35   - <li>手机号:{{ userPhone}}</li>
36   - <li style="height: 20px;"></li>
37   - <li>账户余额: <span>¥{{(acctBalance/100).toFixed(2)}}</span></li>
38   - <!--<li>我的卡券:<span>{{ couponNum }}张</span></li>-->
39   - </ul>
40   - </div>
  32 + <!--<div class="person-ifo">-->
  33 + <!--<div class="person-pic" :style="{backgroundImage:'url('+this.headPicUrl+')',backgroundSize:'100%'}"></div>-->
  34 + <!--<ul class="person-con">-->
  35 + <!--<li>手机号:{{ userPhone}}</li>-->
  36 + <!--<li style="height: 20px;"></li>-->
  37 + <!--<li>账户余额: <span>¥{{(acctBalance/100).toFixed(2)}}</span></li>-->
  38 + <!--&lt;!&ndash;<li>我的卡券:<span>{{ couponNum }}张</span></li>&ndash;&gt;-->
  39 + <!--</ul>-->
  40 + <!--</div>-->
41 41 </div>
42 42  
43 43 <mt-cell is-link v-for="i in menuList" :title="i.name" @click.native="toMemu(i.path)" :key="i.name"></mt-cell>
... ... @@ -48,9 +48,9 @@
48 48  
49 49 <!--<mt-cell title="建议反馈" is-link></mt-cell>-->
50 50  
51   - <div class="leftRightPadding" style="margin-top: 34px" v-show="loginShow">
52   - <mt-button type="primary" size="large" @click="loginHandle">{{ loginTxt }}</mt-button>
53   - </div>
  51 + <!--<div class="leftRightPadding" style="margin-top: 34px" v-show="loginShow">-->
  52 + <!--<mt-button type="primary" size="large" @click="loginHandle">{{ loginTxt }}</mt-button>-->
  53 + <!--</div>-->
54 54  
55 55 </div>
56 56 </template>
... ... @@ -256,22 +256,25 @@ export default {
256 256 },
257 257 // 前往各个子页面
258 258 toMemu(path) {
259   - let _token = sessionStorage.getItem("wx_Token");
260   - if (_token) {
261   - if(path=='plateNumber'){
262   - window.location.href = 'http://wxgzh.renniting.cn/wechatwuxi/WUXIZLYH/GZH/index.html'
263   - // http://wxgzh.renniting.cn/wechatwuxi/WUXIZLYH/GZH/index.html#/selfNav
264   - }else{
265   - this.$router.push({
266   - path: path
267   - })
268   - }
269   - } else {
270   - this.$vux.toast.text("请先绑定手机号", "top");
271   - this.$router.push({
272   - path: "binDing"
273   - });
274   - }
  259 + this.$router.push({
  260 + path: path
  261 + })
  262 + // let _token = sessionStorage.getItem("wx_Token");
  263 + // if (_token) {
  264 + // if(path=='plateNumber'){
  265 + // window.location.href = 'http://wxgzh.renniting.cn/wechatwuxi/WUXIZLYH/GZH/index.html'
  266 + // // http://wxgzh.renniting.cn/wechatwuxi/WUXIZLYH/GZH/index.html#/selfNav
  267 + // }else{
  268 + // this.$router.push({
  269 + // path: path
  270 + // })
  271 + // }
  272 + // } else {
  273 + // this.$vux.toast.text("请先绑定手机号", "top");
  274 + // this.$router.push({
  275 + // path: "binDing"
  276 + // });
  277 + // }
275 278 }
276 279 }
277 280 };
... ...