Authored by 李奇

修改

... ... @@ -58,9 +58,6 @@ class GroupApi extends global.yoho.BaseModel {
result = result.data;
return result;
}).catch(error => {
console.log(error);
return error;
});
}
_getShareInfo(params) {
... ... @@ -204,8 +201,6 @@ class GroupApi extends global.yoho.BaseModel {
}).then(result => {
result = result.data;
return result;
}).catch(error => {
console.log(error);
});
}
... ... @@ -246,8 +241,6 @@ class GroupApi extends global.yoho.BaseModel {
}).then(result => {
result = result.data;
return result;
}).catch(error => {
console.log(error);
});
}
... ... @@ -264,8 +257,6 @@ class GroupApi extends global.yoho.BaseModel {
}).then(result => {
result = result.data;
return result;
}).catch(error => {
console.log(error);
});
}
... ... @@ -307,9 +298,6 @@ class GroupApi extends global.yoho.BaseModel {
})
.then(data => {
return data.data;
})
.catch(function(error) {
console.log(error);
});
}
... ... @@ -326,8 +314,6 @@ class GroupApi extends global.yoho.BaseModel {
})
.then(function(data) {
return data.data;
}).catch(function(error) {
console.log(error);
});
}
... ... @@ -349,9 +335,6 @@ class GroupApi extends global.yoho.BaseModel {
}];
return free.concat(data.data);
})
.catch(function(error) {
console.log(error);
});
}
}
... ...