mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2026-02-07 15:51:23 +08:00
Compare commits
3 Commits
dacee143c0
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a37949f2af | ||
|
|
54107acaac | ||
|
|
cbfb932f8e |
@@ -82,7 +82,7 @@ function toggleSelectAll(checked: boolean) {
|
|||||||
</NCheckbox>
|
</NCheckbox>
|
||||||
</div>
|
</div>
|
||||||
<NDivider class="!my-4px" />
|
<NDivider class="!my-4px" />
|
||||||
<VueDraggable v-model="columns" :animation="150" filter=".none_draggable">
|
<VueDraggable v-model="columns" :animation="150" filter=".none_draggable" class="max-h-[200px] overflow-y-auto">
|
||||||
<div
|
<div
|
||||||
v-for="item in columns"
|
v-for="item in columns"
|
||||||
:key="item.key"
|
:key="item.key"
|
||||||
@@ -100,7 +100,6 @@ function toggleSelectAll(checked: boolean) {
|
|||||||
</div>
|
</div>
|
||||||
<ButtonIcon
|
<ButtonIcon
|
||||||
:disabled="!item.checked"
|
:disabled="!item.checked"
|
||||||
text
|
|
||||||
:focusable="false"
|
:focusable="false"
|
||||||
:tooltip-content="$t(tooltipRecord[item.fixed!])"
|
:tooltip-content="$t(tooltipRecord[item.fixed!])"
|
||||||
@click="handleFixed(item)"
|
@click="handleFixed(item)"
|
||||||
|
|||||||
1
src/typings/app.d.ts
vendored
1
src/typings/app.d.ts
vendored
@@ -196,6 +196,7 @@ declare namespace App {
|
|||||||
type RouterPushOptions = {
|
type RouterPushOptions = {
|
||||||
query?: Record<string, string>;
|
query?: Record<string, string>;
|
||||||
params?: Record<string, string>;
|
params?: Record<string, string>;
|
||||||
|
force?: boolean;
|
||||||
};
|
};
|
||||||
|
|
||||||
/** The global header props */
|
/** The global header props */
|
||||||
|
|||||||
Reference in New Issue
Block a user