|
|
|
@ -210,47 +210,47 @@ class SaleStore {
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "首次回复率",
|
|
|
|
|
children: [{ title: "", dataIndex: "firstReplayRate" }],
|
|
|
|
|
children: [{ title: "", dataIndex: "firstReplayRate", render: (text, record) => <span title={record.firstReplay + "回复数/" + record.OrderCount + "总订单"}>{text}</span> }],
|
|
|
|
|
sorter: (a, b) => parseInt(b.firstReplayRate) - parseInt(a.firstReplayRate),
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "一次报价率",
|
|
|
|
|
children: [{ title: '', dataIndex: "FirstQuotationRate" }],
|
|
|
|
|
sorter: (a, b) => b.FirstQuotationRate - a.FirstQuotationRate,
|
|
|
|
|
children: [{ title: "", dataIndex: "FirstQuotationRate", render: (text, record) => <span title={record.FirstQuotation + "一次报价数/" + record.OrderCount + "总订单"}>{text}</span> }],
|
|
|
|
|
sorter: (a, b) => parseInt(b.FirstQuotationRate) - parseInt(a.FirstQuotationRate),
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "一次报价回复率",
|
|
|
|
|
children: [{ title: '', dataIndex: "FirstQuotationReplayRate" }],
|
|
|
|
|
sorter: (a, b) => b.FirstQuotationReplayRate - a.FirstQuotationReplayRate,
|
|
|
|
|
children: [{ title: "", dataIndex: "FirstQuotationReplayRate", render: (text, record) => <span title={record.FirstQuotationReplay + "一次报价回复数/" + record.FirstQuotation + "一次报价数"}>{text}</span> }],
|
|
|
|
|
sorter: (a, b) => parseInt(b.FirstQuotationReplayRate) - parseInt(a.FirstQuotationReplayRate),
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "一次报价回复周期",
|
|
|
|
|
children: [{ title: '', dataIndex: "FirstQuotationReplaytimeAVG" }],
|
|
|
|
|
children: [{ title: "", dataIndex: "FirstQuotationReplaytimeAVG" }],
|
|
|
|
|
sorter: (a, b) => b.FirstQuotationReplaytimeAVG - a.FirstQuotationReplaytimeAVG,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "二次报价率",
|
|
|
|
|
children: [{ title: '', dataIndex: "SecondQuotationRate" }],
|
|
|
|
|
sorter: (a, b) => b.SecondQuotationRate - a.SecondQuotationRate,
|
|
|
|
|
children: [{ title: "", dataIndex: "SecondQuotationRate", render: (text, record) => <span title={record.SecondQuotation + "二次报价数/" + record.FirstQuotationReplay + "一次报价回复数"}>{text}</span> }],
|
|
|
|
|
sorter: (a, b) => parseInt(b.SecondQuotationRate) - parseInt(a.SecondQuotationRate),
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "二次报价回复率",
|
|
|
|
|
children: [{ title: '', dataIndex: "SecondQuotationReplayRate" }],
|
|
|
|
|
sorter: (a, b) => b.SecondQuotationReplayRate - a.SecondQuotationReplayRate,
|
|
|
|
|
children: [{ title: "", dataIndex: "SecondQuotationReplayRate", render: (text, record) => <span title={record.SecondQuotation + "二次报价数/" + record.SecondQuotationReplay + "二次报价回复"}>{text}</span> }],
|
|
|
|
|
sorter: (a, b) => parseInt(b.SecondQuotationReplayRate) - parseInt(a.SecondQuotationReplayRate),
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "二次报价回复周期",
|
|
|
|
|
children: [{ title: '', dataIndex: "SecondQuotationReplaytimeAVG" }],
|
|
|
|
|
children: [{ title: "", dataIndex: "SecondQuotationReplaytimeAVG" }],
|
|
|
|
|
sorter: (a, b) => b.SecondQuotationReplaytimeAVG - a.SecondQuotationReplaytimeAVG,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "成团率",
|
|
|
|
|
children: [{ title: '', dataIndex: "COLI_SuccessRate" }],
|
|
|
|
|
sorter: (a, b) => b.COLI_SuccessRate - a.COLI_SuccessRate,
|
|
|
|
|
children: [{ title: "", dataIndex: "COLI_SuccessRate" }],
|
|
|
|
|
sorter: (a, b) => parseInt(b.COLI_SuccessRate) - parseInt(a.COLI_SuccessRate),
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "成团周期",
|
|
|
|
|
children: [{ title: '', dataIndex: "COLI_ConfirmTimeAVG" }],
|
|
|
|
|
children: [{ title: "", dataIndex: "COLI_ConfirmTimeAVG" }],
|
|
|
|
|
sorter: (a, b) => b.COLI_ConfirmTimeAVG - a.COLI_ConfirmTimeAVG,
|
|
|
|
|
},
|
|
|
|
|
];
|
|
|
|
|