addBaseItem.vue 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. <!-- 添加基础实例 -->
  2. <template>
  3. <div class="base-item-list">
  4. <Input
  5. class="baseItemInput"
  6. :width="188"
  7. iconType="search"
  8. v-model="baseItemVal"
  9. @pressEnter="pressEnter"
  10. />
  11. <div
  12. class="lengend-item"
  13. v-for="(item, index) in baseEditItems"
  14. :key="index"
  15. >
  16. <span class="legend-title">{{ item.title }}</span>
  17. <div
  18. class="legend-content"
  19. v-for="(itemList, i) in item.itemList"
  20. :key="i"
  21. >
  22. <div @click="collapse(itemList)" class="title">
  23. {{ itemList.title }}
  24. <i
  25. v-bind:class="[
  26. itemList.isClip ? 'caret-icon-active' : 'caret-icon',
  27. 'el-icon-caret-bottom ',
  28. ]"
  29. ></i>
  30. </div>
  31. <el-collapse-transition>
  32. <ul v-show="itemList.isClip">
  33. <li
  34. :class="{ 'btn-active': editCmd == baseItem.id }"
  35. v-for="(baseItem, k) in itemList.itemList"
  36. :key="k"
  37. @click="drawItem(baseItem.id)"
  38. :title="baseItem.name"
  39. >
  40. <img class="icon" :src="baseItem.icon" />
  41. <span class="iconName">{{ baseItem.name }}</span>
  42. </li>
  43. </ul>
  44. </el-collapse-transition>
  45. </div>
  46. </div>
  47. </div>
  48. </template>
  49. <script>
  50. import { baseEditItems } from "./data";
  51. import { mapMutations, mapState } from "vuex";
  52. export default {
  53. data() {
  54. return {
  55. baseEditItems,
  56. baseItemVal: "", //基础组件搜索
  57. };
  58. },
  59. computed: {
  60. ...mapState(["editCmd"]),
  61. },
  62. methods: {
  63. ...mapMutations(["SETCHOICELEHEND"]),
  64. drawItem(item) {
  65. this.SETCHOICELEHEND(item);
  66. },
  67. pressEnter() {},
  68. // /是否下拉折叠
  69. collapse(item) {
  70. item.isClip = !item.isClip;
  71. },
  72. },
  73. };
  74. </script>
  75. <style lang="less" scoped>
  76. .base-item-list {
  77. .baseItemInput {
  78. margin: 12px 0;
  79. }
  80. .lengend-item {
  81. width: 100%;
  82. .legend-title {
  83. display: block;
  84. font-size: 14px;
  85. height: 38px;
  86. line-height: 38px;
  87. margin-left: 10px;
  88. color: #8d9399;
  89. border-top: 1px solid #eee;
  90. }
  91. .legend-content {
  92. padding: 0 10 10px 10px;
  93. box-sizing: border-box;
  94. .title {
  95. margin-left: 10px;
  96. font-weight: bold;
  97. color: #1f2429;
  98. font-size: 14px;
  99. padding-top: 16px;
  100. padding-bottom: 16px;
  101. cursor: pointer;
  102. .caret-icon {
  103. animation: nowhirling 0.2s linear forwards;
  104. }
  105. .caret-icon-active {
  106. animation: whirling 0.2s linear forwards;
  107. }
  108. }
  109. @keyframes whirling {
  110. 0% {
  111. transform: rotate(0deg);
  112. -ms-transform: rotate(0deg); /* Internet Explorer */
  113. -moz-transform: rotate(0deg); /* Firefox */
  114. -webkit-transform: rotate(0deg); /* Safari 和 Chrome */
  115. -o-transform: rotate(0deg); /* Opera */
  116. }
  117. 100% {
  118. transform: rotate(180deg);
  119. -ms-transform: rotate(180deg); /* Internet Explorer */
  120. -moz-transform: rotate(180deg); /* Firefox */
  121. -webkit-transform: rotate(180deg); /* Safari 和 Chrome */
  122. -o-transform: rotate(180deg); /* Opera */
  123. }
  124. }
  125. @keyframes nowhirling {
  126. 0% {
  127. transform: rotate(180deg);
  128. -ms-transform: rotate(180deg); /* Internet Explorer */
  129. -moz-transform: rotate(180deg); /* Firefox */
  130. -webkit-transform: rotate(180deg); /* Safari 和 Chrome */
  131. -o-transform: rotate(180deg); /* Opera */
  132. }
  133. 100% {
  134. transform: rotate(0deg);
  135. -ms-transform: rotate(0deg); /* Internet Explorer */
  136. -moz-transform: rotate(0deg); /* Firefox */
  137. -webkit-transform: rotate(0deg); /* Safari 和 Chrome */
  138. -o-transform: rotate(0deg); /* Opera */
  139. }
  140. }
  141. ul {
  142. display: flex;
  143. flex-wrap: wrap;
  144. border-bottom: 1px solid #eee;
  145. li {
  146. font-size: 12px;
  147. width: 52px;
  148. height: 52px;
  149. display: flex;
  150. align-items: center;
  151. justify-content: center;
  152. flex-direction: column;
  153. padding: 4px;
  154. box-sizing: border-box;
  155. margin: 0 10px 16px 10px;
  156. .icon {
  157. width: 28px;
  158. height: 28px;
  159. // background: red;
  160. }
  161. .iconName {
  162. width: 100%;
  163. display: flex;
  164. justify-content: center;
  165. overflow: hidden;
  166. text-overflow: ellipsis;
  167. white-space: nowrap;
  168. }
  169. cursor: pointer;
  170. }
  171. li:hover {
  172. background: #f5f6f7;
  173. }
  174. .btn-active {
  175. background: #e1f2ff !important;
  176. }
  177. }
  178. }
  179. }
  180. }
  181. </style>