mirror of https://github.com/halo-dev/halo-admin
链接增加排序
parent
652398b14e
commit
add16cece3
|
@ -29,6 +29,12 @@
|
||||||
>
|
>
|
||||||
<a-input v-model="link.team" />
|
<a-input v-model="link.team" />
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
|
<a-form-item label="排序编号:">
|
||||||
|
<a-input
|
||||||
|
type="number"
|
||||||
|
v-model="link.priority"
|
||||||
|
/>
|
||||||
|
</a-form-item>
|
||||||
<a-form-item label="描述:">
|
<a-form-item label="描述:">
|
||||||
<a-input
|
<a-input
|
||||||
type="textarea"
|
type="textarea"
|
||||||
|
@ -129,6 +135,10 @@ const columns = [
|
||||||
title: '分组',
|
title: '分组',
|
||||||
dataIndex: 'team'
|
dataIndex: 'team'
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: '排序',
|
||||||
|
dataIndex: 'priority'
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: '操作',
|
title: '操作',
|
||||||
key: 'action',
|
key: 'action',
|
||||||
|
|
Loading…
Reference in New Issue