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.
|
- <view class='ms-content-box'>
- <view class='ms-content' bindtap='selectToggle'>
- <view class='ms-text'>{{selectText}}</view>
- <view class="{{selectShow ? 'icon-up' : 'icon-down'}}"></view>
- </view>
- <view class='ms-options' wx:if="{{selectShow}}">
- <view wx:for="{{propArray}}" data-index="{{index}}" wx:key='index' class='ms-option' bindtap='setText'>{{item.text || item.value || item}}</view>
- </view>
- </view>
|