cu-custom.js 857 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. const app = getApp();
  2. Component({
  3. /**
  4. * 组件的一些选项
  5. */
  6. options: {
  7. addGlobalClass: true,
  8. multipleSlots: true
  9. },
  10. /**
  11. * 组件的对外属性
  12. */
  13. properties: {
  14. bgColor: {
  15. type: String,
  16. default: ''
  17. },
  18. isCustom: {
  19. type: [Boolean, String],
  20. default: false
  21. },
  22. isBack: {
  23. type: [Boolean, String],
  24. default: false
  25. },
  26. bgImage: {
  27. type: String,
  28. default: ''
  29. },
  30. },
  31. /**
  32. * 组件的初始数据
  33. */
  34. data: {
  35. StatusBar: app.globalData.StatusBar,
  36. CustomBar: app.globalData.CustomBar,
  37. Custom: app.globalData.Custom
  38. },
  39. /**
  40. * 组件的方法列表
  41. */
  42. methods: {
  43. BackPage() {
  44. wx.navigateBack({
  45. delta: 1
  46. });
  47. },
  48. toHome(){
  49. wx.reLaunch({
  50. url: '/pages/index/index',
  51. })
  52. }
  53. }
  54. })