123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572 |
- <template>
- <div class="list-wrap">
- <div class="list-content">
- <el-collapse v-model="activeNames" expand-icon-position="left">
- <el-collapse-item
- title="Consistency"
- v-for="(group, groupIndex) in groupList"
- :key="groupIndex"
- :name="groupIndex"
- >
- <template #title="{ isActive }">
- <div :class="['title-wrapper', { 'is-active': isActive }]">
- <div class="title-l">
- <el-icon class="arrow-icon"><CaretBottom /></el-icon>
- {{ group.name }}
- <span class="group-length">({{ group.list.length }})</span>
- </div>
- <div class="title-r" @click.stop="handleRightClick">
- <span class="title-manage">管理</span>
- <el-checkbox
- v-show="toSelectClient"
- v-model="groupCheckStates[groupIndex].checkAll"
- :indeterminate="groupCheckStates[groupIndex].isIndeterminate"
- @change="(val) => handleCheckAllChange(val, groupIndex)"
- >
- 全选
- </el-checkbox>
- </div>
- </div>
- </template>
- <template #icon> </template>
- <!-- 遍历当前分组中的每一项 -->
- <div v-show="!group.list.length" class="no-data">暂无数据</div>
- <div v-show="group.list.length">
- <el-checkbox-group v-model="checkedCities" @change="handleCheckedCitiesChange">
- <div v-for="(ele, index) in group.list" :key="index" class="list-item">
- <el-checkbox v-show="toSelectClient" label="" :value="ele.tel"> </el-checkbox>
- <div class="item-flex">
- <img
- class="photo"
- :src="
- ele.icon || 'https://birdseye-img.sysuimars.com/dinggou-mini/defalut-icon.png'
- "
- alt=""
- />
- <div class="item-text">
- <div class="name">
- <span>{{ ele.name }}</span>
- <el-icon
- class="icon"
- @click.stop="handlePerson('edit', ele)"
- color="#2199F8"
- size="16"
- ><Edit
- /></el-icon>
- </div>
- <div><span class="item-title">电话:</span>{{ ele.tel }}</div>
- <div><span class="item-title">地址:</span>{{ ele.address || "--" }}</div>
- </div>
- <!-- <div class="blue-btn" @click="toCustomOneTree(ele)">去分配</div> -->
- </div>
- </div>
- </el-checkbox-group>
- </div>
- </el-collapse-item>
- <!-- <div class="item-flex">
- <img class="photo" :src="ele.icon || 'https://birdseye-img.sysuimars.com/dinggou-mini/defalut-icon.png'" alt="" />
- <div class="item-text">
- <div class="name">
- <span>{{ ele.name }}</span>
- <el-icon class="icon" @click.stop="handlePerson('edit', ele)" color="#2199F8" size="16"
- ><Edit/></el-icon>
- </div>
- <div><span class="item-title">电话:</span>{{ ele.tel }}</div>
- <div><span class="item-title">地址:</span>{{ ele.address || "--" }}</div>
- </div>
- <div class="blue-btn" @click="toCustomOneTree(ele)">去分配</div>
- </div> -->
- </el-collapse>
- </div>
- <!-- 渐变主色按钮 -->
- <div class="center-btn" v-show="!toSelectClient" @click="toCustomPage">一键分配</div>
- <div class="global-wrap" v-show="toSelectClient">
- <div class="global-btn" @click="handleGlobalCheckAllChange">全选</div>
- </div>
- </div>
- <!-- 新增客户、编辑客户 -->
- <edit-client-popup ref="editClientRef"></edit-client-popup>
- </template>
- <script setup>
- import { ref, reactive, onMounted, watch } from "vue";
- import { Collapse, CollapseItem, Checkbox, Popup } from "vant";
- import EditClientPopup from "@/components/editClientPopup.vue";
- import { useRouter } from "vue-router";
- const router = useRouter();
- const props = defineProps({
- // 是否显示选择客户
- checkDistributeShow: {
- type: Boolean,
- default: false,
- },
- // 是否开始重新加载列表
- startReloadList: {
- type: Boolean,
- default: false,
- },
- });
- // const curIndex = ref(0)
- const handlePerson = (type, data) => {
- editClientRef.value.openClientPopup(type, data);
- };
- const editClientRef = ref(null);
- const activeNames = ref([0]);
- const groupList = ref([]);
- const toSelectClient = ref(false);
- function toCustomPage() {
- toSelectClient.value = true;
- // toSelectClient.value = !toSelectClient.value;
- // eventBus.emit("startBoxSelect", toSelectClient.value);
- emit("update:checkDistributeShow", toSelectClient.value);
- // router.push("/layout/customTree");
- }
- const handleGlobalCheckAllChange = (val) => {
- if (val) {
- // 全选所有项目
- checkedCities.value = groupList.value.flatMap((group) => group.list.map((item) => item.tel));
- } else {
- // 清空所有选择
- checkedCities.value = [];
- }
- // 更新所有分组的状态
- groupList.value.forEach((_, index) => {
- updateGroupCheckStatus(index);
- });
- };
- function toCustomOneTree(data) {
- router.push("/layout/customTree?type=single&data=" + JSON.stringify(data));
- }
- onMounted(() => {
- getUserList();
- });
- function getUserList() {
- VE_API.manage_interface.fetchGroupList({ farmId: 766, isAllot: 0 }).then(({ data }) => {
- // defalutList.value = data
- groupList.value = Object.keys(data).map((key) => {
- return {
- name: key,
- list: data[key],
- };
- });
- initGroupCheckStates(); // 初始化分组选择状态
- });
- }
- const checkedCities = ref([]);
- // 使用一个对象来存储每个分组的全选状态
- const groupCheckStates = ref({});
- // 初始化分组选择状态
- const initGroupCheckStates = () => {
- groupList.value.forEach((group, index) => {
- groupCheckStates.value[index] = {
- checkAll: false,
- isIndeterminate: false,
- };
- });
- };
- // 修改后的全选处理方法
- const handleCheckAllChange = (val, groupIndex) => {
- const currentGroup = groupList.value[groupIndex];
- if (val) {
- // 添加当前分组的所有项到选中列表
- currentGroup.list.forEach((item) => {
- if (!checkedCities.value.includes(item.tel)) {
- checkedCities.value.push(item.tel);
- }
- });
- } else {
- // 移除当前分组的所有项
- checkedCities.value = checkedCities.value.filter(
- (name) => !currentGroup.list.some((item) => item.tel === name)
- );
- }
- updateGroupCheckStatus(groupIndex);
- };
- // 更新分组的选择状态
- const updateGroupCheckStatus = (groupIndex) => {
- const currentGroup = groupList.value[groupIndex];
- const checkedCount = currentGroup.list.filter((item) => checkedCities.value.includes(item.tel)).length;
- groupCheckStates.value[groupIndex].checkAll = checkedCount === currentGroup.list.length;
- groupCheckStates.value[groupIndex].isIndeterminate = checkedCount > 0 && checkedCount < currentGroup.list.length;
- console.log('groupList.value', checkedCities.value);
- emit("update:checkData", checkedCities.value);
- };
- // 修改 handleCheckedCitiesChange 方法
- const handleCheckedCitiesChange = (value) => {
- // 遍历所有分组,更新每个分组的选中状态
- groupList.value.forEach((group, groupIndex) => {
- updateGroupCheckStatus(groupIndex);
- });
- };
- function handleRightClick() {
- // 点击事件处理
- }
- watch(
- () => props.checkDistributeShow,
- (newVal) => {
- if (newVal === false) {
- toSelectClient.value = false; // 如果显示选择客户,则切换到选择客户模式
- // 清空所有选择
- checkedCities.value = [];
- initGroupCheckStates(); // 初始化分组选择状态
- }
- }
- );
- watch(
- () => props.startReloadList,
- (newVal) => {
- if (newVal) {
- getUserList(); // 重新加载用户列表
- }
- }
- );
- const emit = defineEmits(["update:checkDistributeShow", "update:checkData"]);
- </script>
- <style lang="scss" scoped>
- .list-wrap {
- width: 100%;
- height: 100%;
- position: relative;
- .list-header {
- display: flex;
- align-items: center;
- justify-content: space-between;
- .search {
- width: 90px;
- margin-right: 10px;
- --el-input-placeholder-color: rgba(255, 212, 137, 0.6);
- ::v-deep {
- .el-input__wrapper {
- box-shadow: none;
- border: 1px solid rgba(255, 212, 137, 0.6);
- background: transparent;
- }
- .el-input__prefix,
- .el-input__inner {
- color: rgba(255, 212, 137, 0.6);
- }
- }
- }
- .button {
- width: calc(100% - 100px);
- color: #ffd489;
- background: rgba(255, 212, 137, 0.06);
- border: 1px solid rgba(255, 212, 137, 0.3);
- display: flex;
- align-items: center;
- justify-content: center;
- padding: 8px;
- border-radius: 5px;
- cursor: pointer;
- img {
- width: 20px;
- height: 17px;
- margin-right: 6px;
- }
- }
- }
- .list-content {
- width: 100%;
- height: calc(100% - 56px);
- overflow: auto;
- padding: 0 8px;
- box-sizing: border-box;
- &.max-height {
- height: calc(100% - 50px - 55px);
- }
- .text {
- color: #ffd489;
- cursor: pointer;
- }
- .no-data {
- text-align: center;
- color: rgba(0, 0, 0, 0.6);
- }
- ::v-deep {
- .el-collapse-item__arrow {
- display: none;
- }
- .el-collapse-item__header .is-active {
- .arrow-icon {
- transform: rotate(90deg);
- }
- }
- .el-collapse {
- border-color: transparent;
- }
- .van-cell:after,
- .van-collapse-item--border:after,
- .van-hairline--top-bottom:after {
- border: none !important;
- }
- .van-cell {
- border-radius: 5px 5px 0 0;
- justify-content: space-between;
- background: rgba(255, 255, 255, 0.08);
- color: #fff;
- .van-cell__value {
- flex: none;
- }
- .van-cell__title {
- display: flex;
- align-items: center;
- .icon {
- margin-right: 3px;
- color: #bfbfbf;
- font-size: 16px;
- }
- .span {
- color: rgba(255, 255, 255, 0.4);
- margin-left: 10px;
- }
- }
- }
- .van-collapse-item__content {
- background: transparent;
- padding: 10px 0 0 0;
- }
- .van-collapse-item__title--expanded {
- .van-cell__title {
- .icon {
- transform: rotate(90deg);
- }
- }
- }
- .van-collapse-item + .van-collapse-item {
- margin-top: 12px;
- }
- .van-checkbox__icon--checked .van-icon {
- background-color: #f7be5a;
- border-color: #f7be5a;
- color: #000;
- }
- }
- .title-wrapper {
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: space-between;
- .arrow-icon {
- transition: transform 0.3s ease;
- }
- &.is-active {
- .arrow-icon {
- transform: rotate(90deg);
- }
- }
- .title-r {
- color: #2199f8;
- font-size: 14px;
- display: flex;
- align-items: center;
- .title-manage {
- margin-right: 10px;
- }
- ::v-deep {
- .el-checkbox {
- color: #2199f8;
- }
- }
- }
- }
- .group-length {
- color: rgba(0, 0, 0, 0.4);
- font-size: 12px;
- }
- .list-item {
- border-radius: 6px;
- position: relative;
- display: flex;
- align-items: center;
- background: rgba(120, 120, 120, 0.05);
- border: 1px solid transparent;
- padding: 8px 10px;
- &.active {
- background: rgba(243, 193, 29, 0.1);
- border-color: #ffd489;
- }
- .checkbox {
- margin-right: 12px;
- }
- .item-flex {
- display: flex;
- align-items: center;
- justify-content: space-between;
- width: 100%;
- .blue-btn {
- cursor: pointer;
- color: #ffffff;
- font-size: 12px;
- padding: 5px 15px;
- border-radius: 20px;
- background: #2199f8;
- }
- }
- .photo {
- width: 63px;
- height: 63px;
- border-radius: 8px;
- margin-right: 12px;
- }
- .item-text {
- color: #999999;
- font-size: 12px;
- line-height: 1.6;
- flex: 1;
- .name {
- display: flex;
- align-items: center;
- span {
- font-size: 14px;
- color: #000000;
- font-weight: 500;
- margin-right: 5px;
- }
- .icon {
- cursor: pointer;
- }
- }
- .item-title {
- color: #666666;
- }
- }
- }
- .list-item + .list-item {
- margin-top: 12px;
- }
- }
- .center-btn {
- position: absolute;
- bottom: 9px;
- left: 50%;
- transform: translateX(-50%);
- color: #ffffff;
- border-radius: 20px;
- font-size: 14px;
- padding: 7px 10px;
- cursor: pointer;
- border: 1px solid #fff;
- background: linear-gradient(180deg, #84c9ff, #2199f8);
- width: 194px;
- box-sizing: border-box;
- text-align: center;
- }
- .global-wrap {
- width: 100%;
- padding-top: 17px;
- box-shadow: 4px 0 4px rgba(0, 0, 0, 0.2);
- padding-top: 12px;
- box-shadow: 4px 0 4px rgba(0, 0, 0, 0.2);
- text-align: center;
- margin: 0 auto;
- padding-bottom: 11px;
- display: flex;
- align-items: center;
- justify-content: center;
- .global-btn {
- height: 38px;
- width: 168px;
- display: flex;
- align-items: center;
- justify-content: center;
- background: #2199f8;
- color: #fff;
- border-radius: 4px;
- }
- }
- .list-footer {
- position: absolute;
- bottom: 0;
- left: 0;
- width: 100%;
- background: rgba(255, 255, 255, 0.08);
- display: flex;
- justify-content: center;
- box-sizing: border-box;
- padding: 11px;
- .settings {
- background: rgba(255, 255, 255, 0.1);
- border-radius: 4px;
- padding: 8px 36px;
- color: #fff;
- cursor: pointer;
- }
- .flex {
- display: flex;
- align-items: center;
- }
- .delete {
- border: 1px solid #ffd489;
- border-radius: 4px;
- padding: 8px 19px;
- color: #ffd489;
- cursor: pointer;
- }
- .operation {
- width: 100%;
- justify-content: space-between;
- .btn-group {
- div {
- background: rgba(255, 255, 255, 0.1);
- padding: 8px 19px;
- border-radius: 4px;
- cursor: pointer;
- }
- .add {
- margin-right: 10px;
- }
- }
- }
- .controls {
- width: 100%;
- justify-content: space-between;
- .personnel {
- width: calc(100% - 100px);
- .circle {
- width: 16px;
- height: 16px;
- background: #ffd489;
- border-radius: 50%;
- justify-content: center;
- margin-right: 8px;
- }
- .text {
- width: 90%;
- }
- }
- .delete {
- background: #ffd489;
- color: #000;
- width: 85px;
- box-sizing: border-box;
- text-align: center;
- padding: 8px;
- }
- }
- }
- }
- </style>
|