|
@@ -38,6 +38,9 @@
|
|
|
<template #status-column-value="{scope}">
|
|
|
{{DictionaryStore.userStatusMap.get(scope.row.status)}}
|
|
|
</template>
|
|
|
+ <template #isAdmin-column-value="{scope}">
|
|
|
+ {{String(scope.row.isAdmin) == 'true' ? '是' : '否'}}
|
|
|
+ </template>
|
|
|
<template #do-column-value="{scope}">
|
|
|
<CusButton type="table-edit" @click="onEdit(scope.row)"/>
|
|
|
<CusButton type="table-del" @click="onDel(scope.row)"/>
|
|
@@ -74,6 +77,7 @@ const state: any = reactive({
|
|
|
{value: "username", label: "账号", fixed: 'left'},
|
|
|
{value: "nickName", label: "用户名", fixed: 'left'},
|
|
|
{value: "status", label: "状态"},
|
|
|
+ {value: "isAdmin", label: "管理员"},
|
|
|
{value: "createTime", label: "创建时间", width: 200},
|
|
|
{value: "createByName", label: "创建人"},
|
|
|
{value: "updateTime", label: "最后修改时间", width: 200},
|