44 lines
840 B
TypeScript
44 lines
840 B
TypeScript
//import { RenderScope } from "@/components/ProTable/interface";
|
|
export const COLUMNS = [
|
|
{
|
|
align: "center",
|
|
fixed: true,
|
|
label: "ID",
|
|
prop: "id"
|
|
},
|
|
{
|
|
align: "center",
|
|
label: "图片",
|
|
prop: "image",
|
|
width: 160
|
|
},
|
|
{
|
|
align: "left",
|
|
label: "Banner名称",
|
|
prop: "title"
|
|
},
|
|
{
|
|
align: "left",
|
|
label: "Banner分类",
|
|
prop: "banner_name"
|
|
},
|
|
{
|
|
align: "left",
|
|
label: "Banner排序",
|
|
prop: "sort"
|
|
},
|
|
|
|
{
|
|
align: "left",
|
|
label: "添加时间",
|
|
prop: "created_at"
|
|
},
|
|
{
|
|
align: "center",
|
|
label: "状态",
|
|
prop: "status",
|
|
width: 80
|
|
},
|
|
{ prop: "operation", label: "操作", fixed: "right", width: 200 }
|
|
];
|