tn-grid.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <template>
  2. <view
  3. class="tn-grid-class tn-grid"
  4. :style="{
  5. justifyContent: gridAlignStyle
  6. }"
  7. >
  8. <slot></slot>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. name: 'tn-grid',
  14. props: {
  15. // 分成几列
  16. col: {
  17. type: [Number, String],
  18. default: 3
  19. },
  20. // 宫格对齐方式
  21. // left 左对齐 center 居中对齐 right 右对齐
  22. align: {
  23. type: String,
  24. default: 'left'
  25. },
  26. // 点击时的效果,none没有效果
  27. hoverClass: {
  28. type: String,
  29. default: 'tn-hover'
  30. }
  31. },
  32. data() {
  33. return {
  34. }
  35. },
  36. watch: {
  37. // 当父组件和子组件需要共享参数变化,通知子组件
  38. parentData() {
  39. if (this.children.length) {
  40. this.children.map(child => {
  41. // 判断子组件是否有updateParentData方式,有才执行
  42. typeof(child.updateParentData) === 'function' && child.updateParentData()
  43. })
  44. }
  45. }
  46. },
  47. created() {
  48. // 如果将children定义在data中,在微信小程序会造成循环引用而报错
  49. this.children = []
  50. },
  51. computed: {
  52. // 计算父组件的值是否发生变化
  53. parentData() {
  54. return [this.hoverClass, this.col, this.border]
  55. },
  56. // 宫格对齐方式
  57. gridAlignStyle() {
  58. switch(this.align) {
  59. case 'left':
  60. return 'flex-start'
  61. case 'center':
  62. return 'center'
  63. case 'right':
  64. return 'flex-end'
  65. default:
  66. return 'flex-start'
  67. }
  68. }
  69. },
  70. methods: {
  71. click(index) {
  72. this.$emit('click', index)
  73. }
  74. }
  75. }
  76. </script>
  77. <style lang="scss" scoped>
  78. // 组件中兼容小程序的方式,不过不能使用对齐方式
  79. // .tn-grid {
  80. // width: 100%;
  81. // /* #ifdef MP */
  82. // position: relative;
  83. // box-sizing: border-box;
  84. // overflow: hidden;
  85. // /* #endif */
  86. // /* #ifndef MP */
  87. // /* #ifndef APP-NVUE */
  88. // display: flex;
  89. // flex-direction: row;
  90. // /* #endif */
  91. // flex-wrap: wrap;
  92. // align-items: center;
  93. // /* #endif */
  94. // }
  95. // 在使用组件时兼容小程序
  96. .tn-grid {
  97. width: 100%;
  98. display: flex;
  99. flex-direction: row;
  100. flex-wrap: wrap;
  101. align-items: center;
  102. }
  103. </style>