Merge remote-tracking branch 'origin/main'

perf/export-docx
Lei OT 11 months ago
commit e66431806b

@ -1,7 +1,7 @@
import SearchForm from '@/components/SearchForm' import SearchForm from '@/components/SearchForm'
import useAccountStore, { fetchRoleList, fetchTravelAgencyByName, genRandomPassword } from '@/stores/Account' import useAccountStore, { fetchRoleList, fetchTravelAgencyByName, genRandomPassword } from '@/stores/Account'
import useFormStore from '@/stores/Form' import useFormStore from '@/stores/Form'
import { isEmpty } from '@/utils/commons' import { isEmpty, debounce } from '@/utils/commons'
import { ExclamationCircleFilled } from '@ant-design/icons' import { ExclamationCircleFilled } from '@ant-design/icons'
import { App, Button, Col, Form, Input, Modal, Row, Select, Space, Table, Typography, Switch } from 'antd' import { App, Button, Col, Form, Input, Modal, Row, Select, Space, Table, Typography, Switch } from 'antd'
import dayjs from 'dayjs' import dayjs from 'dayjs'
@ -299,7 +299,7 @@ function Management() {
loading={dataLoading} loading={dataLoading}
showSearch showSearch
filterOption={false} filterOption={false}
onSearch={handleTravelAgencySearch} onSearch={debounce(handleTravelAgencySearch, 800)}
notFoundContent={null} notFoundContent={null}
> >
</Select> </Select>

Loading…
Cancel
Save