38 lines
1.6 KiB
Plaintext
38 lines
1.6 KiB
Plaintext
<view class="container m-b5">
|
|
<view class="goods-detail-box">
|
|
<scroll-view scrollY="{{true}}">
|
|
<view class="wrapper">
|
|
<view wx:if="{{data.length}}">
|
|
<view class="m-top20 " wx:for="{{data}}" wx:key="this">
|
|
<view class="order-box b-f">
|
|
<view class="order-header dis-flex">
|
|
<view class="flex-box t-l">
|
|
<text class="title">{{item.nickName}}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="order-box b-f">
|
|
<view class="order-cont dis-flex">
|
|
<view class="order-box">
|
|
<view class="order-num">
|
|
<text>手机号:{{item.phone}}</text>
|
|
</view>
|
|
<view class="order-time">
|
|
<text>注册时间:{{item.create_time}}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view wx:else>
|
|
<view class="yoshop-notcont">
|
|
<text class="iconfont icon-ziyuan"></text>
|
|
<text class="cont">亲,您还没有下级哦!</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</scroll-view>
|
|
</view>
|
|
</view>
|