fix: 修改bug
This commit is contained in:
parent
e0c9fa623a
commit
b9850e79b9
|
@ -146,7 +146,7 @@ const instanceRef = ref()
|
|||
|
||||
const columns = [
|
||||
{
|
||||
title: 'ID',
|
||||
title: '插件ID',
|
||||
dataIndex: 'id',
|
||||
key: 'type',
|
||||
fixed: 'left',
|
||||
|
@ -167,10 +167,17 @@ const columns = [
|
|||
type: 'input',
|
||||
},
|
||||
},
|
||||
{
|
||||
title:"版本",
|
||||
dataIndex:"version",
|
||||
key:"version",
|
||||
ellipsis: true
|
||||
},
|
||||
{
|
||||
title: '插件类型',
|
||||
dataIndex: 'type',
|
||||
key: 'type',
|
||||
ellipsis: true,
|
||||
scopedSlots: true,
|
||||
search: {
|
||||
type: 'select',
|
||||
|
@ -184,7 +191,13 @@ const columns = [
|
|||
},
|
||||
},
|
||||
{
|
||||
title: '说明',
|
||||
title:"文件",
|
||||
dataIndex:"filename",
|
||||
key:'filename',
|
||||
ellipsis: true
|
||||
},
|
||||
{
|
||||
title: '描述',
|
||||
dataIndex: 'description',
|
||||
key: 'description',
|
||||
ellipsis: true,
|
||||
|
|
Loading…
Reference in New Issue