|
|
@@ -6,6 +6,7 @@ import styles from './index.less'
|
|
|
import SearchModal from '@/components/Modal/src/components/customerModal'
|
|
|
import { apiDelCustomer } from '@/services/contact'
|
|
|
import { useDispatch } from 'dva'
|
|
|
+import consts from '@/consts'
|
|
|
|
|
|
const ChangeCompanyInput = props => {
|
|
|
const dispatch = useDispatch()
|
|
|
@@ -85,7 +86,9 @@ const ChangeCompanyInput = props => {
|
|
|
</Card>
|
|
|
)
|
|
|
return (
|
|
|
- <div className={styles.companyInput}>{customerId ? normalValueRender : notValueRender}</div>
|
|
|
+ <div className={styles.companyInput}>
|
|
|
+ {customerId !== consts.ENCRYPTION_ZERO ? normalValueRender : notValueRender}
|
|
|
+ </div>
|
|
|
)
|
|
|
}
|
|
|
|