seled.wxml 868 B

123456789101112131415161718192021
  1. <view class="page">
  2. <view class="box1">
  3. <view class="layer4">
  4. <view class="bd1">
  5. <!-- <text lines="1" class="word2"></text> -->
  6. <input type="text" name="search" value="{{keyword}}" bindinput="bindinput" bindconfirm="getcaless" confirm-type="search" placeholder="输入分类名称搜索"></input>
  7. </view>
  8. </view>
  9. <van-tree-select items="{{ items }}" height="155vw" main-item-class="outer1" main-active-class="bd2" main-active-index="{{ mainActiveIndex }}" active-id="{{ activeId }}" bind:click-nav="onClickNav">
  10. <view slot="content" class="right">
  11. <view class="main2" wx:for="{{right1}}" wx:key="index">
  12. <text lines="1" class="word4" data-id="{{item.id}}" data-title="{{item.title}}" bindtap="onClickItem">{{item.title}}</text>
  13. </view>
  14. </view>
  15. </van-tree-select>
  16. </view>
  17. </view>