Commit 242a98c8 by 王昆

gsb

parent 5ef789fc
......@@ -351,6 +351,17 @@ class EsettleService extends ServiceBase {
item.pay_complete_time = moment(item.pay_complete_time).subtract(8, "hours").format("YYYY-MM-DD HH:mm");
}
item.phone_no = item.mobile;
if(item.mobile && item.mobile.length > 4) {
item.mobile = "*******" + item.mobile.substring(item.mobile.length - 4);
}
item.idno = item.id_no;
if (item.id_no) {
let id_no_show = item.id_no.substring(item.id_no.length - 4);
item.id_no = "**************" + id_no_show;
}
item.idno = item.id_no;
if (item.id_no) {
let id_no_show = item.id_no.substring(item.id_no.length - 4);
......
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