You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
467 B
30 lines
467 B
export const formItem = [
|
|
{
|
|
type: 'input',
|
|
label:'',
|
|
prop:'',
|
|
placeholder:'请输入'
|
|
},
|
|
]
|
|
export const columns = [
|
|
{
|
|
title: "",
|
|
dataIndex: "",
|
|
},
|
|
{
|
|
title: "操作",
|
|
dataIndex: "action",
|
|
key: "action",
|
|
width: "180",
|
|
fixed: "right",
|
|
scopedSlots: { customRender: "action" },
|
|
},
|
|
]
|
|
export const pagination = {
|
|
current: 1,
|
|
total: 0,
|
|
pageSize: 10,
|
|
showTotal: (total) => `共 ${total} 条`,
|
|
showSizeChanger: true,
|
|
showQuickJumper: true,
|
|
} |