Commit 2c11fc3b by 孙亚楠

dd

parent 5d201359
...@@ -130,7 +130,7 @@ class OrderCtl extends CtlBase { ...@@ -130,7 +130,7 @@ class OrderCtl extends CtlBase {
params.id_card = this.trim(pobj.id_card); params.id_card = this.trim(pobj.id_card);
params.legal_mobile = this.trim(pobj.legal_mobile); params.legal_mobile = this.trim(pobj.legal_mobile);
params.names = this.trim(pobj.names); params.names = this.trim(pobj.names);
params.capital = this.trim(pobj.capital); params.capital = system.y2f(this.trim(pobj.capital)) ;
params.domicile_id = this.trim(pobj.domicile_id); params.domicile_id = this.trim(pobj.domicile_id);
params.domicile_name = this.trim(pobj.domicile_name); params.domicile_name = this.trim(pobj.domicile_name);
params.business_scope_id = this.trim(pobj.business_scope_id); params.business_scope_id = this.trim(pobj.business_scope_id);
......
...@@ -174,24 +174,24 @@ class System { ...@@ -174,24 +174,24 @@ class System {
var domain = "http://39.107.234.14"; var domain = "http://39.107.234.14";
return { return {
// 公共服务 // 公共服务
common: domain + ":3102" + path, // common: domain + ":3102" + path,
// common: "http://127.0.0.1:3102" + path, common: "http://127.0.0.1:3102" + path,
// 商户服务 // 商户服务
merchant: domain + ":3101" + path, merchant: domain + ":3101" + path,
// merchant: "http://127.0.0.1:3101" + path, // merchant: "http://127.0.0.1:3101" + path,
// 订单服务 // 订单服务
// order: domain + ":3103" + path, order: domain + ":3103" + path,
order: "http://127.0.0.1:3103" + path, // order: "http://127.0.0.1:3103" + path,
// 发票服务 // 发票服务
// invoice: domain2 + ":3105" + path, // invoice: domain2 + ":3105" + path,
invoice: "http://127.0.0.1:3105" + path, invoice: "http://127.0.0.1:3105" + path,
// 用户中心 // 用户中心
uc: domain + ":3106" + path , // uc: domain + ":3106" + path ,
// uc: "http://127.0.0.1:3106" + path, uc: "http://127.0.0.1:3106" + path,
} }
} else { } else {
var odomain = "http://123.57.217.203" var odomain = "http://123.57.217.203"
......
...@@ -86,7 +86,7 @@ module.exports = function (app) { ...@@ -86,7 +86,7 @@ module.exports = function (app) {
}); });
app.post('/web/:gname/:qname/:method', function (req, res) { app.post('/web/:gname/:qname/:method', function (req, res) {
var classPath = req.params["qname"]; var classPath = req. params["qname"];
var methodName = req.params["method"]; var methodName = req.params["method"];
var gname = req.params["gname"]; var gname = req.params["gname"];
var params = []; var 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