|
@@ -9,7 +9,7 @@ import {
|
|
|
|
|
|
export default function useMonitor() {
|
|
|
|
|
|
- const getPlanList = useAjax((params: ListType) => getPlanListApi(params), { formatResult: true, debounceInterval: 1500 })
|
|
|
+ const getPlanList = useAjax((params: ListType) => getPlanListApi(params), { formatResult: true, debounceInterval: 1000 })
|
|
|
|
|
|
const getPlanDetailList = useAjax((params: ListType) => getDetailListApi(params), { formatResult: true, debounceInterval: 100 })
|
|
|
|
|
@@ -23,7 +23,7 @@ export default function useMonitor() {
|
|
|
|
|
|
const getUserGroup = useAjax(() => getUserGroupApi(), { formatResult: true })
|
|
|
|
|
|
- const getAllPlanList = useAjax((params: allPlanProps) => getAllPlanListApi(params), { formatResult: true, debounceInterval: 1500 })
|
|
|
+ const getAllPlanList = useAjax((params: allPlanProps) => getAllPlanListApi(params), { formatResult: true, debounceInterval: 1000 })
|
|
|
const getBookListAll = useAjax(() => getBookListAllApi(), { formatResult: true })
|
|
|
|
|
|
const downLoadUpAd = useAjax((params: ListType) => downLoadUpAdApi(params), { formatResult: true })
|