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.
18 lines
414 B
18 lines
414 B
5 years ago
|
var baseUrl = app.C2CUrl;
|
||
|
(function(obj) {
|
||
|
//上传申诉文件
|
||
|
obj.UPLOAD_APPEAL_FILE = {
|
||
|
getUrl: baseUrl + "appeal/uploadAppealFile",
|
||
|
getType: "POST"
|
||
|
};
|
||
|
//提交申诉
|
||
|
obj.APPEAL = {
|
||
|
getUrl: baseUrl + "appeal/handleAppeal",
|
||
|
getType: "POST"
|
||
|
};
|
||
|
//查询申诉结果
|
||
|
obj.SELECT_APPEAL_HANDLE_LOG = {
|
||
|
getUrl: baseUrl + "appeal/selectAppealHandleLog",
|
||
|
getType: "GET"
|
||
|
};
|
||
|
}(window.appealAjax = {}))
|