lanjianrong 5 år sedan
förälder
incheckning
49f68d8ef8
1 ändrade filer med 2 tillägg och 2 borttagningar
  1. 2 2
      src/pages/Customer/Contact/components/CustomerModal/index.jsx

+ 2 - 2
src/pages/Customer/Contact/components/CustomerModal/index.jsx

@@ -18,7 +18,7 @@ const SearchModal = ({ clientId, onSelect }) => {
     customer: [],
     searchVal: '',
     current: 1,
-    pageSize: 7,
+    pageSize: 10,
     total: 0
   })
   const initData = async params => {
@@ -41,7 +41,7 @@ const SearchModal = ({ clientId, onSelect }) => {
   }
 
   useEffect(() => {
-    initData({ current: 1, pageSize: 7 })
+    initData({ current: 1, pageSize: 10 })
   }, [])
   const onChange = e => {
     const { value = '' } = e.target || e.currentTarget