diff --git a/components.d.ts b/components.d.ts
index c69eab31..3e725e7c 100644
--- a/components.d.ts
+++ b/components.d.ts
@@ -10,6 +10,5 @@ declare module '@vue/runtime-core' {
RayTransitionComponent: typeof import('./src/components/RayTransitionComponent/index.vue')['default']
RouterLink: typeof import('vue-router')['RouterLink']
RouterView: typeof import('vue-router')['RouterView']
- TableSetting: typeof import('./src/components/RayTable/src/components/TableSetting/index.vue')['default']
}
}
diff --git a/src/components/RayTable/src/components/TableSetting/hook.ts b/src/components/RayTable/src/components/TableSetting/hook.ts
new file mode 100644
index 00000000..5314b758
--- /dev/null
+++ b/src/components/RayTable/src/components/TableSetting/hook.ts
@@ -0,0 +1,19 @@
+import type { ActionOptions } from '@/components/RayTable/src/type'
+
+export const setupSettingOptions = (options: ActionOptions[]) => {
+ const arr = options.map((curr) => {
+ if (curr.fixed) {
+ curr.fixed === 'right'
+ ? (curr.rightFixedActivated = true)
+ : (curr.leftFixedActivated = true)
+ }
+
+ if (curr.resizable) {
+ curr.resizeColumnActivated = true
+ }
+
+ return curr
+ })
+
+ return arr
+}
diff --git a/src/components/RayTable/src/components/TableSetting/index.scss b/src/components/RayTable/src/components/TableSetting/index.scss
index 961a9b36..222251ea 100644
--- a/src/components/RayTable/src/components/TableSetting/index.scss
+++ b/src/components/RayTable/src/components/TableSetting/index.scss
@@ -2,10 +2,15 @@ $iconSpace: 5px;
$width: 140px;
$activedColor: #2080f0;
+.ray-table__setting:hover {
+ transform: rotate(180deg);
+ transition: transform 0.3s var(--r-bezier);
+}
+
.ray-table__setting-option--draggable {
display: grid;
grid-template-columns: repeat(1, $width);
- grid-gap: 10px 0;
+ grid-row-gap: 10px;
justify-items: center;
align-items: center;
justify-content: center;
diff --git a/src/components/RayTable/src/components/TableSetting/index.tsx b/src/components/RayTable/src/components/TableSetting/index.tsx
index a3d06b07..ecec51ce 100644
--- a/src/components/RayTable/src/components/TableSetting/index.tsx
+++ b/src/components/RayTable/src/components/TableSetting/index.tsx
@@ -13,11 +13,13 @@ import './index.scss'
import { NCard, NPopover, NEllipsis, NCheckbox } from 'naive-ui'
import RayIcon from '@/components/RayIcon/index'
import VueDraggable from 'vuedraggable'
+import { setupSettingOptions } from './hook'
import type {
RayTableProvider,
- SettingOptions,
ActionOptions,
+ FixedType,
+ TableSettingFixedPopoverIcon,
} from '@/components/RayTable/src/type'
const TableSetting = defineComponent({
@@ -25,30 +27,59 @@ const TableSetting = defineComponent({
emits: ['columnsUpdate'],
setup(_, { emit }) {
const rayTableProvider = inject('rayTableProvider', {} as RayTableProvider)
- const settingOptions = ref(rayTableProvider.modelColumns.value) // 表格表头
+ const settingOptions = ref(
+ setupSettingOptions(rayTableProvider.modelColumns.value),
+ ) // 表格表头
const disableDraggable = ref(true) // 拖拽开关
const handleDraggableEnd = () => {
emit('columnsUpdate', settingOptions.value)
}
+ const FixedPopoverIcon = (options: TableSettingFixedPopoverIcon) => {
+ const { element, name, tooltip, fn, index, fixed, key } = options
+
+ return (
+
- 使用响应式方法代理 columns 并且打开 action 则可以启用操作栏 + 使用响应式方法代理 columns 并且打开 action + 则可以启用操作栏(v-model:columns)
拖拽操作栏动态切换表格列
点击左右固定按钮, 即可动态固定列
+点击修改列宽度, 即可拖动列修改宽度