Commit 50b043a3 by 孙亚楠

dd

parent cdef007f
...@@ -209,7 +209,13 @@ class OrderService extends ServiceBase { ...@@ -209,7 +209,13 @@ class OrderService extends ServiceBase {
return system.getResult(null,`参数错误 当前时间不能为空`); return system.getResult(null,`参数错误 当前时间不能为空`);
} }
try { try {
return await this.callms("order", "statDeliverData", params); let res = await this.callms("order", "statDeliverData", params);
if(res.status==0 && res.data && res.data.length>0){
for(let item of res.data){
item.serivce_price=system.f2y(item.serivce_price);
}
}
return res;
} catch (error) { } catch (error) {
console.log(error); console.log(error);
return system.getResult(null,`系统错误 错误信息 ${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