Commit 5ea76f78 by ddx

c

parent 8f7e07aa
......@@ -200,6 +200,25 @@ function queryPageList() {
}
}
},
{field: '', title: 'token标志', formatter: function(value, row, index) {
var tokenStatus = row['tokenStatus'];
if (tokenStatus === '1') {
return '是';
} else {
return '否';
}
}
},
{field: '', title: 'token时间', formatter: function(value, row, index) {
var tokenResDate = row["tokenResDate"];
if (tokenResDate === undefined) {
return '-';
}
return new Date(tokenResDate).format('yyyy-MM-dd HH:mm:ss');
}
},
{field: 'loginType', title: '服务种类'},
{field: 'userGroupName', title: '登录名称'},
{field: 'hzqrFlag', title: '是否汇总'},
{field: 'ztaxno', title: '总税号'}
]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment