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.
46 lines
703 B
46 lines
703 B
export const formItem = [
|
|
{
|
|
type: 'input',
|
|
label:'费用名称',
|
|
prop:'name',
|
|
placeholder:'请输入'
|
|
},
|
|
]
|
|
export const columns = [
|
|
{
|
|
title: "费用名称",
|
|
dataIndex: "name",
|
|
},
|
|
{
|
|
title: "计费方式",
|
|
dataIndex: "feetype",
|
|
},
|
|
{
|
|
title: "计量方式",
|
|
dataIndex: "type",
|
|
},
|
|
{
|
|
title: "单价",
|
|
dataIndex: "price",
|
|
},
|
|
{
|
|
title: "单位",
|
|
dataIndex: "unit",
|
|
},
|
|
{
|
|
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,
|
|
} |