xz_mini/pages/center/center.wxml
dong_bo0602 d4bb4f1c78 0329
2022-03-29 11:05:37 +08:00

77 lines
3.1 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<view class="page-container">
<view class="person">
<view class="user-avatar" bindtap="changeAvatar" wx:if="{{userInfo.avatar}}">
<image src="{{usercenterUrl}}{{sourcePath}}{{userInfo.avatar}}"></image>
</view>
<view class="user-name">{{userInfo.name}}</view>
<view class="bind-box">
<button open-type="getPhoneNumber" bindgetphonenumber="getPhoneNumber" class="getphone" wx:if="{{randomName}}">绑定手机号</button>
<view class="tips" wx:if="{{randomName}}">绑定手机号后账号信息即可与APP共享</view>
</view>
<image src="../../images/center-img.png" class="person-bg"></image>
</view>
<view class="main">
<view class="main-container">
<view class="main-box order" bindtap="toMyOrder">
<image src="../../images/center-order.png"></image>
<view class="title">我的预订</view>
<view class="check">查看</view>
</view>
<!-- <view class="main-box" bindtap="toMyFirend">
<image src="../../images/friend.png"></image>
<view class="title">我的发布</view>
</view> -->
<view class="main-box activity" bindtap="toMyJoinActivity">
<image src="../../images/center-activity.png"></image>
<view class="title">我的活动</view>
<view class="check">查看</view>
</view>
<!-- <view class="main-box">
<image src="../../images/my-comment.png"></image>
<view class="title">我的评论</view>
</view>
<view class="main-box">
<image src="../../images/my-collect.png"></image>
<view class="title">我的收藏</view>
</view> -->
<view class="main-box team" bindtap="toMyTeam">
<image src="../../images/center-team.png"></image>
<view class="title">我的志愿团队</view>
<view class="check">查看</view>
</view>
<view class="main-box team-activity" bindtap="toMyVolunteerActivity">
<image src="../../images/center-team-activity.png"></image>
<view class="title">我的志愿活动</view>
<view class="check">查看</view>
</view>
<!-- <view class="main-box">
<image src="../../images/share.png"></image>
<view class="title">我的分享</view>
</view> -->
<!-- <view class="main-box">
<image src="../../images/setting.png"></image>
<view class="title">设置</view>
</view> -->
</view>
</view>
</view>
<!-- <view class="set-phone" wx:if="{{randomName && showPhone}}">
<view class="set-phone-box">
<view class="tips">您还没有绑定手机号,请先绑定手机号</view>
<view class="phone-input">
<input placeholder="请输入手机号" bindinput="phoneNum" class="phone-input"></input>
</view>
<view class="code-input">
<input placeholder="请输入验证码" bindinput="inputCode"></input>
<view class="get-code" bindtap="testPhone" wx:if="{{!gotCode}}">获取验证码</view>
<view class="got-code" wx:else>{{restTime}}</view>
</view>
<view class="set-phone-btn-box">
<view class="set-phone-btn" bindtap="submitPhone">确认</view>
<view class="set-phone-btn" bindtap="cancelPhone">取消</view>
</view>
</view>
</view> -->
<view class="loading" wx:if="{{isLoading}}">
<image src="../../images/loading.gif"></image>
</view>