Commit b121fd1f by 王昆

ddg

parent fe641801
......@@ -105,7 +105,7 @@ class MerchantCtl extends CtlBase {
*/
async merchantTitleAddrPage (pobj1, pobj2, req){
try {
return this.saasmerchantSve.merchantTitleAddrPage(pobj1);
return this.merchantSve.merchantTitleAddrPage(pobj1);
} catch (error) {
console.log(error);
return system.getResult(null, `系统错误`);
......@@ -120,7 +120,7 @@ class MerchantCtl extends CtlBase {
*/
async queryInvoiceTitleAndAddr(pobj1, pobj2, req){
try {
return this.saasmerchantSve.queryInvoiceTitleAndAddr(pobj1);
return this.merchantSve.queryInvoiceTitleAndAddr(pobj1);
} catch (error) {
console.log(error);
return system.getResult(null, `系统错误`);
......@@ -135,7 +135,7 @@ class MerchantCtl extends CtlBase {
*/
async updateOrSaveTitleAndAddr(pobj1, pobj2, req){
try {
return this.saasmerchantSve.updateOrSaveTitleAndAddr(pobj1);
return this.merchantSve.updateOrSaveTitleAndAddr(pobj1);
} catch (error) {
console.log(error);
return system.getResult(null, `系统错误`);
......
......@@ -186,10 +186,10 @@ class System {
common: dev + ":3102" + path,
// 商户服务
merchant: dev + ":3101" + path,
merchant: local + ":3101" + path,
// 订单服务
order: local + ":3103" + path,
order: dev + ":3103" + path,
// 发票服务
invoice: dev + ":3105" + path,
......@@ -198,7 +198,7 @@ class System {
uc: dev + ":3106" + path,
// 交易
trade: local + ":3107" + path,
trade: dev + ":3107" + path,
}
} else {
return {
......
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