Compare commits

..

No commits in common. "bfbaed7f1513800a258767c3c9a05c679fa22524" and "dc3bb2e04c159ede9d189d99c2dd1891d7ebd865" have entirely different histories.

2 changed files with 1913 additions and 2855 deletions

View File

@ -1,6 +1,7 @@
<template> <template>
<view v-if="visible" class="overlay"> <view v-if="visible" class="overlay" @touchmove.prevent.self>
<view class="box" :style="boxStyle" > <view class="box" :style="boxStyle" @touchstart.stop.prevent="onDragStartTouch"
@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">
@ -348,7 +349,6 @@
} }
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,7 +360,6 @@
display display
}; };
}); });
emit('confirm', result); emit('confirm', result);
visible.value = false; visible.value = false;
} }

File diff suppressed because it is too large Load Diff