fix 修复 雪花id代码内使用精度丢失问题
This commit is contained in:
@@ -218,7 +218,7 @@
|
|||||||
|
|
||||||
<el-table-column label="操作" fixed="right" width="180" class-name="small-padding fixed-width">
|
<el-table-column label="操作" fixed="right" width="180" class-name="small-padding fixed-width">
|
||||||
<template #default="scope">
|
<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
|
<el-button
|
||||||
v-hasPermi="['system:user:edit']"
|
v-hasPermi="['system:user:edit']"
|
||||||
link
|
link
|
||||||
@@ -227,7 +227,7 @@
|
|||||||
@click="handleUpdate(scope.row)"
|
@click="handleUpdate(scope.row)"
|
||||||
></el-button>
|
></el-button>
|
||||||
</el-tooltip>
|
</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
|
<el-button
|
||||||
v-hasPermi="['system:user:remove']"
|
v-hasPermi="['system:user:remove']"
|
||||||
link
|
link
|
||||||
@@ -237,7 +237,7 @@
|
|||||||
></el-button>
|
></el-button>
|
||||||
</el-tooltip>
|
</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
|
<el-button
|
||||||
v-hasPermi="['system:user:resetPwd']"
|
v-hasPermi="['system:user:resetPwd']"
|
||||||
link
|
link
|
||||||
@@ -247,7 +247,7 @@
|
|||||||
></el-button>
|
></el-button>
|
||||||
</el-tooltip>
|
</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
|
<el-button
|
||||||
v-hasPermi="['system:user:edit']"
|
v-hasPermi="['system:user:edit']"
|
||||||
link
|
link
|
||||||
|
|||||||
Reference in New Issue
Block a user