Authored by mali

隐藏卖家的敏感信息

... ... @@ -116,11 +116,11 @@ public class TradeBillsServiceImpl implements ITradeBillsService {
for(StoredSeller item : ls) {
StoredSellerRespVo resp=new StoredSellerRespVo();
resp.setUid(item.getUid());
resp.setCertName(item.getCertName());
resp.setCertName("-"); // 公司要求隐藏真实姓名 item.getCertName()
resp.setCertNo(KeyWordHiddenUtil.hiddenKeyWord(item.getCertNo(), 2, 2));
resp.setValidStatus(item.getValidStatus());
resp.setValidStatusDesc(StoredSellerStatusEnum.getDescriptionByCode(item.getValidStatus()));
resp.setMobile(getMobileByUidFromCache(item.getUid()));
resp.setMobile("-"); // 公司要求隐藏卖家手机号 getMobileByUidFromCache(item.getUid())
// 之前fore项目有bug,导致enterTime被更新成0了,如果为0,则去createTime作为入驻时间
if(item.getEnterTime()==0){
resp.setEnterTime(1000L * item.getCreateTime());
... ...
... ... @@ -152,7 +152,10 @@ function getTradeBillsList(){
title: "用户手机号",
field: "mobile",
width: 30,
align: "center"
align: "center",
formatter: function (value, rowData) {
return "-" //公司要求隐藏卖家敏感信息
}
} ,{
title: "打款时间",
field: "createTimeStr",
... ...
... ... @@ -148,7 +148,8 @@
align: "center",
rowspan:2,
formatter: function (value, rowData) {
return decodeURI(sysParam[1]);
//return decodeURI(sysParam[1]); 公司要求隐藏卖家敏感信息
return "-"
}
}, {
title: "时间",
... ...
... ... @@ -59,7 +59,10 @@
title: "商家名称",
field: "merchantName",
width: 80,
align: "center"
align: "center",
formatter: function (value) {
return "-";
}
}, {
title: "账户保证金",
field: "accountAmount",
... ...
... ... @@ -69,7 +69,10 @@
title: "商家名称",
field: "merchantName",
width: 120,
align: "center"
align: "center",
formatter: function (value) {
return "-";
}
}, {
title: "违规时间",
field: "time",
... ...