v1_2_5key批次列表统计字段和计划统计字段
This commit is contained in:
parent
3a435fa96f
commit
cd7694ec73
|
@ -407,40 +407,47 @@ export default class acclist extends React.Component {
|
|||
width: "auto",
|
||||
},
|
||||
{
|
||||
title: "总发放条数",
|
||||
title: "发放总数",
|
||||
prop: "total",
|
||||
name: "total",
|
||||
width: "auto",
|
||||
type: "normal",
|
||||
},
|
||||
{
|
||||
title: "剩余条数",
|
||||
title: "剩余总数",
|
||||
prop: "residue",
|
||||
name: "residue",
|
||||
width: "auto",
|
||||
type: "normal",
|
||||
},
|
||||
{
|
||||
title: "已使用条数",
|
||||
title: "使用总数",
|
||||
name: "usage",
|
||||
prop: "usage",
|
||||
type: "normal",
|
||||
width: "auto",
|
||||
},
|
||||
{
|
||||
title: "已过期条数",
|
||||
title: "失效总数",
|
||||
name: "overdue",
|
||||
prop: "overdue",
|
||||
type: "normal",
|
||||
width: "auto",
|
||||
},
|
||||
{
|
||||
title: "已作废条数",
|
||||
title: "作废总数",
|
||||
name: "invalid",
|
||||
prop: "invalid",
|
||||
type: "normal",
|
||||
width: "auto",
|
||||
},
|
||||
{
|
||||
title: "已完结总数",
|
||||
name: "end",
|
||||
prop: "end",
|
||||
type: "normal",
|
||||
width: "auto",
|
||||
},
|
||||
{
|
||||
title: "更新时间",
|
||||
name: "update_time",
|
||||
|
|
|
@ -95,7 +95,7 @@ const Column = [
|
|||
width: "100px",
|
||||
},
|
||||
{
|
||||
title: "发放key总数",
|
||||
title: "发放key码总数",
|
||||
name: "grant",
|
||||
type: "normal",
|
||||
prop: "grant",
|
||||
|
@ -109,26 +109,40 @@ const Column = [
|
|||
width: "120px",
|
||||
},
|
||||
{
|
||||
title: "已使用key总数",
|
||||
title: "使用key码总数",
|
||||
name: "usage",
|
||||
type: "normal",
|
||||
prop: "usage",
|
||||
width: "120px",
|
||||
},
|
||||
{
|
||||
title: "已作废key总数",
|
||||
title: "作废key码总数",
|
||||
name: "invalid",
|
||||
type: "normal",
|
||||
prop: "invalid",
|
||||
width: "120px",
|
||||
},
|
||||
{
|
||||
title: "沉默总数",
|
||||
title: "可用key码总数",
|
||||
name: "silent",
|
||||
type: "normal",
|
||||
prop: "silent",
|
||||
width: "140px",
|
||||
},
|
||||
{
|
||||
title: "失效key码总数",
|
||||
name: "overdue",
|
||||
type: "normal",
|
||||
prop: "overdue",
|
||||
width: "140px",
|
||||
},
|
||||
{
|
||||
title: "完结key码总数",
|
||||
name: "end",
|
||||
type: "normal",
|
||||
prop: "end",
|
||||
width: "140px",
|
||||
},
|
||||
// {
|
||||
// title: "发放总价(预估)",
|
||||
// name: "grant_total",
|
||||
|
|
|
@ -610,7 +610,7 @@ export default class acclist extends React.Component {
|
|||
width: "auto",
|
||||
},
|
||||
{
|
||||
title: "发放key总数",
|
||||
title: "发放key码总数",
|
||||
name: "grant",
|
||||
type: "normal",
|
||||
prop: "grant",
|
||||
|
@ -624,26 +624,40 @@ export default class acclist extends React.Component {
|
|||
width: "auto",
|
||||
},
|
||||
{
|
||||
title: "已使用总数",
|
||||
title: "使用key码总数",
|
||||
name: "usage",
|
||||
type: "normal",
|
||||
prop: "usage",
|
||||
width: "auto",
|
||||
},
|
||||
{
|
||||
title: "已作废key总数",
|
||||
title: "失效key码总数",
|
||||
name: "overdue",
|
||||
type: "normal",
|
||||
prop: "overdue",
|
||||
width: "auto",
|
||||
},
|
||||
{
|
||||
title: "作废key码总数",
|
||||
name: "invalid",
|
||||
type: "normal",
|
||||
prop: "invalid",
|
||||
width: "auto",
|
||||
},
|
||||
{
|
||||
title: "沉默总数",
|
||||
title: "可用key码总数",
|
||||
name: "silent",
|
||||
type: "normal",
|
||||
prop: "silent",
|
||||
width: "auto",
|
||||
},
|
||||
{
|
||||
title: "完结key码总数",
|
||||
name: "end",
|
||||
type: "normal",
|
||||
prop: "end",
|
||||
width: "auto",
|
||||
},
|
||||
// {
|
||||
// title: "发放总价(预估)",
|
||||
// name: "grant_total",
|
||||
|
|
Loading…
Reference in New Issue