riku
2024-08-12 65124213af664a68ad88ce7f6dcb133116d7702f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<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}}"
            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>