Gitiles
Code Review
Sign In
gerrit.lilingkun.com
/
G3Backend
/
7b06c6fb5d8f9627319eee5c06eb4f4fe169566b
/
.
/
react-ui
/
src
/
hooks
/
net
/
dict.ts
blob: 9c2c41c5a56da030f22835b0197d2d1e42e6d3d6 [
file
] [
log
] [
blame
]
import
{
getDictValueEnum
}
from
"@/services/system/dict"
;
export
function
useDictEnum
(
name
:
string
)
{
const
data
=
getDictValueEnum
(
name
);
return
data
;
}