Files
RuoYi-Vue3-Mirror/src/components/RightToolbar/index.vue
T

214 lines
7.0 KiB
Vue
Raw Normal View History

2021-11-30 09:55:37 +08:00
<template>
<div class="top-right-btn" :style="style">
2021-11-30 09:55:37 +08:00
<el-row>
<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>
2025-08-09 16:13:36 +08:00
<el-tooltip class="item" effect="dark" content="显隐列" placement="top" v-if="Object.keys(columns).length > 0">
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>
2026-01-28 12:21:57 +08:00
<script setup lang="ts">
import type { TableShowColumns } from '@/types/api/common'
2021-11-30 09:55:37 +08:00
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 16:13:36 +08:00
type: [Array, Object],
default: () => ({})
2021-11-30 09:55:37 +08:00
},
2023-12-01 12:02:01 +08:00
/* 是否显示检索图标 */
search: {
type: Boolean,
2025-04-21 15:29:14 +08:00
default: true
},
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
},
/* 右外边距 */
gutter: {
type: Number,
2025-04-21 15:29:14 +08:00
default: 10
},
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
// 显隐数据
2026-01-28 12:21:57 +08:00
const value = ref<number[]>([])
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
const style = computed(() => {
2026-01-28 12:21:57 +08:00
const ret: Record<string, string> = {}
if (props.gutter) {
2025-04-21 15:29:14 +08:00
ret.marginRight = `${props.gutter / 2}px`
}
2025-04-21 15:29:14 +08:00
return ret
})
// 是否全选/半选 状态
const isChecked = computed({
2026-01-28 12:21:57 +08:00
get: () => Array.isArray(props.columns) ? props.columns.every((col: TableShowColumns) => col.visible) : Object.values(props.columns).every((col) => (col as TableShowColumns).visible),
2025-04-21 15:29:14 +08:00
set: () => {}
})
2026-01-28 12:21:57 +08:00
const isIndeterminate = computed(() => Array.isArray(props.columns) ? props.columns.some((col: TableShowColumns) => col.visible) && !isChecked.value : Object.values(props.columns).some((col) => (col as TableShowColumns).visible) && !isChecked.value)
const transferData = computed(() => Array.isArray(props.columns) ? props.columns.map((item: TableShowColumns, index: number) => ({ key: index, label: item.label })) : Object.keys(props.columns).map((key, index) => ({ key: index, label: props.columns[key].label })))
2021-11-30 09:55:37 +08:00
// 搜索
2026-03-19 19:42:26 +08:00
const { proxy } = getCurrentInstance()!
2026-01-28 12:21:57 +08:00
function toggleSearch(): void {
2026-03-19 19:42:26 +08:00
let el: HTMLElement | null = proxy!.$el
let formEl: HTMLElement | null = null
while ((el = el!.parentElement) && el !== document.body) {
if ((formEl = el.querySelector('.el-form'))) break
}
if (!formEl) return emits('update:showSearch', !props.showSearch)
animateSearch(formEl, props.showSearch)
}
function animateSearch(el: HTMLElement, isHide: boolean): void {
const DURATION = 260
const TRANSITION = 'max-height 0.25s ease, opacity 0.2s ease'
const clear = () => Object.assign(el.style, { transition: '', maxHeight: '', opacity: '', overflow: '' })
Object.assign(el.style, { overflow: 'hidden', transition: '' })
if (isHide) {
Object.assign(el.style, { maxHeight: el.scrollHeight + 'px', opacity: '1', transition: TRANSITION })
requestAnimationFrame(() => Object.assign(el.style, { maxHeight: '0', opacity: '0' }))
setTimeout(() => { emits('update:showSearch', false); clear() }, DURATION)
} else {
emits('update:showSearch', true)
nextTick(() => {
Object.assign(el.style, { maxHeight: '0', opacity: '0' })
requestAnimationFrame(() => requestAnimationFrame(() => {
Object.assign(el.style, { transition: TRANSITION, maxHeight: el.scrollHeight + 'px', opacity: '1' })
}))
setTimeout(clear, DURATION)
})
}
2021-11-30 09:55:37 +08:00
}
// 刷新
2026-01-28 12:21:57 +08:00
function refresh(): void {
2025-04-21 15:29:14 +08:00
emits("queryTable")
2021-11-30 09:55:37 +08:00
}
// 右侧列表元素变化
2026-01-28 12:21:57 +08:00
function dataChange(data: number[]): void {
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
2026-01-28 12:21:57 +08:00
props.columns[item].visible = !data.includes(parseInt(key))
2025-08-09 13:23:04 +08:00
}
} else {
Object.keys(props.columns).forEach((key, index) => {
props.columns[key].visible = !data.includes(index)
})
2021-11-30 09:55:37 +08:00
}
}
// 打开显隐列dialog
2026-01-28 12:21:57 +08:00
function showColumn(): void {
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
// 单勾选
2026-01-28 12:21:57 +08:00
function checkboxChange(event: boolean, key: string): void {
2025-08-09 13:23:04 +08:00
if (Array.isArray(props.columns)) {
2026-01-28 12:21:57 +08:00
const col = props.columns.filter((item: any) => item.key == key)[0]
if (col) {
col.visible = event
}
2025-08-09 13:23:04 +08:00
} else {
props.columns[key].visible = event
}
2023-12-01 12:02:01 +08:00
}
2025-04-21 15:29:14 +08:00
// 切换全选/反选
2026-01-28 12:21:57 +08:00
function toggleCheckAll(): void {
2025-04-21 15:29:14 +08:00
const newValue = !isChecked.value
2025-08-09 13:23:04 +08:00
if (Array.isArray(props.columns)) {
2026-01-28 12:21:57 +08:00
props.columns.forEach((col: TableShowColumns) => (col.visible = newValue))
2025-08-09 13:23:04 +08:00
} else {
2026-01-28 12:21:57 +08:00
Object.values(props.columns).forEach((col) => ((col as TableShowColumns).visible = newValue))
2025-08-09 13:23:04 +08:00
}
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>