You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
795 B
29 lines
795 B
var baseUrl = app.C2CUrl; |
|
var confBaseUrl = app.confBaseUrl; |
|
(function(obj) { |
|
//查询实时撤单时间间隔 |
|
obj.SELECT_AUTO_CANCEL_INTERVAL = { |
|
getUrl: baseUrl + "config/selectAutoCancelInterval", |
|
getType: "GET" |
|
}; |
|
//查询手续费配置 |
|
obj.SELECT_SERVICE_CHARGE = { |
|
getUrl: baseUrl + "config/selectServiceCharge", |
|
getType: "GET" |
|
}; |
|
//查询市商保证金代币 |
|
obj.SELECT_MARKET_FREEZE_COIN = { |
|
getUrl: baseUrl + "config/selectMarketFreezeCoin", |
|
getType: "GET" |
|
}; |
|
//查询市商保证金数量 |
|
obj.SELECT_MARKET_FREEZE_AMOUNT = { |
|
getUrl: baseUrl + "config/selectMarketFreezeAmount", |
|
getType: "GET" |
|
}; |
|
//查询市商规则 |
|
obj.SELECT_MARKET_FREEZE_RULE = { |
|
getUrl: confBaseUrl + "agreement/findAgreement", |
|
getType: "GET" |
|
}; |
|
}(window.otcConfigAjax = {}))
|
|
|