管理界面完善4.

This commit is contained in:
妖姐 2024-01-22 17:24:31 +08:00
parent 0de58fbbe8
commit cadf7ba10c
2 changed files with 16 additions and 9 deletions

View File

@ -150,9 +150,16 @@ const columns = reactive( [
width: 60, width: 60,
align: "center" align: "center"
}, },
{
title: "ID",
key: "id",
width: 80,
align: "center"
},
{ {
title: "角色", title: "角色",
key: "roleName", key: "roleName",
width: 150,
align: "center" align: "center"
}, },
{ {
@ -162,20 +169,20 @@ const columns = reactive( [
align: "center" align: "center"
}, },
{ {
title: "电话", title: "创建日期",
key: "phone", key: "createdAt",
width: 125,
align: "center" align: "center"
}, },
{ {
title: "邮箱", title: "更新日期",
key: "email", key: "updatedAt",
align: "center" align: "center"
}, },
{ {
title: "状态", title: "状态",
slot: "status", slot: "status",
width: 80, width: 100,
align: "center", align: "center",
}, },
{ {

View File

@ -163,13 +163,13 @@ const columns = reactive( [
{ {
title: "账号", title: "账号",
key: "jobId", key: "jobId",
width: 125, width: 150,
align: "center" align: "center"
}, },
{ {
title: "电话", title: "电话",
key: "phone", key: "phone",
width: 125, width: 150,
align: "center" align: "center"
}, },
{ {
@ -180,7 +180,7 @@ const columns = reactive( [
{ {
title: "状态", title: "状态",
slot: "status", slot: "status",
width: 80, width: 100,
align: "center", align: "center",
}, },
{ {