mirror of
https://gitee.com/beecue/fastbee.git
synced 2025-12-18 00:45:55 +08:00
35 lines
1.3 KiB
Plaintext
35 lines
1.3 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-group>
|
|
</view>
|