release(custom): i

This commit is contained in:
2023-10-10 15:16:06 +08:00
parent 5d1b96be72
commit a95a8ac0d1
50 changed files with 15273 additions and 4752 deletions

View File

@@ -22,13 +22,18 @@ const columns = ref([
align: 'center',
key: 'ID',
},
{
title: '昵称',
align: 'center',
key: 'nickName',
},
{
title: '头像',
align: 'center',
slot: 'avatar',
slot: 'avatarUrl',
render(row) {
return h('img', {
src: row.avatar,
src: row.avatarUrl,
style: {
width: '30px',
height: '30px',
@@ -52,14 +57,14 @@ const columns = ref([
align: 'center',
key: 'pulse',
},
{
title: '操作',
align: 'center',
slot: 'action',
render(row) {
console.log(row)
},
},
// {
// title: '操作',
// align: 'center',
// slot: 'action',
// render(row) {
// console.log(row)
// },
// },
])
const data = ref([])

View File

@@ -5,6 +5,11 @@ export default {
path: '/user',
component: Layout,
redirect: '/user_list',
meta: {
title: '用户管理',
icon: 'mdi:account-multiple',
order: 10,
},
children: [
{
name: 'Userlist',