Commit af1ff0bc by 孙亚楠

d

parent 6f1c47c0
......@@ -27,7 +27,7 @@ class MerchantUserCtl extends CtlBase {
async merchantOfInfo(params, pobj2, req) {
try {
params.id = params.merchant_id;
params.id = params.id || params.merchant_id;
let res = await this.merchantSve.merchantOfInfo(params);
if (res.data) {
await this.userSve.setRowsUser([res.data], "bd_id", "bd");
......
......@@ -188,20 +188,20 @@ class System {
let dev = "http://39.107.234.14";
return {
// 产品引擎
engine_product: local + ":3571" + path,
engine_product: dev + ":3571" + path,
// 计费引擎
engine_fee: local + ":3572" + path,
engine_fee: dev + ":3572" + path,
// 认证引擎
engine_auth: local + ":3573" + path,
engine_auth: dev + ":3573" + path,
// 签约引擎
engine_sign: local + ":3574" + path,
engine_sign: dev + ":3574" + path,
// 用户服务
sve_uc: dev + ":3651" + path,
// 商户服务
sve_merchant: dev + ":3652" + path,
// 订单服务
sve_order: local + ":3653" + path,
sve_order: dev + ":3653" + 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