jingshuiji/pages/public/select.wxml
2025-04-22 14:39:59 +08:00

9 lines
489 B
Plaintext

<view class='com-selectBox'>
<view class='com-sContent' bindtap='selectToggle'>
<view class='com-sTxt'>{{ nowText==' ' ? propArray[0].text : nowText }}</view>
<image src='../../image/订单选择.png' class='com-sImg' animation="{{animationData}}"></image>
</view>
<view class='com-sList' wx:if="{{selectShow}}">
<view wx:for="{{propArray}}" data-index="{{index}}" wx:key='' class='com-sItem' bindtap='setText'>{{item.text}}</view>
</view>
</view>