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>
|
||||
</div>
|
||||
<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
|
||||
v-for="item in columns"
|
||||
:key="item.key"
|
||||
@@ -100,7 +100,6 @@ function toggleSelectAll(checked: boolean) {
|
||||
</div>
|
||||
<ButtonIcon
|
||||
:disabled="!item.checked"
|
||||
text
|
||||
:focusable="false"
|
||||
:tooltip-content="$t(tooltipRecord[item.fixed!])"
|
||||
@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 = {
|
||||
query?: Record<string, string>;
|
||||
params?: Record<string, string>;
|
||||
force?: boolean;
|
||||
};
|
||||
|
||||
/** The global header props */
|
||||
|
||||
Reference in New Issue
Block a user