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.

9 lines
445 B

  1. <view class='ms-content-box'>
  2. <view class='ms-content' bindtap='selectToggle'>
  3. <view class='ms-text'>{{selectText}}</view>
  4. <view class="{{selectShow ? 'icon-up' : 'icon-down'}}"></view>
  5. </view>
  6. <view class='ms-options' wx:if="{{selectShow}}">
  7. <view wx:for="{{propArray}}" data-index="{{index}}" wx:key='index' class='ms-option' bindtap='setText'>{{item.text || item.value || item}}</view>
  8. </view>
  9. </view>