Files
orico-officialWebsite-ts-admin/src/views/productManagement/recommendation/constant/table.ts

58 lines
1023 B
TypeScript

export const COLUMNS = [
{
align: "center",
fixed: true,
label: "ID",
prop: "id",
width: 80
},
{
align: "center",
label: "图片",
prop: "image",
width: 160
},
{
align: "left",
label: "分类名称",
prop: "category_name"
},
{
align: "left",
label: "产品介绍",
prop: "desc"
},
{
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"
},
// {
// align: "center",
// label: "状态",
// prop: "status",
// width: 80
// },
{ prop: "operation", label: "操作", fixed: "right", width: 200 }
];