You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
724 B
25 lines
724 B
<!--pages/myInfo/myInfo.wxml-->
|
|
<view class='box'>
|
|
<view class='header-item-container'>
|
|
<image class='logo' src='../../images/avatar.svg' />
|
|
<view>
|
|
<text class='userName'>{{userInfo.name}}</text>
|
|
</view>
|
|
</view>
|
|
|
|
<view class='body-container'>
|
|
<view class='body-item' bindtap="bindClick">
|
|
<view class='body-info'>基本信息</view>
|
|
<image class="right" src="/images/right.svg"></image>
|
|
</view>
|
|
|
|
<!-- <view class='body-item'>
|
|
<view class='body-info'>通知消息</view>
|
|
<image class="right" src="/images/right.svg"></image>
|
|
</view> -->
|
|
</view>
|
|
|
|
<view class='foot-container'>
|
|
<view class='foot-item' bindtap='logout'>退出登录</view>
|
|
</view>
|
|
</view>
|