25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <view class='transaction'>
- <view>
- <view class='hide' wx:if='{{list.length==0}}'>
- <image class='jiaoyi' src='./../../static/images/jiaoyi.png' mode='widthFix'></image>
- <text>暂无数据</text>
- </view>
- <view class='transaction_msg' wx:for='{{list}}' wx:key="index">
- <view>
- <text>姓名</text>
- <text>{{item.name}}</text>
- </view>
- <view>
- <text>微信昵称</text>
- <text>{{item.nickName}}</text>
- </view>
- <view>
- <text>性别</text>
- <text>{{item.sex}}</text>
- </view>
- <view>
- <text>手机号</text>
- <text>{{item.phone}}</text>
- </view>
- <view>
- <text>现居住地址</text>
- <text>{{item.address}}</text>
- </view>
- <view>
- <text>生日</text>
- <text>{{item.birthdate}}</text>
- </view>
- </view>
- </view>
- </view>
- <view class="loading" wx:if="{{loading}}">
- {{content}}
- </view>
- <view class='nocontent' wx:if="{{showNocontent}}">
- 暂无数据
- </view>
|