Commit 4af1b983 by zhaoxiqing

gsb

parent 1cb502c3
......@@ -48,7 +48,11 @@ class UserService extends ServiceBase {
async mapByIds(params) {
try {
return await this.callms("sve_uc", "userMapByIds", params);
let res = await this.callms("sve_uc", "userMapByIds", params);
if (res.status == 0) {
return res.data;
}
return {};
} catch (error) {
return system.getResult(null, `系统错误 错误信息 ${error}`);
}
......
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