2025-03-26
This commit is contained in:
38
src/views/bannerManagement/list/constant/table.ts
Normal file
38
src/views/bannerManagement/list/constant/table.ts
Normal file
@@ -0,0 +1,38 @@
|
||||
//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"
|
||||
},
|
||||
|
||||
{ prop: "operation", label: "操作", fixed: "right", width: 200 }
|
||||
];
|
||||
Reference in New Issue
Block a user