抖音b端
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

14 行
577 B

  1. <!--pages/getMerchant/index.wxml-->
  2. <view class='box'>
  3. <view class='top'>
  4. <view class='footer'>
  5. <text>消费门店</text>
  6. <input placeholder='请输入消费门店' bindinput="getList"></input>
  7. </view>
  8. </view>
  9. <view class='merchant-list'>
  10. <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>
  11. </view>
  12. <button class='sub-button' bindtap='submitForm'>提交</button>
  13. </view>