index.js 642 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. Component({
  2. properties: {
  3. title: {
  4. type: String,
  5. value: '',
  6. },
  7. intro: {
  8. type: String,
  9. value: '',
  10. },
  11. hint: {
  12. type: String,
  13. value: '',
  14. },
  15. code: {
  16. type: String,
  17. value: '',
  18. },
  19. json: {
  20. type: String,
  21. value: '',
  22. },
  23. js: {
  24. type: String,
  25. value: '',
  26. },
  27. showBackBtn: {
  28. type: Boolean,
  29. value: false,
  30. },
  31. },
  32. data: {
  33. },
  34. lifetimes: {
  35. attached() {
  36. wx.xrTitle = this.data.title;
  37. }
  38. },
  39. methods: {
  40. onClickBack() {
  41. wx.navigateBack()
  42. },
  43. },
  44. options: {
  45. multipleSlots: true
  46. }
  47. })