25 lines
980 B
Plaintext
25 lines
980 B
Plaintext
<!--pages/mine/mine.wxml-->
|
|
<!-- <view style='height:{{navH}}px;background:#181f27;border:none;'></view> -->
|
|
<view class='header' style='padding-top:{{navH}}px;'>
|
|
<view class='top'>
|
|
<view class='background'>
|
|
<open-data class='userAvatar' type="userAvatarUrl" style="border-radius: 50%;"></open-data>
|
|
</view>
|
|
<open-data class='userNickName' type="userNickName"></open-data>
|
|
</view>
|
|
</view>
|
|
<view class='main' style='margin-top:{{navH}}px'>
|
|
<view class='warn' wx:if="{{qrinfo==''}}">您还未合成过二维码呦~</view>
|
|
<view class='card' wx:for="{{qrinfo}}" wx:key="{{index}}" >
|
|
<view class='left' bindtap='confirm' id="{{index}}">
|
|
<view class='num'>{{index+1}}</view>
|
|
</view>
|
|
<view class='right' bindtap='show' id="{{index}}">
|
|
<view class='up'>{{item.name}}</view>
|
|
<view class='down'>{{item.node?item.node:"并没有填写备注欸~"}}</view>
|
|
</view>
|
|
</view>
|
|
<view class='logo'>
|
|
<view></view>
|
|
</view>
|
|
</view> |