<view class="page">
|
<t-user-center-card
|
userInfo="{{userInfo}}"
|
currAuthStep="{{3}}"
|
bind:gotoUserEditPage="gotoUserEditPage"
|
/>
|
<view class="page-container">
|
<view wx:for="{{menuData}}" wx:for-index="index" wx:key="item" class="cell-box">
|
<t-cell-group>
|
<block wx:for="{{item}}" wx:for-item="xitem" wx:for-index="xindex" wx:key="xindex">
|
<t-cell
|
wx:if="{{userInfo.usertypeid <= xitem.level}}"
|
title="{{xitem.title}}"
|
arrow="{{!xitem.icon}}"
|
note="{{xitem.tit}}"
|
data-type="{{xitem.type}}"
|
data-url="{{xitem.url}}"
|
bordered="{{false}}"
|
bind:click="onClickCell"
|
t-class="t-cell-padding"
|
t-class-note="order-group-note"
|
t-class-left="order-group__left"
|
>
|
<t-icon name="{{xitem.icon}}" size="48rpx" slot="note" />
|
</t-cell>
|
</block>
|
</t-cell-group>
|
</view>
|
</view>
|
<view class="page-footer">
|
<t-button theme="light" size="medium" variant="base" block bindtap="logout">切换账号</t-button>
|
<view class="footer__version" wx:if="{{versionNo !== ''}}">当前版本 {{versionNo}}</view>
|
</view>
|
</view>
|