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.
1 line
1.6 KiB
Plaintext
1 line
1.6 KiB
Plaintext
<view class="todaystar "><view class="cu-bar bg-white margin-top"><view class="action"><text class="cuIcon-titles text-red"></text><text>当前月份</text></view><picker fields="month" mode="date" value="{{date}}" start="{{startDate}}" end="{{endDate}}" data-event-opts="{{[['change',[['bindDateChange',['$event']]]]]}}" bindchange="__e"><button class="cu-btn bg-green shadow" data-target="Modal">{{date}}</button></picker></view><view class=" margin-top " style="padding:10rpx;"><view class="bg-red flex solid-bottom padding justify-start text-white text-center" style="margin:10rpx auto;"><view class="text-header" style="width:35%;"><text>员工</text></view><view class="text-header" style="width:20%;"><text>底薪</text></view><view class="text-header" style="width:20%;"><text>提成</text></view><view class="text-header" style="width:25%;"><text>合计</text></view></view><block wx:if="{{staffList.length==0}}"><view><view class="empty cuIcon-info"></view><view class="empty-text text-gray">暂无数据</view></view></block><block wx:for="{{staffList}}" wx:for-item="item" wx:for-index="index" wx:key="index"><view class=" light flex justify-start text-black text-center text-main"><view class="text-header" style="width:35%;"><text>{{item.brandNumber+" - "+item.staffName}}</text></view><view class="text-header" style="width:20%;"><text>{{item.baseSalary==null?'无底薪':item.baseSalary}}</text></view><view class="text-header" style="width:20%;"><text>{{item.commSalary}}</text></view><view class="text-header" style="width:25%;"><text>{{item.num}}</text></view></view></block></view></view> |