feat: 🚀 nav迭代(产品推荐和商场入口)
This commit is contained in:
45
src/views/webManagement/commodity/constant/table.ts
Normal file
45
src/views/webManagement/commodity/constant/table.ts
Normal file
@@ -0,0 +1,45 @@
|
||||
export const COLUMNS = [
|
||||
{
|
||||
align: "center",
|
||||
fixed: true,
|
||||
label: "ID",
|
||||
prop: "id",
|
||||
width: 80
|
||||
},
|
||||
{
|
||||
align: "center",
|
||||
label: "图片",
|
||||
prop: "image",
|
||||
width: 160
|
||||
},
|
||||
{
|
||||
align: "left",
|
||||
label: "商城名称",
|
||||
prop: "name"
|
||||
},
|
||||
{
|
||||
align: "left",
|
||||
label: "链接地址",
|
||||
prop: "link"
|
||||
},
|
||||
{
|
||||
align: "left",
|
||||
label: "排序",
|
||||
prop: "sort",
|
||||
width: 160
|
||||
},
|
||||
{
|
||||
align: "left",
|
||||
label: "状态",
|
||||
prop: "disabled",
|
||||
width: 160
|
||||
},
|
||||
|
||||
{
|
||||
align: "left",
|
||||
label: "添加时间",
|
||||
prop: "created_at"
|
||||
},
|
||||
|
||||
{ prop: "operation", label: "操作", fixed: "right", width: 200 }
|
||||
];
|
||||
Reference in New Issue
Block a user