Compare commits

..

3 Commits

Author SHA1 Message Date
Teng bfbaed7f15 合并 2025-11-18 16:10:20 +08:00
Teng 12c6f9312d 合并 2025-11-18 16:10:08 +08:00
Teng c5266e9d7b 合并 2025-11-18 15:59:01 +08:00
2 changed files with 2847 additions and 1905 deletions

View File

@ -1,7 +1,6 @@
<template> <template>
<view v-if="visible" class="overlay" @touchmove.prevent.self> <view v-if="visible" class="overlay">
<view class="box" :style="boxStyle" @touchstart.stop.prevent="onDragStartTouch" <view class="box" :style="boxStyle" >
@mousedown.stop.prevent="onDragStartMouse">
<view class="header" ref="headerRef"> <view class="header" ref="headerRef">
<view class="title">{{ title }}</view> <view class="title">{{ title }}</view>
<view class="actions"> <view class="actions">
@ -349,6 +348,7 @@
} }
function confirm() { function confirm() {
console.log("111")
const result = selectedIndexes.value.map((idx, ci) => { const result = selectedIndexes.value.map((idx, ci) => {
const col = rawColumns.value[ci] || []; const col = rawColumns.value[ci] || [];
const display = (displayColumns.value[ci] && displayColumns.value[ci][idx] !== undefined) ? const display = (displayColumns.value[ci] && displayColumns.value[ci][idx] !== undefined) ?
@ -360,6 +360,7 @@
display display
}; };
}); });
emit('confirm', result); emit('confirm', result);
visible.value = false; visible.value = false;
} }

File diff suppressed because it is too large Load Diff