index.wxml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <view class="page">
  2. <view class="page__hd">
  3. <view class="page__title">Alert</view>
  4. <view class="page__desc">警告框</view>
  5. </view>
  6. <view class="page__bd page__bd_spacing">
  7. <view class="sub-title">Theme</view>
  8. <wux-alert theme="light" title="https://github.com/wux-weapp/wux-weapp" />
  9. <wux-white-space />
  10. <wux-alert theme="stable" title="https://github.com/wux-weapp/wux-weapp" />
  11. <wux-white-space />
  12. <wux-alert theme="positive" title="https://github.com/wux-weapp/wux-weapp" />
  13. <wux-white-space />
  14. <wux-alert theme="calm" title="https://github.com/wux-weapp/wux-weapp" />
  15. <wux-white-space />
  16. <wux-alert theme="assertive" title="https://github.com/wux-weapp/wux-weapp" />
  17. <wux-white-space />
  18. <wux-alert theme="balanced" title="https://github.com/wux-weapp/wux-weapp" />
  19. <wux-white-space />
  20. <wux-alert theme="energized" title="https://github.com/wux-weapp/wux-weapp" />
  21. <wux-white-space />
  22. <wux-alert theme="royal" title="https://github.com/wux-weapp/wux-weapp" />
  23. <wux-white-space />
  24. <wux-alert theme="dark" title="https://github.com/wux-weapp/wux-weapp" />
  25. <view class="sub-title">Closable</view>
  26. <wux-alert closable title="微信小程序自定义组件" label="https://github.com/wux-weapp/wux-weapp" />
  27. <wux-white-space />
  28. <wux-alert closable title="微信小程序自定义组件" label="https://github.com/wux-weapp/wux-weapp" />
  29. <wux-white-space />
  30. <wux-alert closable title="微信小程序自定义组件" label="https://github.com/wux-weapp/wux-weapp" />
  31. <view class="sub-title">Thumb</view>
  32. <wux-alert thumb="http://cdn.skyvow.cn/logo.png" label="https://github.com/wux-weapp/wux-weapp" />
  33. <wux-white-space />
  34. <wux-alert thumb="http://cdn.skyvow.cn/logo.png" label="https://github.com/wux-weapp/wux-weapp" />
  35. <wux-white-space />
  36. <wux-alert thumb="http://cdn.skyvow.cn/logo.png" label="https://github.com/wux-weapp/wux-weapp" />
  37. <view class="sub-title">Slot</view>
  38. <wux-alert theme="balanced">
  39. <wux-icon wux-class="thumb" type="ios-checkmark-circle-outline" size="20" color="#fff" slot="header" />
  40. <text>微信小程序自定义组件</text>
  41. <wux-icon wux-class="close" type="ios-close-circle-outline" size="20" color="#fff" slot="footer" />
  42. </wux-alert>
  43. <wux-white-space />
  44. <wux-alert theme="energized">
  45. <wux-icon wux-class="thumb" type="ios-alert" size="20" color="#fff" slot="header" />
  46. <text>微信小程序自定义组件</text>
  47. </wux-alert>
  48. <wux-white-space />
  49. <wux-alert theme="assertive">
  50. <wux-icon wux-class="thumb" type="ios-close-circle-outline" size="20" color="#fff" slot="header" />
  51. <text>微信小程序自定义组件</text>
  52. </wux-alert>
  53. </view>
  54. </view>