提交 4e7a05631fc86ea842be05f8b680345d39784739

作者 wangyu
1 个父辈 ca6bb652

根据手机号码判断用户是否注册以及页面的展示

... ... @@ -6,7 +6,8 @@ Page({
6 6 * 页面的初始数据
7 7 */
8 8 data: {
9   - isshow: false
  9 + isshow: false,
  10 + mobile:""
10 11 },
11 12
12 13 /**
... ... @@ -27,7 +28,13 @@ Page({
27 28 * 生命周期函数--监听页面显示
28 29 */
29 30 onShow: function() {
30   - this.taxconfirm();
  31 + var user = getApp().globalData.userInfo
  32 + if (user && user.mobile.length==11){
  33 + this.setData({
  34 + mobile: user.mobile
  35 + })
  36 + this.taxconfirm();
  37 + }
31 38 },
32 39
33 40 taxconfirm: function() {
... ... @@ -67,7 +74,6 @@ Page({
67 74 showCancel: false,
68 75 confirmColor: '#357aeb',
69 76 success(res) {
70   - console.log("showModal", res)
71 77 if (res.confirm) {
72 78 that.setData({
73 79 isshow: false
... ...
1 1 <!--pages/main/guide/guide.wxml-->
2 2
3   -<view class=''>
  3 +<view class='' wx:if="{{mobile.length==11}}">
4 4 <scroll-view>
5 5 <view class="bg_wrap">
6 6
... ...
注册登录 后发表评论