Gitiles
Code Review
Sign In
gerrit.lilingkun.com
/
G3Backend
/
ec55c5418646327fb77c2ba19ae17958a8229ea6
/
.
/
react-ui
/
src
/
hooks
/
net
/
dict.ts
blob: 9c2c41c5a56da030f22835b0197d2d1e42e6d3d6 [
file
] [
log
] [
blame
]
86133
aaa3f5d
2025-04-20 21:33:29 +0800
[
diff
] [
blame
]
1
import
{
getDictValueEnum
}
from
"@/services/system/dict"
;
2
3
export
function
useDictEnum
(
name
:
string
)
4
{
5
const
data
=
getDictValueEnum
(
name
);
6
return
data
;
7
}