464 lines
10 KiB
Vue
464 lines
10 KiB
Vue
<template>
|
||
<u-popup class="jnpf-tree-select-popup" width="100%" v-model="value" length="auto" mode="right" :popup="false"
|
||
:safeAreaInsetBottom="safeAreaInsetBottom" :maskCloseAble="maskCloseAble" :z-index="uZIndex" @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" v-if="filterable">
|
||
<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" @click="setCheckAll" style="color: #2979ff;">清空列表
|
||
</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" :tree-data="options" check-on-click-node default-expand-all
|
||
:node-key="realProps.value" highlight-current :props="realProps" @node-click="handleNodeClick"
|
||
:filter-node-method="filterNode" />
|
||
</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 {
|
||
getProvinceSelector
|
||
} from '@/api/common.js'
|
||
let _self;
|
||
export default {
|
||
name: "tree-select",
|
||
props: {
|
||
selectedData: {
|
||
type: Array,
|
||
default () {
|
||
return [];
|
||
}
|
||
},
|
||
selectedId: {
|
||
type: Array,
|
||
default () {
|
||
return [];
|
||
}
|
||
},
|
||
options: {
|
||
type: Array,
|
||
default: () => []
|
||
},
|
||
// 是否显示边框
|
||
border: {
|
||
type: Boolean,
|
||
default: true
|
||
},
|
||
filterable: {
|
||
type: Boolean,
|
||
default: false
|
||
},
|
||
showAllLevels: {
|
||
type: Boolean,
|
||
default: true
|
||
},
|
||
clearable: {
|
||
type: Boolean,
|
||
default: false
|
||
},
|
||
// 通过双向绑定控制组件的弹出与收起
|
||
value: {
|
||
type: Boolean,
|
||
default: false
|
||
},
|
||
// "取消"按钮的颜色
|
||
cancelColor: {
|
||
type: String,
|
||
default: '#606266'
|
||
},
|
||
// "确定"按钮的颜色
|
||
confirmColor: {
|
||
type: String,
|
||
default: '#2979ff'
|
||
},
|
||
// 弹出的z-index值
|
||
zIndex: {
|
||
type: [String, Number],
|
||
default: 0
|
||
},
|
||
safeAreaInsetBottom: {
|
||
type: Boolean,
|
||
default: false
|
||
},
|
||
// 是否允许通过点击遮罩关闭Picker
|
||
maskCloseAble: {
|
||
type: Boolean,
|
||
default: true
|
||
},
|
||
props: {
|
||
type: Object,
|
||
default: () => ({
|
||
label: 'fullName',
|
||
value: 'id',
|
||
icon: 'icon',
|
||
children: 'children',
|
||
isLeaf: 'isLeaf'
|
||
})
|
||
},
|
||
multiple: {
|
||
type: Boolean,
|
||
default: false
|
||
},
|
||
// 顶部标题
|
||
title: {
|
||
type: String,
|
||
default: ''
|
||
},
|
||
// 取消按钮的文字
|
||
cancelText: {
|
||
type: String,
|
||
default: '取消'
|
||
},
|
||
// 确认按钮的文字
|
||
confirmText: {
|
||
type: String,
|
||
default: '确认'
|
||
},
|
||
level: {
|
||
type: Number,
|
||
default: 0
|
||
}
|
||
},
|
||
data() {
|
||
return {
|
||
moving: false,
|
||
selectList: [],
|
||
selectListId: [],
|
||
newListId: [],
|
||
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.selectList = JSON.parse(JSON.stringify(this.selectedData))
|
||
this.selectListId = JSON.parse(JSON.stringify(this.selectedId))
|
||
},
|
||
filterNode(value, options) {
|
||
if (!value) return true;
|
||
return options[this.props.label].indexOf(value) !== -1;
|
||
},
|
||
handleNodeClick(obj) {
|
||
if (!obj.parentId && !obj.isLeaf) return
|
||
let allPath = this.$refs.tree.getNodePath(obj)
|
||
let list = []
|
||
let listId = []
|
||
let currentNode = obj.data
|
||
if (!this.multiple) {
|
||
this.selectList = [];
|
||
this.selectListId = [];
|
||
}
|
||
let txt = ''
|
||
let ids = ''
|
||
for (let i = 0; i < allPath.length; i++) {
|
||
listId.push(allPath[i][this.props.value])
|
||
ids += (i ? ',' : '') + allPath[i][this.props.value]
|
||
txt += (i ? '/' : '') + allPath[i][this.props.label]
|
||
}
|
||
if (this.showAllLevels) {
|
||
this.selectList.push(txt)
|
||
} else {
|
||
this.selectList.push(currentNode[this.props.label])
|
||
}
|
||
this.selectList = [...new Set(this.selectList)]
|
||
var isExist = false;
|
||
for (var i = 0; i < this.selectListId.length; i++) {
|
||
if (this.selectListId[i].join(',') === ids) {
|
||
isExist = true;
|
||
break;
|
||
}
|
||
}!isExist && this.selectListId.push(listId);
|
||
},
|
||
delSelect(index) {
|
||
this.selectList.splice(index, 1);
|
||
this.selectListId.splice(index, 1);
|
||
},
|
||
setCheckAll() {
|
||
this.selectList = [];
|
||
this.selectListId = [];
|
||
this.$refs.tree.setCheckAll(false);
|
||
},
|
||
// 点击确定或者取消
|
||
getResult(event = null) {
|
||
this.$emit(event, this.selectList, this.selectListId);
|
||
this.close();
|
||
},
|
||
close() {
|
||
this.$emit('input', false);
|
||
}
|
||
}
|
||
};
|
||
</script>
|
||
|
||
<style scoped lang="scss">
|
||
@import "@/uview-ui/libs/css/style.components.scss";
|
||
|
||
.u-select {
|
||
height: 100% !important;
|
||
|
||
.u-select__body__treeSelect {
|
||
height: 100% !important;
|
||
display: flex;
|
||
flex-direction: column;
|
||
|
||
.user-select-search {
|
||
padding: 0 44rpx
|
||
}
|
||
|
||
.swiper-box {
|
||
height: 100%;
|
||
padding-bottom: 96rpx;
|
||
}
|
||
|
||
.alreadySelect {
|
||
width: 100%;
|
||
padding: 0 44rpx 0;
|
||
|
||
.alreadySelect__box {
|
||
.alreadySelect_hd {
|
||
width: 100%;
|
||
height: 60rpx;
|
||
justify-content: space-between;
|
||
}
|
||
|
||
.select__box {
|
||
width: 100%;
|
||
justify-content: center;
|
||
border-bottom: 1rpx solid #c0c4cc;
|
||
|
||
.select__list {
|
||
padding-top: 10rpx;
|
||
justify-content: flex-start;
|
||
flex-wrap: wrap;
|
||
|
||
.u-selectTag {
|
||
margin-bottom: 10rpx;
|
||
margin-left: 10rpx;
|
||
}
|
||
|
||
.u-size-default {
|
||
padding: 6rpx 12rpx;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
// .alreadySelect {
|
||
// width: 100%;
|
||
|
||
// .alreadySelect__box {
|
||
|
||
// .alreadySelect_hd {
|
||
// display: flex;
|
||
// flex-direction: row;
|
||
// justify-content: space-between;
|
||
// margin: 0 40rpx;
|
||
// }
|
||
|
||
// .select__box {
|
||
// margin: 0 40rpx 40rpx;
|
||
// border: 1rpx solid #f4f6f8;
|
||
// display: flex;
|
||
// flex-direction: row;
|
||
// flex-wrap: wrap;
|
||
// justify-content: flex-start;
|
||
// box-shadow: 0px 4px 6px #f4f6f8;
|
||
|
||
// .alreadySelect__content {
|
||
// .u-size-default {
|
||
// margin-left: 10rpx;
|
||
// padding: 10rpx;
|
||
// }
|
||
// }
|
||
// }
|
||
// }
|
||
// }
|
||
|
||
.flowBefore-actions {
|
||
background-color: #fff;
|
||
position: fixed;
|
||
bottom: 0;
|
||
display: flex;
|
||
width: 100%;
|
||
height: 88rpx;
|
||
box-shadow: 0 -2rpx 8rpx #e1e5ec;
|
||
z-index: 999999;
|
||
|
||
.buttom-btn {
|
||
width: 100%;
|
||
/* #ifndef MP */
|
||
height: 88rpx !important;
|
||
line-height: 88rpx !important;
|
||
border-radius: 0 !important;
|
||
|
||
&::after {
|
||
border: none !important;
|
||
}
|
||
|
||
/* #endif */
|
||
/* #ifdef MP */
|
||
.u-btn {
|
||
width: 100%;
|
||
height: 88rpx !important;
|
||
line-height: 88rpx !important;
|
||
border-radius: 0 !important;
|
||
|
||
&::after {
|
||
border: none !important;
|
||
}
|
||
}
|
||
|
||
/* #endif */
|
||
}
|
||
}
|
||
}
|
||
|
||
.u-select__header {
|
||
position: fixed;
|
||
bottom: 0;
|
||
width: 100%;
|
||
background-color: #FFFFFF;
|
||
|
||
&::after {
|
||
content: '';
|
||
position: absolute;
|
||
border-bottom: 0.5px solid #eaeef1;
|
||
-webkit-transform: scaleY(0.5);
|
||
transform: scaleY(0.5);
|
||
bottom: 0;
|
||
right: 0;
|
||
left: 0;
|
||
}
|
||
}
|
||
|
||
&__action {
|
||
position: relative;
|
||
line-height: $u-form-item-height;
|
||
height: $u-form-item-height;
|
||
|
||
&__icon {
|
||
position: absolute;
|
||
right: 20rpx;
|
||
top: 50%;
|
||
transition: transform .4s;
|
||
transform: translateY(-50%);
|
||
z-index: 1;
|
||
|
||
&--reverse {
|
||
transform: rotate(-180deg) translateY(50%);
|
||
}
|
||
}
|
||
}
|
||
|
||
&__hader {
|
||
&__title {
|
||
color: $u-content-color;
|
||
}
|
||
}
|
||
|
||
&--border {
|
||
border-radius: 6rpx;
|
||
border-radius: 4px;
|
||
border: 1px solid $u-form-item-border-color;
|
||
}
|
||
|
||
&__header {
|
||
@include vue-flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
height: 80rpx;
|
||
padding: 0 40rpx;
|
||
}
|
||
|
||
&__body {
|
||
width: 100%;
|
||
height: 500rpx;
|
||
overflow: hidden;
|
||
background-color: #fff;
|
||
|
||
&__picker-view {
|
||
height: 100%;
|
||
box-sizing: border-box;
|
||
|
||
&__item {
|
||
@include vue-flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
font-size: 32rpx;
|
||
color: $u-main-color;
|
||
padding: 0 8rpx;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
</style> |