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">
|
||||
<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
|
||||
|
||||
Reference in New Issue
Block a user