2021-11-30 09:55:37 +08:00
|
|
|
|
<template>
|
2022-07-29 20:38:55 +08:00
|
|
|
|
<div class="top-right-btn" :style="style">
|
2021-11-30 09:55:37 +08:00
|
|
|
|
<el-row>
|
2022-07-29 20:38:55 +08:00
|
|
|
|
<el-tooltip class="item" effect="dark" :content="showSearch ? '隐藏搜索' : '显示搜索'" placement="top" v-if="search">
|
2022-01-11 17:24:45 +08:00
|
|
|
|
<el-button circle icon="Search" @click="toggleSearch()" />
|
2021-11-30 09:55:37 +08:00
|
|
|
|
</el-tooltip>
|
|
|
|
|
<el-tooltip class="item" effect="dark" content="刷新" placement="top">
|
2022-01-11 17:24:45 +08:00
|
|
|
|
<el-button circle icon="Refresh" @click="refresh()" />
|
2021-11-30 09:55:37 +08:00
|
|
|
|
</el-tooltip>
|
|
|
|
|
<el-tooltip class="item" effect="dark" content="显隐列" placement="top" v-if="columns">
|
2023-12-01 12:02:01 +08:00
|
|
|
|
<el-button circle icon="Menu" @click="showColumn()" v-if="showColumnsType == 'transfer'"/>
|
|
|
|
|
<el-dropdown trigger="click" :hide-on-click="false" style="padding-left: 12px" v-if="showColumnsType == 'checkbox'">
|
2023-12-01 14:20:45 +08:00
|
|
|
|
<el-button circle icon="Menu" />
|
2023-12-01 12:02:01 +08:00
|
|
|
|
<template #dropdown>
|
|
|
|
|
<el-dropdown-menu>
|
2025-04-21 15:29:14 +08:00
|
|
|
|
<!-- 全选/反选 按钮 -->
|
|
|
|
|
<el-dropdown-item>
|
|
|
|
|
<el-checkbox :indeterminate="isIndeterminate" v-model="isChecked" @change="toggleCheckAll"> 列展示 </el-checkbox>
|
|
|
|
|
</el-dropdown-item>
|
|
|
|
|
<div class="check-line"></div>
|
2025-08-09 13:23:04 +08:00
|
|
|
|
<template v-for="(item, key) in columns" :key="item.key">
|
2023-12-01 12:02:01 +08:00
|
|
|
|
<el-dropdown-item>
|
2025-08-09 13:23:04 +08:00
|
|
|
|
<el-checkbox v-model="item.visible" @change="checkboxChange($event, key)" :label="item.label" />
|
2023-12-01 12:02:01 +08:00
|
|
|
|
</el-dropdown-item>
|
|
|
|
|
</template>
|
|
|
|
|
</el-dropdown-menu>
|
|
|
|
|
</template>
|
|
|
|
|
</el-dropdown>
|
2021-11-30 09:55:37 +08:00
|
|
|
|
</el-tooltip>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-dialog :title="title" v-model="open" append-to-body>
|
|
|
|
|
<el-transfer
|
|
|
|
|
:titles="['显示', '隐藏']"
|
|
|
|
|
v-model="value"
|
2025-08-09 13:23:04 +08:00
|
|
|
|
:data="transferData"
|
2021-11-30 09:55:37 +08:00
|
|
|
|
@change="dataChange"
|
|
|
|
|
></el-transfer>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
|
const props = defineProps({
|
2023-12-01 12:02:01 +08:00
|
|
|
|
/* 是否显示检索条件 */
|
2021-11-30 09:55:37 +08:00
|
|
|
|
showSearch: {
|
|
|
|
|
type: Boolean,
|
2025-04-21 15:29:14 +08:00
|
|
|
|
default: true
|
2021-11-30 09:55:37 +08:00
|
|
|
|
},
|
2025-08-09 13:23:04 +08:00
|
|
|
|
/* 显隐列信息(数组格式、对象格式) */
|
2021-11-30 09:55:37 +08:00
|
|
|
|
columns: {
|
2025-08-09 13:23:04 +08:00
|
|
|
|
type: [Array, Object]
|
2021-11-30 09:55:37 +08:00
|
|
|
|
},
|
2023-12-01 12:02:01 +08:00
|
|
|
|
/* 是否显示检索图标 */
|
2022-07-29 20:38:55 +08:00
|
|
|
|
search: {
|
|
|
|
|
type: Boolean,
|
2025-04-21 15:29:14 +08:00
|
|
|
|
default: true
|
2022-07-29 20:38:55 +08:00
|
|
|
|
},
|
2023-12-01 12:02:01 +08:00
|
|
|
|
/* 显隐列类型(transfer穿梭框、checkbox复选框) */
|
|
|
|
|
showColumnsType: {
|
|
|
|
|
type: String,
|
2025-04-21 15:29:14 +08:00
|
|
|
|
default: "checkbox"
|
2023-12-01 12:02:01 +08:00
|
|
|
|
},
|
|
|
|
|
/* 右外边距 */
|
2022-07-29 20:38:55 +08:00
|
|
|
|
gutter: {
|
|
|
|
|
type: Number,
|
2025-04-21 15:29:14 +08:00
|
|
|
|
default: 10
|
2022-07-29 20:38:55 +08:00
|
|
|
|
},
|
2021-11-30 09:55:37 +08:00
|
|
|
|
})
|
|
|
|
|
|
2025-04-21 15:29:14 +08:00
|
|
|
|
const emits = defineEmits(['update:showSearch', 'queryTable'])
|
2021-11-30 09:55:37 +08:00
|
|
|
|
|
|
|
|
|
// 显隐数据
|
2025-04-21 15:29:14 +08:00
|
|
|
|
const value = ref([])
|
2021-11-30 09:55:37 +08:00
|
|
|
|
// 弹出层标题
|
2025-04-21 15:29:14 +08:00
|
|
|
|
const title = ref("显示/隐藏")
|
2021-11-30 09:55:37 +08:00
|
|
|
|
// 是否显示弹出层
|
2025-04-21 15:29:14 +08:00
|
|
|
|
const open = ref(false)
|
2021-11-30 09:55:37 +08:00
|
|
|
|
|
2022-07-29 20:38:55 +08:00
|
|
|
|
const style = computed(() => {
|
2025-04-21 15:29:14 +08:00
|
|
|
|
const ret = {}
|
2022-07-29 20:38:55 +08:00
|
|
|
|
if (props.gutter) {
|
2025-04-21 15:29:14 +08:00
|
|
|
|
ret.marginRight = `${props.gutter / 2}px`
|
2022-07-29 20:38:55 +08:00
|
|
|
|
}
|
2025-04-21 15:29:14 +08:00
|
|
|
|
return ret
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
// 是否全选/半选 状态
|
|
|
|
|
const isChecked = computed({
|
2025-08-09 13:23:04 +08:00
|
|
|
|
get: () => Array.isArray(props.columns) ? props.columns.every(col => col.visible) : Object.values(props.columns).every((col) => col.visible),
|
2025-04-21 15:29:14 +08:00
|
|
|
|
set: () => {}
|
|
|
|
|
})
|
2025-08-09 13:23:04 +08:00
|
|
|
|
const isIndeterminate = computed(() => Array.isArray(props.columns) ? props.columns.some((col) => col.visible) && !isChecked.value : Object.values(props.columns).some((col) => col.visible) && !isChecked.value)
|
|
|
|
|
const transferData = computed(() => Array.isArray(props.columns) ? props.columns.map((item, index) => ({ key: index, label: item.label })) : Object.keys(props.columns).map((key, index) => ({ key: index, label: props.columns[key].label })))
|
2022-07-29 20:38:55 +08:00
|
|
|
|
|
2021-11-30 09:55:37 +08:00
|
|
|
|
// 搜索
|
|
|
|
|
function toggleSearch() {
|
2025-04-21 15:29:14 +08:00
|
|
|
|
emits("update:showSearch", !props.showSearch)
|
2021-11-30 09:55:37 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 刷新
|
|
|
|
|
function refresh() {
|
2025-04-21 15:29:14 +08:00
|
|
|
|
emits("queryTable")
|
2021-11-30 09:55:37 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 右侧列表元素变化
|
|
|
|
|
function dataChange(data) {
|
2025-08-09 13:23:04 +08:00
|
|
|
|
if (Array.isArray(props.columns)) {
|
|
|
|
|
for (let item in props.columns) {
|
|
|
|
|
const key = props.columns[item].key
|
|
|
|
|
props.columns[item].visible = !data.includes(key)
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
Object.keys(props.columns).forEach((key, index) => {
|
|
|
|
|
props.columns[key].visible = !data.includes(index)
|
|
|
|
|
})
|
2021-11-30 09:55:37 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 打开显隐列dialog
|
|
|
|
|
function showColumn() {
|
2025-04-21 15:29:14 +08:00
|
|
|
|
open.value = true
|
2021-11-30 09:55:37 +08:00
|
|
|
|
}
|
|
|
|
|
|
2025-08-09 13:23:04 +08:00
|
|
|
|
if (props.showColumnsType == "transfer") {
|
|
|
|
|
// transfer穿梭显隐列初始默认隐藏列
|
|
|
|
|
if (Array.isArray(props.columns)) {
|
|
|
|
|
for (let item in props.columns) {
|
|
|
|
|
if (props.columns[item].visible === false) {
|
|
|
|
|
value.value.push(parseInt(item))
|
|
|
|
|
}
|
2023-12-01 12:02:01 +08:00
|
|
|
|
}
|
2025-08-09 13:23:04 +08:00
|
|
|
|
} else {
|
|
|
|
|
Object.keys(props.columns).forEach((key, index) => {
|
|
|
|
|
if (props.columns[key].visible === false) {
|
|
|
|
|
value.value.push(index)
|
|
|
|
|
}
|
|
|
|
|
})
|
2021-11-30 09:55:37 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2023-12-01 12:02:01 +08:00
|
|
|
|
|
2025-04-21 15:29:14 +08:00
|
|
|
|
// 单勾选
|
2025-08-09 13:23:04 +08:00
|
|
|
|
function checkboxChange(event, key) {
|
|
|
|
|
if (Array.isArray(props.columns)) {
|
|
|
|
|
props.columns.filter(item => item.key == key)[0].visible = event
|
|
|
|
|
} else {
|
|
|
|
|
props.columns[key].visible = event
|
|
|
|
|
}
|
2023-12-01 12:02:01 +08:00
|
|
|
|
}
|
|
|
|
|
|
2025-04-21 15:29:14 +08:00
|
|
|
|
// 切换全选/反选
|
|
|
|
|
function toggleCheckAll() {
|
|
|
|
|
const newValue = !isChecked.value
|
2025-08-09 13:23:04 +08:00
|
|
|
|
if (Array.isArray(props.columns)) {
|
|
|
|
|
props.columns.forEach((col) => (col.visible = newValue))
|
|
|
|
|
} else {
|
|
|
|
|
Object.values(props.columns).forEach((col) => (col.visible = newValue))
|
|
|
|
|
}
|
2025-04-21 15:29:14 +08:00
|
|
|
|
}
|
2021-11-30 09:55:37 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang='scss' scoped>
|
|
|
|
|
:deep(.el-transfer__button) {
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
display: block;
|
|
|
|
|
margin-left: 0px;
|
|
|
|
|
}
|
|
|
|
|
:deep(.el-transfer__button:first-child) {
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
}
|
2023-12-01 12:02:01 +08:00
|
|
|
|
:deep(.el-dropdown-menu__item) {
|
|
|
|
|
line-height: 30px;
|
|
|
|
|
padding: 0 17px;
|
2021-11-30 09:55:37 +08:00
|
|
|
|
}
|
2025-04-21 15:29:14 +08:00
|
|
|
|
.check-line {
|
|
|
|
|
width: 90%;
|
|
|
|
|
height: 1px;
|
|
|
|
|
background-color: #ccc;
|
|
|
|
|
margin: 3px auto;
|
|
|
|
|
}
|
2023-12-01 12:02:01 +08:00
|
|
|
|
</style>
|