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.
16 lines
615 B
16 lines
615 B
5 years ago
|
<!--pages/changeuser/changeuser.wxml-->
|
||
|
<view class="container">
|
||
|
<view class="current_user">
|
||
|
<text>当前登陆用户: </text><text class="hint">姓 名:{{current_user.name}}</text>
|
||
|
<text class="hint">用户名:{{current_user.username}}</text>
|
||
|
</view>
|
||
|
<text>点击切换用户:</text>
|
||
|
<view class="user-list form-wrap">
|
||
|
<block wx:for="{{users}}" wx:for-item="user" wx:key="objectId">
|
||
|
<view class="user-item" bindtap="login" data-username="{{user.username}}">
|
||
|
<text>{{user.name}}</text><text class="hint">{{user.username}}</text>
|
||
|
</view>
|
||
|
</block>
|
||
|
</view>
|
||
|
</view>
|