Files
2021-12-24 15:44:53 +08:00

62 lines
3.3 KiB
Plaintext

<view class="container">
<view class="height-100">
<view class="fixed top-0 left-0 right-0 bg-fff height-100">
<view class="relative mt30 pl210 pr200">
<view class="absolute left-0 box-middle ml30 font-28" style="line-height:56rpx" bindtap="optShowCommission">
<i class="iconfont icon-yongjin1"></i>
<text class="ml10">配置佣金</text>
</view>
<input class="wp100 bg-f6 pl20 pr20 font-22 ulib-r750 text-center" placeholder-class="color-ccc" type="text" model:value="{{keyword}}" placeholder="姓名/手机号" style="height:56rpx" />
<view bindtap="searchSubmit" class="absolute right-0 box-middle mr30 pl50 pr50 bg-333 font-28 color-fff ulib-r750" style="line-height:56rpx">搜索</view>
</view>
</view>
</view>
<view class="mt30 pl30 pr30">
<block wx:for='{{list}}' wx:key='index'>
<view class="relative ulib-r10 box-shadow-000-10-10 mb30 overflowhidden">
<view class="inner40">
<view class="font-32">
<text>{{item.name}}</text>
<text class="font-26 color-666">{{item.mobile}}</text>
</view>
<view class="mt10 font-22 color-999">报备时间:{{item.b_time}}</view>
</view>
<view class="inner40 bts-1-eb" wx:if="{{item.info}}">
<view class="font-32">车辆信息</view>
<block wx:for="{{item.info}}" wx:for-index='key' wx:for-item='it' wx:key='i'>
<view class="mt25 fn-clear font-28 color-666">
<view class="fn-fl">{{key}}</view>
<view class="fn-fr wp60 text-nowrap text-right">{{it}}</view>
</view>
</block>
</view>
</view>
</block>
<lcb-listmore isLoading='{{loading}}' isEnd='{{end}}' isNoData='{{noData}}'></lcb-listmore>
</view>
</view>
<lcb-msg isShow="{{isShowCommission}}">
<view slot="content">
<view class="inner40">
<view class="text-center font-36">配置佣金</view>
<view class="mt30 relative bg-f6 pl200 pr90 font-32 ulib-r10">
<view class="absolute left-0 box-middle ml40">一级</view>
<input class="wp100 bg-f6 text-right font-32 text-center" placeholder-class="color-ccc" type="number" model:value="{{brokerage_1}}" placeholder="请输入金额" style="height:90rpx" />
<view class="absolute right-0 box-middle mr40">元</view>
</view>
<view class="mt30 relative bg-f6 pl200 pr90 font-32 ulib-r10">
<view class="absolute left-0 box-middle ml40">二级</view>
<input class="wp100 bg-f6 text-right font-32 text-center" placeholder-class="color-ccc" type="number" model:value="{{brokerage_2}}" placeholder="请输入金额" style="height:90rpx" />
<view class="absolute right-0 box-middle mr40">元</view>
</view>
</view>
<view class="fn-flex pl60 pr60 pb20 text-center font-32 color-666">
<button bindtap="optShowCommission" class="fn-flex-item mr20 bds-2-36afa2 btn-no-bg wp100 font-28 color-36afa2 ulib-r750">取消</button>
<button disabled="{{submitFlag}}" bindtap="{{id?'putAppBrokerage':'postAppBrokerage'}}" class="fn-flex-item ml20 btn-36afa2 wp100 font-28 color-fff ulib-r750" hover-class="btn-36afa2-hover">确定</button>
</view>
<view class="pb50 text-center font-22 color-999"><i class="iconfont mr5 icon-tishi"></i>请认真编辑相关佣金,会按照佣金配置分佣!</view>
</view>
</lcb-msg>