You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
3.0 KiB
Plaintext
73 lines
3.0 KiB
Plaintext
<view>
|
|
<view class="topMenu">
|
|
<view class="onMune {{currIndex == '1' ? 'active' : ''}}" data-id="1" bindtap="changeMenu">
|
|
<view class="pr dib"> 日数据
|
|
<view class="menuBorder"></view>
|
|
</view>
|
|
</view>
|
|
<view class="onMune {{currIndex == '2' ? 'active' : ''}}" data-id="2" bindtap="changeMenu">
|
|
<view class="pr dib"> 周数据<view class="menuBorder"></view>
|
|
</view>
|
|
</view>
|
|
<view class="onMune {{currIndex == '3' ? 'active' : ''}}" data-id="3" bindtap="changeMenu">
|
|
<view class="pr dib"> 月数据<view class="menuBorder"></view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="p10" wx:if="{{dataLoading}}">
|
|
<view class="bgf" style="padding: 16px 10px 0px;border-radius: 8px 8px 0 0;">
|
|
<picker wx:if="{{currIndex == '1'}}" mode="date" value="{{date}}" start="2021-01-01" end="{{today}}" bindchange="bindDateChange">
|
|
<view class="picker va-center bb1 pb12">
|
|
{{date}} <i class="iconfont icon-shouye-xiala ml8" style="font-size: 6px;"></i>
|
|
</view>
|
|
</picker>
|
|
|
|
<picker wx:if="{{currIndex == '2'}}" bindchange="bindPickerChangeWeek" value="{{indexWeek}}" range="{{arrayWeek}}">
|
|
<view class="picker va-center bb1 pb12">
|
|
{{arrayWeek[indexWeek]}}<i class="iconfont icon-shouye-xiala ml8" style="font-size: 6px;"></i>
|
|
</view>
|
|
</picker>
|
|
|
|
<picker wx:if="{{currIndex == '3'}}" bindchange="bindPickerChangeMonth" value="{{indexMonth}}" range="{{arrayMonth}}">
|
|
<view class="picker va-center bb1 pb12">
|
|
{{arrayMonth[indexMonth]}}<i class="iconfont icon-shouye-xiala ml8" style="font-size: 6px;"></i>
|
|
</view>
|
|
</picker>
|
|
|
|
<view class="topTable">
|
|
<view class="w40 tc mr8">序号</view>
|
|
<view class="flex-1">代理名</view>
|
|
<view class="w40 tc mr8">扫码</view>
|
|
<view class="w40 tc mr8">报名</view>
|
|
<view class="w40 tc">入职</view>
|
|
</view>
|
|
</view>
|
|
|
|
<scroll-view class="f14 c3 bgf" scroll-y="true"
|
|
style="height:calc(100vh - 190px);padding:0 10px;box-sizing: border-box;">
|
|
<view wx:for="{{recordList}}" wx:for-item="item" wx:for-index="idx" class="userList">
|
|
<view class="w40 tc mr8">
|
|
<view class="wNum">{{idx + 1}}</view>
|
|
</view>
|
|
<view class="flex-1">{{item.userNameTel}}</view>
|
|
<view class="w40 tc mr8">{{item.event10}}</view>
|
|
<view class="w40 tc mr8">{{item.event20}}</view>
|
|
<view class="w40 tc">{{item.event40}}</view>
|
|
</view>
|
|
|
|
<!-- <view class="userList">
|
|
<view class="w40 tc mr8">
|
|
<view class="wNum">2</view>
|
|
</view>
|
|
<view class="flex-1">张素可(8006)</view>
|
|
<view class="w40 tc mr8">22</view>
|
|
<view class="w40 tc mr8">33</view>
|
|
<view class="w40 tc">12</view>
|
|
</view> -->
|
|
|
|
<!-- <view class="f12 c9 tc p20">暂无更多数据</view> -->
|
|
<!-- <view class="f12 c9 tc p20">加载中...</view>
|
|
<view class="loadMore" hover-class="hcb">点击加载更多</view> -->
|
|
</scroll-view>
|
|
</view>
|
|
</view> |