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.
14 lines
301 B
14 lines
301 B
5 years ago
|
var baseUrl = app.C2CUrl;
|
||
|
(function(obj) {
|
||
|
//申请取消市商
|
||
|
obj.CANCEL_APPLY = {
|
||
|
getUrl: baseUrl + "marketApply/cancelApply",
|
||
|
getType: "POST"
|
||
|
};
|
||
|
//申请成为市商
|
||
|
obj.MARKET_APPLY = {
|
||
|
getUrl: baseUrl + "marketApply/marketApply",
|
||
|
getType: "POST"
|
||
|
};
|
||
|
}(window.marketApplyAjax = {}))
|