会员卡收支明细

界面命名规范:/src/pages/charge/vippaycharge.vue
样式文件: /src/static/system_01/style/vippaycharge.scss

界面布局如下:


1、表头json格式如下:

{
"columns": [{
"field": "ptype",
"title": "操作类型",
"type": "text"
},
{
"field": "amount",
"title": "金额",
"type": "text"
},
{
"field": "u_createtime",
"title": "日期",
"type": "text",
"sort": true
},
{
"field": "p_pkval",
"title": "订单号",
"type": "text"
},
{
"field": "remark",
"title": "备注",
"type": "text"
}
]
}

2、表体json格式如下:

{
"list": [{
"ptype": "付款",
"amount": "123.33",
"u_createtime": "2020-08-16 11:42",
"p_pkval": "SYS223021541",
"remark": "余额支付"
},
{
"ptype": "充值",
"amount": "123.33",
"u_createtime": "2020-08-19 11:42",
"p_pkval": "",
"remark": "微信充值"
}
]
}