| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245 |
- <template>
- <div class="list">
- <div class="item" v-for="item in props.list" :key="item[configurationItem.value]" v-show="!item.isHide">
- <div class="title">
- <div class="checkbox-box">
- <van-checkbox icon-size="16px" shape="square" @click.stop="checkChange(item)" v-model="item.checked">
- <span style="font-size: 15px;">
- {{ item[configurationItem.label]}}
- </span>
- </van-checkbox>
- </div>
- <div @click.stop="itemClick(item)" :class="item.first?'arrow':'arrowlast'">
- <van-icon v-if="item[configurationItem.children] && item[configurationItem.children].length" :name="item.isShowChildren ? 'arrow-up' : 'arrow-down'" />
- </div>
-
- </div>
- <div class="tree" v-show="item.first||item.isShowChildren">
- <tree
- :isLink="data.isLink"
- v-if="item.children && item.children.length"
- :list="item.children"
- :listObj="props.listObj"
- :isFirstFloor="false"
- :multiple="data.multiple"
- @confirm="onConfirm"
- :defaultId="defaultId">
- </tree>
- </div>
- </div>
- </div>
- </template>
- <script setup>
- import { reactive, watch } from 'vue'
- import tree from './tree.vue'
- const emits = defineEmits(["change","confirm"])
- const props = defineProps({
- // 是否是第一层
- isFirstFloor: {
- type: Boolean,
- default() {
- return true;
- },
- },
- // 树形结构
- list: {
- type: Array,
- default() {
- return [];
- },
- },
- multiple: {
- type: Boolean,
- default() {
- return false;
- },
- },
- // 树形扁平化数据
- listObj: {
- type: Object,
- default() {
- return {};
- },
- },
- // 配置项 默认为 label, value, children
- configurationItem: {
- type: Object,
- default() {
- return {
- label: "label",
- value: "value",
- children: "children",
- };
- },
- },
- // 单选默认值
- defaultId : String
- })
-
- const data = reactive({
- firstLoad: true,
- checkboxValue1: [],
- showList: [],
- isLink: true,
- multiple: true,
- isOutData: true, // 需要将数据抛出
- })
-
- watch(() => props.list, () => {
- if (data.firstLoad) {
- outDataBuffer();
- data.firstLoad = false;
- }
- // 判断 是第一层树 且 不是进行显示隐藏操作时,进行数据的抛出
- if (props.isFirstFloor && data.isOutData) {
- if(data.multiple){
- outCheckedData();
- }
- }
- }, { deep: true })
-
- // 展开
- const itemClick = (item) => {
- outDataBuffer();
- item.isShowChildren = !item.isShowChildren
-
- }
- // 数据抛出缓冲(在list数据变化时,不想抛出选择的数据时,调用该方法)
- const outDataBuffer = () => {
- data.isOutData = false;
- setTimeout(() => {
- data.isOutData = true;
- }, 500);
- }
- // 获取选中对象
- const getCheckData = (list) => {
- let deptList = [];
- list.forEach((itm) => {
- if (itm.checked) {
- deptList.push(itm);
- }
- if (itm.children && itm.children.length) {
- deptList = deptList.concat(getCheckData(itm.children));
- }
- });
- return deptList;
- }
- // 单项checked改变
- const checkChange = (item) => {
- // 多选
- if (data.multiple) {
- // item.checked = !item.checked
- if (data.isLink) {
- // 展开所有可以展开的节点
- if (item.checked) {
- expandAll(item);
- }
-
- // 勾选子级
- if (item.children && item.children.length) {
- checkChidren(item.children, item.checked);
- outCheckedData();
- }
- }
- return
- }
-
- // 单选
- if(item.children && item.children.length) return
- toggleAllSelectData(props.list)
- outCheckedData();
- }
-
- // 获取全部可选择数据,进行全选/取消
- const toggleAllSelectData = (list) => {
- list.forEach((itm) => {
- itm.checked = false
- if (itm.children && itm.children.length) {
- toggleAllSelectData(itm.children)
- }
- });
- }
-
- // 展开所有可以展开的节点
- const expandAll = (item) => {
- if (item.children?.length) {
- item.isShowChildren = true
- item.children.forEach(itm => {
- expandAll(itm);
- })
- }
- }
- // 根据父级统一取消勾选或勾选
- const checkChidren = (list, isChecked) => {
- list.forEach((itm) => {
- itm.checked = isChecked
- if (itm.children && itm.children.length) {
- checkChidren(itm.children, isChecked);
- }
- });
- }
- // 抛出选中的数据
- const outCheckedData = () => {
- const checkedList = getCheckData(props.list);
- emits("change", checkedList);
- onConfirm(checkedList)
- }
-
- const onConfirm = (e) => {
- emits("confirm", e);
- }
-
- defineExpose({
- itemClick,
- outDataBuffer,
- getCheckData,
- checkChange,
- expandAll,
- // checkParent,
- checkChidren,
- outCheckedData,
- })
- </script>
-
- <style lang="scss" scoped>
-
- .list {
- .item {
- margin-bottom: 10px;
-
- .title {
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin-bottom: 10px;
-
- .checkbox-box {
- display: flex;
- align-items: center;
- cursor: pointer;
- padding: 10px 0;
- }
-
- .arrow{
- width: 80px;
- display: flex;
- justify-content: flex-end;
- }
- }
-
- .tree {
- margin-left: 50px;
- }
- }
- .arrow{
- display: none !important;
- }
- }
- </style>
|