调解隐藏load
This commit is contained in:
parent
ad0812bc36
commit
4d58e2cfd7
@ -328,11 +328,11 @@ const caseManagementApi = {
|
|||||||
},
|
},
|
||||||
// 今日呼叫统计
|
// 今日呼叫统计
|
||||||
callingTodayCount: data => {
|
callingTodayCount: data => {
|
||||||
return service.service.post(`${apiAdmin}api/trace/calling/todayCount`, data)
|
return service.service.post(`${apiAdmin}api/trace/calling/todayCount`, data, {hideLoading:true})
|
||||||
},
|
},
|
||||||
// 当前调解员案件列表
|
// 当前调解员案件列表
|
||||||
callingCaseList: data => {
|
callingCaseList: data => {
|
||||||
return service.service.post(`${apiAdmin}api/trace/calling/caseList`, data)
|
return service.service.post(`${apiAdmin}api/trace/calling/caseList`, data, {hideLoading:true})
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -6,7 +6,7 @@ const systemLogApi = {
|
|||||||
//========================start::用户管理======================================
|
//========================start::用户管理======================================
|
||||||
// 用户管理
|
// 用户管理
|
||||||
getUserList: data => {
|
getUserList: data => {
|
||||||
return service.service.post(`${apiAdmin}system/user/getUserList`, data)
|
return service.service.post(`${apiAdmin}system/user/getUserList`, data, {hideLoading:true})
|
||||||
},
|
},
|
||||||
// 删除用户管理
|
// 删除用户管理
|
||||||
deleteUserById: data => {
|
deleteUserById: data => {
|
||||||
|
|||||||
@ -19,7 +19,7 @@ const api = {
|
|||||||
},
|
},
|
||||||
// 呼叫未接列表
|
// 呼叫未接列表
|
||||||
notAnswerList: data => {
|
notAnswerList: data => {
|
||||||
return service.service.post(`${apiAdmin}call/notAnswerList`, data)
|
return service.service.post(`${apiAdmin}call/notAnswerList`, data,{hideLoading:true})
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
export default api;
|
export default api;
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
/* 防止重复点击 */
|
/* 防止重复点击 */
|
||||||
let clickTimer = 0
|
let clickTimer = 0
|
||||||
|
|
||||||
function clickThrottle(interval = 1500) {
|
function clickThrottle(interval = 500) {
|
||||||
let now = +new Date(); // 获取当前时间的时间戳
|
let now = +new Date(); // 获取当前时间的时间戳
|
||||||
let timer = clickTimer; // 记录触发事件的事件戳
|
let timer = clickTimer; // 记录触发事件的事件戳
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user