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.
|
- <!--pages/getMerchant/index.wxml-->
- <view class='box'>
- <view class='top'>
- <view class='footer'>
- <text>消费门店</text>
- <input placeholder='请输入消费门店' bindinput="getList"></input>
- </view>
- </view>
- <view class='merchant-list'>
- <view class='lists' style='background:{{selectMerchant.id==item.id?"#F6F6F6":"#fff"}}' tt:for='{{selectList}}' id='{{item.id}}' bindtap='checkMerchant' tt:key='{{index}}'>{{item.merchantName}}</view>
- </view>
- <button class='sub-button' bindtap='submitForm'>提交</button>
- </view>
-
|