12345678910111213141516171819202122232425262728 |
- <view class="box">
- <view class="top flexCC">
- <view class="userPhoto flexCC">
- <view class="avatar">
- <open-data type="userAvatarUrl"></open-data>
- </view>
- <view class="flexC" style="margin-top:29rpx;">
- <view class="name">{{name}}</view>
- <view class="state flexC" wx:if="{{role}}">{{role}}</view>
- </view>
- </view>
- </view>
- <view class="content">
- <view>
- <view bindtap="skipNext" class="flexB skip" wx:for="{{list}}" wx:key="index" data-id="{{item.id}}" wx:if="{{item.isShow==true}}">
- <view class="flex">
- <image src="{{item.imgUrl}}"></image>
- <text>{{item.text}}</text>
- </view>
- <view>
- <text class="iconfont iconiconfontyoujiantou-copy"></text>
- </view>
- </view>
- </view>
- </view>
- <view bindtap="quit" class="quitBtn">退出登录</view>
- <footer params="{{current}}" bind:scanCode="scanCode"></footer>
- </view>
|