Commit 2c11fc3b by 孙亚楠

dd

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