You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
1.3 KiB

<!--mine/pages/traderList/traderList.wxml-->
<!-- 搜索 -->
<block>
<view class="search">
<!-- 占位符样式 placeholder-style="color:white;" -->
<van-search use-left-icon-slot shape="round" background="#eb3015" value="{{ keyword }}" placeholder="请输入代理商名称" bind:change="keyWordsChange" bind:search="keyWordsSearch">
<image mode="aspectFit" class="icon-search" slot="left-icon" src="/img/icon-search-white.png"></image>
</van-search>
</view>
<view style="height: 130rpx; background-color: #EEF2F7;"></view>
</block>
<!-- 列表 -->
<view class="left-cate">
<view class="list {{capitalId == item.id ? 'on' : ''}}" wx:for="{{capitalList}}" wx:key="id" catch:tap="cateFn" data-obj="{{item}}">{{item.name}}</view>
</view>
<view class="table-body">
<van-radio-group value="{{ radio }}" bind:change="onChange">
<view class="list {{radio==item.traderId?'on':''}}" wx:for="{{listData}}" wx:key="id" data-name="{{item.name}}">
<view>{{item.name}}</view>
<view>
<van-radio checked-color="#0a6597" name="{{item.traderId}}"></van-radio>
</view>
</view>
</van-radio-group>
</view>
<!-- 底部按钮 -->
<view style="height: 150rpx;"></view>
<view class="footer">
<view style="flex: 1;" bindtap="back">返回</view>
<view style="flex: 2;" class="long" bind:tap="submit">提交</view>
</view>