You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

189 lines
5.3 KiB

9 months ago
<template>
<u-popup class="jnpf-tree-select-popup" mode="right" v-model="value" width="100%" @close="close">
<view class="jnpf-tree-select-body">
<view class="jnpf-tree-select-title">
<text class="icon-ym icon-ym-report-icon-preview-pagePre backIcon" @tap="getResult('cancel')"></text>
<view class="title">组织选择</view>
</view>
<view class="jnpf-tree-select-search">
<u-search placeholder="请输入关键词搜索" v-model="filterText" height="72" :show-action="false"
bg-color="#f0f2f6" shape="square">
</u-search>
</view>
<view class="jnpf-tree-selected">
<view class="jnpf-tree-selected-head">
<view>已选</view>
<view v-if="multiple" class="clear-btn" @click="setCheckAll"></view>
</view>
<view class="jnpf-tree-selected-box">
<scroll-view scroll-y="true" class="select-list">
<u-tag closeable @close="delSelect(index)" v-for="(list,index) in selectList" :key="index"
:text="list" class="u-selectTag" />
</scroll-view>
</view>
</view>
<view class="jnpf-tree-select-tree">
<scroll-view :scroll-y="true" style="height: 100%">
<ly-tree ref="tree" :node-key="realProps.value" :tree-data="options" :show-checkbox="false"
@node-click="handleNodeClick" :props="realProps" :show-node-icon="true" :show-radio="false"
:filter-node-method="filterNode" default-expand-all />
</scroll-view>
</view>
<!-- 底部按钮 -->
<view class="jnpf-tree-select-actions">
<u-button class="buttom-btn" @click="getResult('cancel')"></u-button>
<u-button class="buttom-btn" type="primary" @click.stop="getResult('confirm')">确定</u-button>
</view>
</view>
</u-popup>
</template>
<script>
/**
* tree-select 树形选择器
* @property {Boolean} v-model 布尔值变量用于控制选择器的弹出与收起
* @property {Boolean} safe-area-inset-bottom 是否开启底部安全区适配(默认false)
* @property {String} cancel-color 取消按钮的颜色默认#606266
* @property {String} confirm-color 确认按钮的颜色(默认#2979ff)
* @property {String} confirm-text 确认按钮的文字
* @property {String} cancel-text 取消按钮的文字
* @property {Boolean} mask-close-able 是否允许通过点击遮罩关闭Picker(默认true)
* @property {String Number} z-index 弹出时的z-index值(默认10075)
* @event {Function} confirm 点击确定按钮返回当前选择的值
*/
const defaultProps = {
label: 'fullName',
value: 'id',
icon: 'icon',
children: 'children'
}
import {
getDepartmentSelector
} from '@/api/common.js'
let _self;
export default {
props: {
options: {
type: Array,
default () {
return [];
}
},
selectedData: {
type: Array,
default () {
return [];
}
},
ids: {
type: [Array, String],
default () {
return [];
}
},
// 通过双向绑定控制组件的弹出与收起
value: {
type: Boolean,
default: false
},
// 弹出的z-index值
zIndex: {
type: [String, Number],
default: 0
},
props: {
type: Object,
default: () => ({
label: 'fullName',
value: 'id',
icon: 'icon',
children: 'children',
isLeaf: 'isLeaf'
})
},
multiple: {
type: Boolean,
default: false
}
},
data() {
return {
moving: false,
selectList: [],
selectListId: [],
filterText: ''
};
},
watch: {
// 在select弹起的时候重新初始化所有数据
value: {
immediate: true,
handler(val) {
if (val) setTimeout(() => this.init(), 10);
}
},
filterText(val) {
this.$refs.tree.filter(val);
}
},
created() {
_self = this
this.init()
},
computed: {
uZIndex() {
// 如果用户有传递z-index值优先使用
return this.zIndex ? this.zIndex : this.$u.zIndex.popup;
},
realProps() {
return {
...defaultProps,
...this.props
}
}
},
methods: {
init() {
this.selectListId = JSON.parse(JSON.stringify(this.ids))
if (!Array.isArray(this.ids)) this.selectListId = []
this.selectList = JSON.parse(JSON.stringify(this.selectedData))
},
filterNode(value, options) {
if (!value) return true;
return options[this.props.label].indexOf(value) !== -1;
},
handleNodeClick(obj) {
let selectList;
if (this.multiple) {
this.selectList.push(obj.data.organize)
this.selectList = [...new Set(this.selectList)];
if (obj.data.organizeIds.length) this.selectListId.push(obj.data.organizeIds)
this.selectListId = [...new Set(this.selectListId)];
this.selectListId = this.selectListId.filter(o => Array.isArray(o))
} else {
this.selectList = []
this.selectList.push(obj.data.organize)
this.selectList = [...new Set(this.selectList)];
this.selectListId = obj.data.organizeIds
}
},
delSelect(index) {
this.selectList.splice(index, 1);
this.selectListId.splice(index, 1);
},
setCheckAll() {
this.selectListId = []
this.selectList = [];
this.$refs.tree.setCheckAll(false);
},
// 点击确定或者取消
getResult(event = null) {
this.$emit(event, this.selectList, this.selectListId);
this.close();
},
close() {
this.filterText = ""
this.$emit('input', false);
}
}
};
</script>