Commit 6e2f3668 by 王昆

gsb

parent e24df926
......@@ -577,11 +577,13 @@ class LaoActionApi extends APIBase {
if (temp_info && temp_info.status == 0 && temp_info.data.rows.length > 0) {
try {
for (var i = 0; i < temp_info.data.rows.length; i++) {
var cominfo = await this.usersSve.findUserInfoByid(temp_info.data.rows[i].user_id);
let cominfo = await this.usersSve.findUserInfoByid(temp_info.data.rows[i].user_id);
if (cominfo) {
temp_info.data.rows[i].com_name = cominfo.com_name;
temp_info.data.rows[i].information = cominfo.information;
} else {
temp_info.data.rows[i].com_name = "";
temp_info.data.rows[i].information = "";
}
temp_info.data.rows[i].apply_stauts_name = this.applyStatusMap[temp_info.data.rows[i].apply_stauts];
......@@ -600,12 +602,10 @@ class LaoActionApi extends APIBase {
temp_info.data.rows[i].phone_no = userinfo.phone_no;
temp_info.data.rows[i].user_name = userinfo.user_name;
temp_info.data.rows[i].id_card = userinfo.id_card;
temp_info.data.rows[i].information = userinfo.information;
} else {
temp_info.data.rows[i].phone_no = "";
temp_info.data.rows[i].user_name = "";
temp_info.data.rows[i].id_card = "";
temp_info.data.rows[i].information = "";
}
// userId=5&ecid=495
......
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