Commit 8d9eff37 by 蒋勇

Merge branch 'center-manage' of gitlab.gongsibao.com:jiangyong/zhichan into center-manage

parents fc04c095 84dfe150
...@@ -4,7 +4,7 @@ var settings = require("../../../../config/settings"); ...@@ -4,7 +4,7 @@ var settings = require("../../../../config/settings");
class ProductAPI extends APIBase { class ProductAPI extends APIBase {
constructor() { constructor() {
super(); super();
this.productpriceS=system.getObject("service.common.productpriceSve") this.productpriceS = system.getObject("service.product.productpriceSve")
} }
/** /**
* *
...@@ -16,10 +16,10 @@ class ProductAPI extends APIBase { ...@@ -16,10 +16,10 @@ class ProductAPI extends APIBase {
* code:'' * code:''
* ] * ]
*/ */
async findRegionsByProductName(p,q,req){ async findRegionsByProductName(p, q, req) {
let pname=p.productname; let pname = p.productname;
let sp=p.sp; let sp = p.sp;
let rs=await this.productpriceS.findRegionsByProductName(pname, sp) let rs = await this.productpriceS.findRegionsByProductName(pname, sp)
return system.getResult(rs); return system.getResult(rs);
} }
classDesc() { classDesc() {
...@@ -39,7 +39,7 @@ class ProductAPI extends APIBase { ...@@ -39,7 +39,7 @@ class ProductAPI extends APIBase {
} }
methodDescs() { methodDescs() {
return [ return [
]; ];
} }
exam() { exam() {
......
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