index.js 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. const warn = (msg, getValue) => {
  2. console.warn(msg);
  3. console.log('接受到的值为:', getValue);
  4. };
  5. Component({
  6. externalClasses: ['i-class'],
  7. options: {
  8. multipleSlots: true
  9. },
  10. relations: {
  11. '../cell-group/index': {
  12. type: 'parent'
  13. }
  14. },
  15. properties: {
  16. // 左侧标题
  17. title: {
  18. type: String
  19. },
  20. // 标题下方的描述信息
  21. label: {
  22. type: String
  23. },
  24. // 右侧内容
  25. value: {
  26. type: String
  27. },
  28. text: {
  29. type: String
  30. },
  31. // 只有点击 footer 区域才触发 tab 事件
  32. onlyTapFooter: {
  33. type: Boolean
  34. },
  35. // 是否展示右侧箭头并开启尝试以 url 跳转
  36. isLink: {
  37. type: null,
  38. value: ''
  39. },
  40. // 链接类型,可选值为 navigateTo,redirectTo,switchTab,reLaunch
  41. linkType: {
  42. type: String,
  43. value: 'navigateTo'
  44. },
  45. url: {
  46. type: String,
  47. value: ''
  48. }
  49. },
  50. data: {
  51. isLastCell: true
  52. },
  53. methods: {
  54. navigateTo () {
  55. const { url } = this.data;
  56. const type = typeof this.data.isLink;
  57. this.triggerEvent('click', {});
  58. if (!this.data.isLink || !url || url === 'true' || url === 'false') return;
  59. if (type !== 'boolean' && type !== 'string') {
  60. warn('isLink 属性值必须是一个字符串或布尔值', this.data.isLink);
  61. return;
  62. }
  63. if (['navigateTo', 'redirectTo', 'switchTab', 'reLaunch'].indexOf(this.data.linkType) === -1) {
  64. warn('linkType 属性可选值为 navigateTo,redirectTo,switchTab,reLaunch', this.data.linkType);
  65. return;
  66. }
  67. wx[this.data.linkType].call(wx, {url});
  68. },
  69. handleTap () {
  70. if (!this.data.onlyTapFooter) {
  71. this.navigateTo();
  72. }
  73. },
  74. updateIsLastCell (isLastCell) {
  75. this.setData({ isLastCell });
  76. }
  77. }
  78. });