|
@@ -11,9 +11,9 @@ export default function useMonitor() {
|
|
|
|
|
|
const getPlanList = useAjax((params: ListType) => getPlanListApi(params), { formatResult: true })
|
|
|
|
|
|
- const getPlanDetailList = useAjax((params: ListType) => getDetailListApi(params), { formatResult: true })
|
|
|
+ const getPlanDetailList = useAjax((params: ListType) => getDetailListApi(params), { formatResult: true, debounceInterval: 100 })
|
|
|
|
|
|
- const getMinuteList = useAjax((params: ListType) => getMinuteListApi(params), { formatResult: true })
|
|
|
+ const getMinuteList = useAjax((params: ListType) => getMinuteListApi(params), { formatResult: true, debounceInterval: 100 })
|
|
|
|
|
|
const getTotalCost = useAjax((params: ListType) => getTotalCostApi(params), { formatResult: true })
|
|
|
|