6.10 限制我要参拍上传附件文件格式
This commit is contained in:
BIN
src/images/auction/participateLogo.jpg
Normal file
BIN
src/images/auction/participateLogo.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 71 KiB |
@ -654,7 +654,7 @@ const AuctionViewAuctions: React.FC = () => {
|
||||
name="biddersFj"
|
||||
extra="最多上传一个文件,每个最大30MB"
|
||||
>
|
||||
<ExtendUpload bid="" maxCount={1} maxSize={30} uploadProps={{ disabled: false }}>
|
||||
<ExtendUpload bid="" maxCount={1} maxSize={30} uploadProps={{ disabled: false, accept: ".png,.jpg,.jpeg,.rar,.zip,.doc,.docx,.xls,.xlsx,.ppt,.pptx,.txt,.pdf"}}>
|
||||
</ExtendUpload>
|
||||
</Form.Item>
|
||||
</Form>
|
||||
|
@ -12,6 +12,7 @@ import { saveDateTimeFormatter } from '@/utils/DateUtils';
|
||||
import { isNotEmpty } from '@/utils/CommonUtils';
|
||||
import { pictureDisplayPath } from '@/utils/DownloadUtils';
|
||||
import { getFilelist } from '@/services/download_';
|
||||
import participateLogo from '@/images/auction/participateLogo.jpg'
|
||||
|
||||
export default () => {
|
||||
//获取用户数据
|
||||
@ -173,6 +174,12 @@ export default () => {
|
||||
</div>
|
||||
<div style={{ display: 'flex', justifyContent: 'center', height: innerHeight - 57, overflowY: 'auto' }}>
|
||||
<div style={{ width: 1248 }}>
|
||||
<div style={{ margin: '12px 0px', display: 'flex' }}>
|
||||
<div style={{ display: 'flex', alignItems: 'center' }}>
|
||||
<img src={participateLogo} height={60} width={60} />
|
||||
<span style={{ fontSize: '22px', fontWeight: 'bold', marginLeft: '8px', color: '#b30000' }}>物资处置 · 内拍</span>
|
||||
</div>
|
||||
</div>
|
||||
<Descriptions
|
||||
bordered={true}
|
||||
column={1}
|
||||
|
Reference in New Issue
Block a user