2025-05-29 00:47:08 +08:00
|
|
|
<view class="flex-col page">
|
2025-06-09 19:08:32 +08:00
|
|
|
<view class="flex-col justify-start items-start text-wrapper">
|
|
|
|
<text class="text">业务员:{{ saleName }}</text>
|
|
|
|
</view>
|
2025-05-29 00:47:08 +08:00
|
|
|
<view class="flex-col mt-11">
|
2025-06-09 19:08:32 +08:00
|
|
|
<view class="flex-col list-item mt-20" wx:for="{{settlementData}}" wx:for-item="item" wx:for-index="index" wx:key="index">
|
2025-05-29 00:47:08 +08:00
|
|
|
<view class="flex-row items-center group">
|
|
|
|
<view class="flex-row items-center flex-1">
|
|
|
|
<image
|
|
|
|
class="shrink-0 image"
|
2025-06-09 19:08:32 +08:00
|
|
|
src="{{ globalImgUrl + projectImage }}"
|
2025-05-29 00:47:08 +08:00
|
|
|
/>
|
2025-06-09 19:08:32 +08:00
|
|
|
<text class="font text_2 ml-14">{{item.projectDetailName}}</text>
|
2025-05-29 00:47:08 +08:00
|
|
|
</view>
|
2025-06-09 19:08:32 +08:00
|
|
|
<text class="font text_3 ml-21">业务员:{{item.salespersonName}}</text>
|
2025-05-29 00:47:08 +08:00
|
|
|
</view>
|
|
|
|
<view class="flex-col section">
|
|
|
|
<view class="flex-row justify-between">
|
|
|
|
<text class="font_2">结算标准</text>
|
|
|
|
<text class="font_2 text_4">结算数量</text>
|
|
|
|
<text class="font_2 text_5">结算收益</text>
|
|
|
|
</view>
|
|
|
|
<view class="flex-col justify-start group_2 mt-10">
|
|
|
|
<view class="flex-row justify-center items-center relative section_2">
|
2025-06-09 19:08:32 +08:00
|
|
|
<text class="font_3 text_6 pos">{{item.settlementRevenue}}元购买券</text>
|
|
|
|
<text class="font_4">{{item.settlementQuantity}}</text>
|
|
|
|
<text class="font_5 pos_2">¥{{item.settlementRevenue}}</text>
|
2025-05-29 00:47:08 +08:00
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<view class="flex-row group_1">
|
|
|
|
<view class="group_3">
|
|
|
|
<text class="font_6 text_7">作业时间:</text>
|
2025-06-09 19:08:32 +08:00
|
|
|
<text class="font_5">{{item.workTime}}</text>
|
2025-05-29 00:47:08 +08:00
|
|
|
</view>
|
|
|
|
<view class="group_4 ml-47">
|
|
|
|
<text class="font_6">结算时间:</text>
|
2025-06-09 19:08:32 +08:00
|
|
|
<text class="font_5">{{item.settlementTime}}</text>
|
2025-05-29 00:47:08 +08:00
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
2025-06-09 19:08:32 +08:00
|
|
|
</view>
|