index.wxml 1.0 KB

123456789101112131415161718
  1. <view class="page">
  2. <view class="page__bd">
  3. <wux-tabs current="{{ activeKey }}" controlled bind:change="onChange">
  4. <wux-tab key="0" title="全部"></wux-tab>
  5. <wux-tab key="1" title="待收货"></wux-tab>
  6. <wux-tab key="2" title="待评价"></wux-tab>
  7. </wux-tabs>
  8. <view class="content" hidden="{{ activeKey !== '0' }}">
  9. <wux-prompt visible="{{ activeKey === '0' }}" title="{{ msg1.title }}" text="{{ msg1.text }}" />
  10. </view>
  11. <view class="content" hidden="{{ activeKey !== '1' }}">
  12. <wux-prompt visible="{{ activeKey === '1' }}" icon="{{ msg2.icon }}" title="{{ msg2.title }}" text="{{ msg2.text }}" buttons="{{ msg2.buttons }}" bind:click="buttonClicked" />
  13. </view>
  14. <view class="content" hidden="{{ activeKey !== '2' }}">
  15. <wux-prompt visible="{{ activeKey === '2' }}" icon="{{ msg3.icon }}" title="{{ msg3.title }}" text="{{ msg3.text }}" buttons="{{ msg3.buttons }}" bind:getuserinfo="onGotUserInfo" />
  16. </view>
  17. </view>
  18. </view>