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.
96 lines
1.7 KiB
96 lines
1.7 KiB
//用来存储表头的js文件
|
|
import { Button, message } from "antd";
|
|
import React from "react";
|
|
//车辆绑定记录表头
|
|
export const bindColumns = [
|
|
{
|
|
title: "绑定用户手机",
|
|
dataIndex: "mobile",
|
|
key: "mobile",
|
|
width: 200,
|
|
align: "center",
|
|
},
|
|
{
|
|
title: "绑定时间",
|
|
dataIndex: "bind_time",
|
|
key: "bind_time",
|
|
align: "center",
|
|
},
|
|
{
|
|
title: "解绑时间",
|
|
dataIndex: "unbind_time",
|
|
key: "unbind_time",
|
|
align: "center",
|
|
},
|
|
{
|
|
title: "认证状态",
|
|
dataIndex: "authStateName",
|
|
key: "authStateName",
|
|
align: "center",
|
|
},
|
|
];
|
|
|
|
//车辆信息修改记录表头
|
|
export const modiColumns = [
|
|
{
|
|
title: "修改类型",
|
|
dataIndex: "type_name",
|
|
key: "type_name",
|
|
align: "center",
|
|
},
|
|
{
|
|
title: "修改内容",
|
|
dataIndex: "context",
|
|
key: "context",
|
|
align: "center",
|
|
},
|
|
{
|
|
title: "操作人",
|
|
dataIndex: "name",
|
|
key: "name",
|
|
align: "center",
|
|
},
|
|
{
|
|
title: "修改时间",
|
|
dataIndex: "update_time",
|
|
key: "update_time",
|
|
align: "center",
|
|
},
|
|
];
|
|
|
|
//退款尝试详情表头
|
|
export const formRefundColumns = [
|
|
{
|
|
title: "序号",
|
|
dataIndex: "mobile",
|
|
key: "mobile",
|
|
width: 200,
|
|
align: "center",
|
|
render: (text, record, index) => index + 1,
|
|
width: 100,
|
|
},
|
|
{
|
|
title: "退款金额(元)",
|
|
dataIndex: "refund_amonut",
|
|
key: "refund_amonut",
|
|
align: "center",
|
|
},
|
|
{
|
|
title: "尝试时间",
|
|
dataIndex: "try_time",
|
|
key: "try_time",
|
|
align: "center",
|
|
},
|
|
{
|
|
title: "操作人",
|
|
dataIndex: "user_name",
|
|
key: "user_name",
|
|
align: "center",
|
|
},
|
|
{
|
|
title: "结果",
|
|
dataIndex: "refund_result",
|
|
key: "refund_result",
|
|
align: "center",
|
|
},
|
|
];
|