halfscreen.js 612 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. import ad from '../index/ad'
  2. const textProps = {
  3. content: 'WuxUI',
  4. image: '',
  5. width: 120,
  6. height: 64,
  7. }
  8. const rowsTextProps = {
  9. content: ['WuxUI', 'WuxWeapp'],
  10. image: '',
  11. width: 120,
  12. height: 64,
  13. }
  14. const imageProps = {
  15. content: '',
  16. image: '/assets/images/logo.png',
  17. imageWidth: 115,
  18. imageHeight: 36,
  19. width: 140,
  20. height: 80,
  21. }
  22. ad({
  23. data: {
  24. ...textProps,
  25. },
  26. setProps1() {
  27. this.setData(textProps)
  28. },
  29. setProps2() {
  30. this.setData(rowsTextProps)
  31. },
  32. setProps3() {
  33. this.setData(imageProps)
  34. },
  35. })