dk-toggle.wxml 361 B

12345678910111213
  1. <!-- <view>
  2. <slot></slot>
  3. </view> -->
  4. <block style="text-align: center; {{style}}">
  5. <view wx:if="{{showToggle}}" class="expand-class" bindtap='listToggle'>
  6. 点击收起部分
  7. <van-icon name="arrow-up" />
  8. </view>
  9. <view wx:else class="expand-class" bindtap='listToggle'>
  10. 展开查看更多
  11. <van-icon name="arrow-down" />
  12. </view>
  13. </block>