You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
709 B
Plaintext

2 years ago
<!--pages/my/my.wxml-->
<view class="container mine">
<t-cell title="{{userInfo.jtName}}" description="{{userInfo.jtRoleCode}}">
<view class="avatar" slot="left-icon">
<open-data type="userAvatarUrl" />
</view>
</t-cell>
<t-cell-group theme="card" wx:if="{{userInfo.jtRoleCode != 'user'}}">
<t-cell title="人员管理" leftIcon="user" data-link="/pages/user/user" bind:click="goTo" hover arrow />
<t-cell title="班组管理" wx:if="{{userInfo.jtRoleCode == 'admin'}}" leftIcon="fork" data-link="/pages/group/group" bind:click="goTo" hover arrow />
</t-cell-group>
<t-button bindtap="logout" variant="text" block>退出登录</t-button>
</view>