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.
 
 
 
 

13 lines
314 B

var baseUrl = app.C2CUrl;
(function(obj) {
//获取法币交易币种
obj.GET_COINS = {
getUrl: baseUrl + "coin/listCoin",
getType: "GET"
};
//获取法币币种手续费列表
obj.LIST_COIN_SERVICE_CHARGE = {
getUrl: baseUrl + "coin/listCoinServiceCharge",
getType: "GET"
};
}(window.coinAjax = {}))