index.vue 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <template>
  2. <view :id="name" class="i-class i-collapse-item">
  3. <view class="i-collapse-item-title-wrap" @tap="trigger">
  4. <i-icon :size="16" type="enter" :i-class="showContent ? 'i-collapse-item-arrow-show' : 'i-collapse-item-arrow'" />
  5. <text class="i-collapse-item-title i-class-title">{{ title }}</text>
  6. </view>
  7. <view :class="'i-collapse-item-content ' + showContent + ' i-class-content'">
  8. <slot name="content"></slot>
  9. </view>
  10. </view>
  11. </template>
  12. <script>
  13. import iIcon from '../icon/index';
  14. export default {
  15. components: {
  16. iIcon
  17. },
  18. unicomGroup: ['collapse'],
  19. data() {
  20. return {
  21. showContent: '',
  22. accordion: false
  23. };
  24. },
  25. externalClasses: ['i-class-content', 'i-class-title', 'i-class'],
  26. relations: {
  27. '../collapse/index': {
  28. type: 'parent',
  29. linked: function (target) {
  30. const options = {
  31. accordion: target.data.accordion
  32. };
  33. if (target.data.name === this.name) {
  34. options.showContent = 'i-collapse-item-show-content';
  35. }
  36. this.setData(options);
  37. }
  38. }
  39. },
  40. props: {
  41. title: String,
  42. name: String
  43. },
  44. options: {
  45. multipleSlots: true
  46. },
  47. methods: {
  48. trigger(e) {
  49. const data = this;
  50. if (data.accordion) {
  51. this.$emit(
  52. 'collapse',
  53. {
  54. detail: {
  55. name: data.name
  56. }
  57. },
  58. {
  59. composed: true,
  60. bubbles: true
  61. }
  62. );
  63. } else {
  64. this.setData({
  65. showContent: data.showContent ? '' : 'i-collapse-item-show-content'
  66. });
  67. }
  68. }
  69. },
  70. created: function () {}
  71. };
  72. </script>
  73. <style>
  74. @import './index.css';
  75. </style>