Commit 897d8f08 by 孙亚楠

dd

parent 758f4cbc
......@@ -68,7 +68,12 @@ class BusinessmenCtl extends CtlBase {
}
async signNames(pobj, pobj2, req) {
return system.getResultSuccess([]);
try {
return await this.businessmenSve.signNames(pobj);
} catch (error) {
console.log(error);
return system.getResultFail(500, "接口异常:" + error.message);
}
}
async signPage(pobj, pobj2, req) {
......
......@@ -34,6 +34,15 @@ class BusinessmenService extends ServiceBase {
}
}
async signNames(params){
try {
return await this.callms("order", "signNames", params);
} catch (error) {
console.log(error);
return system.getResult(error);
}
}
/**
* @params 建仗
*/
......
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