diff --git a/src/pages/plan/key/detail/list.js b/src/pages/plan/key/detail/list.js index f0da339b..354f8f4d 100644 --- a/src/pages/plan/key/detail/list.js +++ b/src/pages/plan/key/detail/list.js @@ -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", diff --git a/src/pages/plan/key/list.js b/src/pages/plan/key/list.js index 74066613..5f600264 100644 --- a/src/pages/plan/key/list.js +++ b/src/pages/plan/key/list.js @@ -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", diff --git a/src/pages/plan/list/list.js b/src/pages/plan/list/list.js index 37a39f6d..c6dd3cae 100644 --- a/src/pages/plan/list/list.js +++ b/src/pages/plan/list/list.js @@ -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",