删除无用文件夹

This commit is contained in:
qianlile
2021-08-30 09:56:13 +08:00
parent 33aecb6bda
commit e50ba21896
919 changed files with 35 additions and 24460 deletions

34
wechat/pages/my/my.wxml Normal file
View File

@@ -0,0 +1,34 @@
<!--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>