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

File diff suppressed because it is too large Load Diff