Commit 8e81e2d5 authored by limingzhe's avatar limingzhe

fix: debug

parent 66aab9a1
......@@ -165,7 +165,13 @@ export default class NewClass extends middleLayerBase {
async getUserInfo(data = {}) {
let res = await this.asyncCallNetworkApiGet(`api/jj/v1/user/info`, data);
let res = await this.asyncCallNetworkApiGetNew(`api/jj/v1/user/info`, data);
if (typeof res == 'object') {
console.log('res~1: ', JSON.stringify(res));
} else {
console.log('res~2: ', res);
}
if (res.code != 200) {
global.middleLayer.showTips(res.msg);
......
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