1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <!-- pages/me/me.wxml -->
- <view class="containerss">
- <!-- 用户信息 -->
- <view class="user-info">
- <!-- <image class="avatar" src="{{userInfo.avatar}}" mode="aspectFill"></image> -->
- <view class="avatar"></view>
- <!-- <image style="width: 35rpx;height: 35rpx;margin-left: 20rpx;" src="{{xiangjiimg}}" mode=""/> -->
- <view class="info">
- <view style="display: flex; align-items: center;">
- <text class="name">{{userInfo.name}}</text>
- <image bindtap="goToGoodsLists" style="width: 35rpx;height: 35rpx;margin-left: 20rpx;" src="{{xiugaiimg}}" mode=""/>
- </view>
- <view class="info_view2">
- 阳光幼儿园
- </view>
- </view>
- </view>
- <!-- 绑定手机号 -->
- <view class="phone-binding">
- <text style="margin-right: 20rpx;">绑定手机号:{{userInfo.phone ? userInfo.phone : '未绑定'}}</text>
- <navigator url="/subpackages/changephone/changephone" open-type="navigate" wx:if="{{userInfo.phone}}">更改手机号</navigator>
- </view>
- <!-- 订单状态 -->
- <!-- <view class="order-status">
- <view class="status-item" wx:for="{{orderStatus}}" wx:key="index">
- <view style="display: flex; align-items: center; flex-direction: column;" bindtap="goToGoodsList" data-type="{{ item.type }}">
- <view class="circle"></view>
- <view style="margin-top: 16rpx;">{{item.text}}</view>
- </view>
- </view>
- </view> -->
- <!-- 下载历史 -->
- <view class="history">
- <view class="title">
- <text>下载历史</text>
- <navigator url="/subpackages/purchasehistory/purchasehistory" open-type="navigate">查看更多</navigator>
- </view>
- <view class="items">
- <block wx:for="{{historyItems}}" wx:key="id">
- <view class="item">
- <!-- <image mode="aspectFill"></image> -->
- <view class="thumbnail"></view>
- <view class="details">
- <view class="name">{{item.name}}</view>
- <view class="date">{{item.date}}</view>
- </view>
- <view class="xiazai_img">
- <image class="search-icon" src="{{xiazi}}" />
- </view>
- </view>
- </block>
- </view>
- </view>
- <!-- 我的收藏 -->
- <view class="history">
- <view class="title">
- <text>我的收藏</text>
- <navigator url="/subpackages/collect/collect" open-type="navigate">查看更多</navigator>
- </view>
- <view class="items">
- <block wx:for="{{historyItems}}" wx:key="id">
- <view class="item">
- <!-- <image mode="aspectFill"></image> -->
- <view class="thumbnail"></view>
- <view class="details">
- <view class="name">{{item.name}}</view>
- <view class="date">{{item.date}}</view>
- </view>
- <view class="xiazai_img">
- <image class="search-icon" src="{{souchangs}}" />
- </view>
- </view>
- </block>
- </view>
- </view>
- <!-- 用户注销 -->
- <button class="logout-btn" size="default" bindtap="handleLogout">用户注销</button>
- <!-- <custom-tabbar role="{{role}}" selected="{{2}}" /> -->
- </view>
|