Files
fastbee/wechat/pages/my/my.wxml
2021-08-30 19:26:45 +08:00

38 lines
1.4 KiB
Plaintext

<!--pages/my/my.wxml-->
<view class="top">
<view class="userInfo">
<view class="picture">
<image wx:if="{{ isLogin === true }}" src="{{ userInfo.avatarUrl }}" />
<image wx:if="{{ isLogin === false }}" src="/icons/notlogin.png"></image>
</view>
<view wx:if="{{ isLogin === true }}" class="other">
<view class="username">{{ userInfo.nickName }}</view>
<view class="phone">
<van-button color="linear-gradient(to right, #4bb0ff, #6149f6)"
open-type='getPhoneNumber' bindgetphonenumber='getPhoneNumber'
round size="small">
绑定手机
</van-button>
</view>
<!-- <view class="phone">
<van-tag type="success">手机</van-tag>
<text>12345678900</text>
</view> -->
</view>
<view wx:if="{{ isLogin === false }}">
<van-button round color="linear-gradient(to right, #4bb0ff, #6149f6)" bindtap="getUserInfo">登录授权</van-button>
</view>
</view>
</view>
<view class="tips">
<van-cell-group inset>
<van-cell title="公司简介" size="large" icon='/icons/jianjie.png' is-link/>
<van-cell title="关于我们" size="large" icon='/icons/about.png' is-link/>
<van-cell title="加入我们" size="large" icon='/icons/join.png' is-link/>
<van-cell title="意见反馈" size="large" icon='/icons/suggest.png' is-link
url='/pages/feedBack/feedBack' link-type='navigateTo'
/>
</van-cell-group>
</view>