!597 fix-雪花算法ID精度丢失

Merge pull request !597 from shixiaohe/master
This commit is contained in:
芋道源码
2024-11-26 00:33:21 +00:00
committed by Gitee
4 changed files with 4 additions and 4 deletions

View File

@ -113,7 +113,7 @@ const getUserData = async (id: number) => {
const { currentRoute } = useRouter() // 路由
const { delView } = useTagsViewStore() // 视图操作
const route = useRoute()
const id = Number(route.params.id)
const id = route.params.id
/* 用户钱包相关信息 */
const WALLET_INIT_DATA = {
balance: 0,