2 Commits

Author SHA1 Message Date
RuoYi
c922c9d68c 自动导入配置 2026-04-10 16:38:20 +08:00
RuoYi
c58a9eacde 代码生成修改拖拽时显示手指样式 2026-04-10 16:36:50 +08:00
5 changed files with 7 additions and 4 deletions

View File

@@ -311,7 +311,7 @@ import { list${BusinessName}, get${BusinessName}, del${BusinessName}, add${Busin
const { proxy } = getCurrentInstance()
#if(${dicts} != '')
#set($dictsNoSymbol=$dicts.replace("'", ""))
const { ${dictsNoSymbol} } = proxy.useDict(${dicts})
const { ${dictsNoSymbol} } = useDict(${dicts})
#end
const ${businessName}List = ref([])

View File

@@ -385,7 +385,7 @@ import { list${BusinessName}, get${BusinessName}, del${BusinessName}, add${Busin
const { proxy } = getCurrentInstance()
#if(${dicts} != '')
#set($dictsNoSymbol=$dicts.replace("'", ""))
const { ${dictsNoSymbol} } = proxy.useDict(${dicts})
const { ${dictsNoSymbol} } = useDict(${dicts})
#end
const ${businessName}List = ref([])

View File

@@ -313,7 +313,7 @@ import type { TreeSelect } from '@/types/api/common'
const { proxy } = getCurrentInstance()
#if(${dicts} != '')
#set($dictsNoSymbol=$dicts.replace("'", ""))
const { ${dictsNoSymbol} } = proxy.useDict(${dicts})
const { ${dictsNoSymbol} } = useDict(${dicts})
#end
const ${businessName}List = ref<any[]>([])

View File

@@ -390,7 +390,7 @@ import { list${BusinessName}, get${BusinessName}, del${BusinessName}, add${Busin
const { proxy } = getCurrentInstance()
#if(${dicts} != '')
#set($dictsNoSymbol=$dicts.replace("'", ""))
const { ${dictsNoSymbol} } = proxy.useDict(${dicts})
const { ${dictsNoSymbol} } = useDict(${dicts})
#end
const ${businessName}List = ref<${ClassName}[]>([])

View File

@@ -469,6 +469,9 @@
}
/* 拖拽列样式 */
.allowDrag { cursor: grab; }
.allowDrag:active { cursor: grabbing; }
.sortable-ghost {
opacity: .8;
color: #fff !important;