123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 |
- <!-- 添加基础实例 -->
- <template>
- <div class="base-item-list">
- <Input
- class="baseItemInput"
- :width="188"
- iconType="search"
- v-model="baseItemVal"
- @pressEnter="pressEnter"
- />
- <div
- class="lengend-item"
- v-for="(item, index) in baseEditItems"
- :key="index"
- >
- <span class="legend-title">{{ item.title }}</span>
- <div
- class="legend-content"
- v-for="(itemList, i) in item.itemList"
- :key="i"
- >
- <div @click="collapse(itemList)" class="title">
- {{ itemList.title }}
- <i
- v-bind:class="[
- itemList.isClip ? 'caret-icon-active' : 'caret-icon',
- 'el-icon-caret-bottom ',
- ]"
- ></i>
- </div>
- <el-collapse-transition>
- <ul v-show="itemList.isClip">
- <li
- :class="{ 'btn-active': editCmd == baseItem.id }"
- v-for="(baseItem, k) in itemList.itemList"
- :key="k"
- @click="drawItem(baseItem.id)"
- :title="baseItem.name"
- >
- <img class="icon" :src="baseItem.icon" />
- <span class="iconName">{{ baseItem.name }}</span>
- </li>
- </ul>
- </el-collapse-transition>
- </div>
- </div>
- </div>
- </template>
- <script>
- import { baseEditItems } from "./data";
- import { mapMutations, mapState } from "vuex";
- export default {
- data() {
- return {
- baseEditItems,
- baseItemVal: "", //基础组件搜索
- };
- },
- computed: {
- ...mapState(["editCmd"]),
- },
- methods: {
- ...mapMutations(["SETCHOICELEHEND"]),
- drawItem(item) {
- this.SETCHOICELEHEND(item);
- },
- pressEnter() {},
- // /是否下拉折叠
- collapse(item) {
- item.isClip = !item.isClip;
- },
- },
- };
- </script>
- <style lang="less" scoped>
- .base-item-list {
- .baseItemInput {
- margin: 12px 0;
- }
- .lengend-item {
- width: 100%;
- .legend-title {
- display: block;
- font-size: 14px;
- height: 38px;
- line-height: 38px;
- margin-left: 10px;
- color: #8d9399;
- border-top: 1px solid #eee;
- }
- .legend-content {
- padding: 0 10 10px 10px;
- box-sizing: border-box;
- .title {
- margin-left: 10px;
- font-weight: bold;
- color: #1f2429;
- font-size: 14px;
- padding-top: 16px;
- padding-bottom: 16px;
- cursor: pointer;
- .caret-icon {
- animation: nowhirling 0.2s linear forwards;
- }
- .caret-icon-active {
- animation: whirling 0.2s linear forwards;
- }
- }
- @keyframes whirling {
- 0% {
- transform: rotate(0deg);
- -ms-transform: rotate(0deg); /* Internet Explorer */
- -moz-transform: rotate(0deg); /* Firefox */
- -webkit-transform: rotate(0deg); /* Safari 和 Chrome */
- -o-transform: rotate(0deg); /* Opera */
- }
- 100% {
- transform: rotate(180deg);
- -ms-transform: rotate(180deg); /* Internet Explorer */
- -moz-transform: rotate(180deg); /* Firefox */
- -webkit-transform: rotate(180deg); /* Safari 和 Chrome */
- -o-transform: rotate(180deg); /* Opera */
- }
- }
- @keyframes nowhirling {
- 0% {
- transform: rotate(180deg);
- -ms-transform: rotate(180deg); /* Internet Explorer */
- -moz-transform: rotate(180deg); /* Firefox */
- -webkit-transform: rotate(180deg); /* Safari 和 Chrome */
- -o-transform: rotate(180deg); /* Opera */
- }
- 100% {
- transform: rotate(0deg);
- -ms-transform: rotate(0deg); /* Internet Explorer */
- -moz-transform: rotate(0deg); /* Firefox */
- -webkit-transform: rotate(0deg); /* Safari 和 Chrome */
- -o-transform: rotate(0deg); /* Opera */
- }
- }
- ul {
- display: flex;
- flex-wrap: wrap;
- border-bottom: 1px solid #eee;
- li {
- font-size: 12px;
- width: 52px;
- height: 52px;
- display: flex;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- padding: 4px;
- box-sizing: border-box;
- margin: 0 10px 16px 10px;
- .icon {
- width: 28px;
- height: 28px;
- // background: red;
- }
- .iconName {
- width: 100%;
- display: flex;
- justify-content: center;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- cursor: pointer;
- }
- li:hover {
- background: #f5f6f7;
- }
- .btn-active {
- background: #e1f2ff !important;
- }
- }
- }
- }
- }
- </style>
|