12345678910111213141516171819202122 |
- (function($){
- var consulting = {
- getList: function(data){
- return APIService.httpGet('/im_new/consult/getList', data);
- },
- getListTableAjaxObj: { //表格数据获取时,使用的ajax请求配置
- method: 'get',
- url: APIService.server + 'im_new/consult/getList',
- contentType: "application/json",
- dataType: "json",
- ajaxOptions: {
- beforeSend: function(request) {
- var userAgent = APIService.userAgent;
- userAgent = JSON.stringify(userAgent);
- request.setRequestHeader("userAgent", userAgent);
- }
- }
- }
- };
- window.consultingAPI = consulting;
- })(jQuery)
|