Files
orico-officialWebsite-ts-admin/src/views/productManagement/compatibility/constant/table.ts
2026-07-09 11:39:00 +08:00

93 lines
1.6 KiB
TypeScript

export const COLUMNS = [
{
align: "center",
fixed: true,
label: "ID",
prop: "id",
width: 80
},
{
align: "left",
label: "标签名称",
prop: "label_name",
width: 200,
fixed: true
},
{
align: "left",
label: "配件类型",
prop: "part_name",
width: 200,
fixed: true
},
{
align: "left",
label: "品牌",
prop: "brand_name",
width: 200,
fixed: true
},
{
align: "left",
label: "级别",
prop: "level_name",
width: 160
},
{
align: "left",
label: "系列",
prop: "series_name",
width: 200
},
{
align: "left",
label: "型号",
prop: "model",
width: 200
},
{
align: "left",
label: "容量",
prop: "capacity",
width: 160
},
{
align: "left",
label: "接口型号",
prop: "interface_type",
width: 200
},
{
align: "left",
label: "兼容性状态",
prop: "compat_status",
width: 160
},
{
align: "left",
label: "排序",
prop: "sort",
width: 160
},
{
align: "left",
label: "使用状态",
prop: "disabled",
width: 160
},
{
align: "left",
label: "创建时间",
prop: "created_at"
},
{
align: "left",
label: "更新时间",
prop: "updated_at"
},
{ prop: "operation", label: "操作", fixed: "right", width: 200 }
];