index.js 679 B

12345678910111213141516171819202122
  1. import ad from '../index/ad'
  2. ad({
  3. data: {
  4. content: '微信小程序自定义组件 https://github.com/wux-weapp/wux-weapp',
  5. },
  6. onLoad() {
  7. setTimeout(() => {
  8. this.setData({
  9. content: 'Wux Weapp 是一套组件化、可复用、易扩展的微信小程序 UI 组件库。80+ 丰富的组件,能够满足移动端开发的基本需求。',
  10. })
  11. this.notice = this.selectComponent('#wux-notice-bar')
  12. this.notice.resetAnimation()
  13. }, 3000)
  14. },
  15. onClick() {
  16. wx.showModal({
  17. title: 'Thank you for your support!',
  18. showCancel: !1,
  19. })
  20. },
  21. })