|
@@ -3,6 +3,7 @@ import { Card, Tooltip } from 'antd'
|
|
|
import { Download } from '@icon-park/react'
|
|
import { Download } from '@icon-park/react'
|
|
|
import styles from '@/pages/Product/Lock/LockStore/components/ChangeClient/index.less'
|
|
import styles from '@/pages/Product/Lock/LockStore/components/ChangeClient/index.less'
|
|
|
import { isEmpty, isNullOrUnDef } from '@/utils/is'
|
|
import { isEmpty, isNullOrUnDef } from '@/utils/is'
|
|
|
|
|
+import classNames from 'classnames'
|
|
|
|
|
|
|
|
const DownUpdateFile = ({ updateFile }) => {
|
|
const DownUpdateFile = ({ updateFile }) => {
|
|
|
const NewupdateFile = updateFile?.replace('/upload/longle/', '')
|
|
const NewupdateFile = updateFile?.replace('/upload/longle/', '')
|
|
@@ -14,8 +15,9 @@ const DownUpdateFile = ({ updateFile }) => {
|
|
|
document.body.appendChild(oa)
|
|
document.body.appendChild(oa)
|
|
|
oa.click()
|
|
oa.click()
|
|
|
}
|
|
}
|
|
|
|
|
+ const className = classNames(styles.companyInput, 'mb-2')
|
|
|
return (
|
|
return (
|
|
|
- <div className={styles.companyInput}>
|
|
|
|
|
|
|
+ <div className={className}>
|
|
|
<Card size="small">
|
|
<Card size="small">
|
|
|
<div className="flex justify-between">
|
|
<div className="flex justify-between">
|
|
|
<div className={`${styles.nameContent} ${styles.nameContentWidth}`}>{NewupdateFile}</div>
|
|
<div className={`${styles.nameContent} ${styles.nameContentWidth}`}>{NewupdateFile}</div>
|