fix 修复 雪花id代码内使用精度丢失问题

This commit is contained in:
疯狂的狮子Li
2026-05-22 16:05:04 +08:00
parent 04ed7bf7a7
commit 2d41047330
+4 -4
View File
@@ -218,7 +218,7 @@
<el-table-column label="操作" fixed="right" width="180" class-name="small-padding fixed-width">
<template #default="scope">
<el-tooltip v-if="scope.row.userId !== 1761100000000000001" content="修改" placement="top">
<el-tooltip v-if="scope.row.userId !== '1761100000000000001'" content="修改" placement="top">
<el-button
v-hasPermi="['system:user:edit']"
link
@@ -227,7 +227,7 @@
@click="handleUpdate(scope.row)"
></el-button>
</el-tooltip>
<el-tooltip v-if="scope.row.userId !== 1761100000000000001" content="删除" placement="top">
<el-tooltip v-if="scope.row.userId !== '1761100000000000001'" content="删除" placement="top">
<el-button
v-hasPermi="['system:user:remove']"
link
@@ -237,7 +237,7 @@
></el-button>
</el-tooltip>
<el-tooltip v-if="scope.row.userId !== 1761100000000000001" content="重置密码" placement="top">
<el-tooltip v-if="scope.row.userId !== '1761100000000000001'" content="重置密码" placement="top">
<el-button
v-hasPermi="['system:user:resetPwd']"
link
@@ -247,7 +247,7 @@
></el-button>
</el-tooltip>
<el-tooltip v-if="scope.row.userId !== 1761100000000000001" content="分配角色" placement="top">
<el-tooltip v-if="scope.row.userId !== '1761100000000000001'" content="分配角色" placement="top">
<el-button
v-hasPermi="['system:user:edit']"
link