qingcheng-xiaochengxu/pages/personCenter/subCommissionSetting/subCommissionSetting.wxml

50 lines
1.9 KiB
Plaintext

<view class="flex-col page">
<view class="flex-row justify-between items-center">
<text class="font text">代理列表</text>
<view class="flex-row items-center section">
<image
class="image"
src="https://ide.code.fun/api/image?token=68368d354ae84d001230f4d1&name=923cbdfd7647bf70f563354b3b547dea.png"
/>
<input class="font text_2 ml-7" placeholder="请输入关键字" />
</view>
</view>
<view class="flex-col mt-16">
<view class="flex-col list-item_1 mt-23" wx:for="{{items}}" wx:for-item="item" wx:for-index="index" wx:key="index">
<text class="self-start font_2 text_3">结算标准:张新然</text>
<view class="flex-col self-stretch section_3 mt-17">
<view class="flex-row justify-between items-center">
<text class="font_3 text_4">结算标准</text>
<text class="font_4">代理单价/比例</text>
<text class="font_3">设置价格</text>
</view>
<view class="flex-col mt-19">
<view
class="flex-row items-center list-item mt-13"
wx:for="{{items_1}}"
wx:for-item="item"
wx:for-index="index"
wx:key="index"
>
<text class="font_5 text_5">3.6元购买30元</text>
<text class="shrink-0 font_2 text_8">0.30/0.00%</text>
<view class="flex-row shrink-0 group_2" bindtap="showCommissionRatePop">
<image
class="image_2"
src="https://ide.code.fun/api/image?token=68368d354ae84d001230f4d1&name=2994ec01c6859d93ce653a6cb3d50301.png"
/>
<text class="font_6 text_7">设价</text>
</view>
</view>
</view>
</view>
</view>
</view>
</view>
<!-- 弹窗组件 -->
<commissionRatePop
show="{{showCommissionRatePop}}"
bind:cancel="closeCommissionRatePop"
bind:close="closeCommissionRatePop"
bind:confirm="handleCommissionRateConfirm"
/>