123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216 |
- <template>
- <div class="sgy-select" tabindex="0" @blur="show = false">
- <div class="fill" @click="show = !show">
- <div class="tags">
- <div>
- <label>{{label}} :</label>
- <span v-if="all">全部</span>
- <ul class="items" v-else>
- <template v-for="item in value.buildingId" >
- {{getTextByValue(item)}}
- </template>
- <template v-for="item in value.floorId" >
- {{getTextByValue(item)}}
- </template>
- <template v-for="item in value.spaceId" >
- {{getTextByValue(item)}}
- </template>
- </ul>
- </div>
- </div>
- <Icon type="ios-arrow-down" :class="{rotate: show}"/>
- </div>
- <div class="list" v-if="show">
- <ul>
- <li class="clear" @click="clearSelect">清空选项</li>
- <sgy-tree ref="sgyTree" :treeList="list" @on-change="onChange"></sgy-tree>
- </ul>
- </div>
- </div>
- </template>
- <script>
- import Tree from './tree.vue'
- // import { log } from 'util'
- export default {
- model: {
- prop: 'value',
- event: 'input'
- },
- components: {
- 'sgy-tree': Tree
- },
- props: {
- value: {},
- list: {
- type: Array,
- default: () => []
- },
- label: ""
- },
- data () {
- return {
- show: false
- }
- },
- computed: {
- all () {
- return this.value.buildingId.length == 0 && this.value.floorId.length == 0 && this.value.spaceId.length == 0
- }
- },
- mounted () {
- },
- methods: {
- onChange (val) {
- this.$emit('input', val)
- this.$emit('onChange')
- },
- clearSelect () {
- let obj = {
- buildingId: [],
- floorId: [],
- spaceId: []
- }
- this.$emit('input', obj)
- // 清空checked
- this.$refs['sgyTree'].setTreeList(this.list)
- },
- getTextByValue (value) {
- for (let i of this.list) {
- if (i.value == value) {
- return i.title
- } else if (i.children && i.children.length > 0) {
- for (let j of i.children) {
- if (j.value == value) {
- return j.title
- } else if (j.children && j.children.length > 0) {
- for (let k of j.children) {
- if (k.value == value) {
- return k.title
- }
- }
- }
- }
- }
- }
- return value
- }
- }
- }
- </script>
- <style scoped lang="less" style="text/less">
- .rotate {
- transform: rotate(180deg);
- }
- .sgy-select {
- outline: none;
- width:280px;
- position: relative;
- z-index: 2;
- .fill {
- vertical-align: middle;
- width: 100%;
- height:34px;
- border-radius: 4px;
- box-shadow: none;
- border: 1px solid #ccc;
- padding: 0 2px;
- cursor: pointer;
- display: flex;
- align-items: center;
- justify-content: space-between;
- background: #fff;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- &:hover,
- &:active,
- &:focus {
- outline: none;
- border-color: #2d8cf0;
- }
- i.rotate,.ivu-icon-ios-arrow-down {
- margin-right: 10px;
- transition: transform 0.3s ease-in-out;
- }
- .tags {
- > div {
- display: flex;
- margin-top: 9px;
- label{
- font-size: 14px;
- color: #212830;
- padding-left: 3px;
- }
- span {
- display: inline-block;
- font-size: 14px;
- padding-right: 5px;
- padding-left: 5px;
- border-radius: 2px;
- color: #212830;
- }
- ul {
- display: inline-block;
- font-size: 14px;
- color: #212830;
- width: 140px;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- padding-left: 5px;
- margin-bottom:-3px;
- li {
- display: inline-block;
- padding-right: 5px;
- padding-left: 9px;
- }
- }
- }
- }
- }
- .list {
- //margin-top: 5px;
- z-index: 3;
- ul {
- border: 1px solid #E0E0E0;
- box-shadow: 0 1px 6px 0 rgba(0,0,0,0.12);
- border-radius: 4px;
- background-color: #fff;
- width: 95%;
- position: absolute;
- max-height: 338px;
- overflow: auto;
- .clear {
- color: #728DEE;
- padding-left: 15px;
- }
- li {
- padding: 5px;
- cursor: pointer;
- &:hover {
- background-color: #f5f7fa;
- }
- &.actived {
- color:#2d8cf0;
- }
- i{
- margin-right: 8px;
- }
- }
- }
- }
- }
- </style>
|