From 3672b83182a648733ff245bd690f170d68cc80a9 Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期一, 15 五月 2023 17:38:27 +0800 Subject: [PATCH] 2023-05-15 --- src/menu/components/share/sourcecomponent/inputform/index.jsx | 17 ++++++++--------- 1 files changed, 8 insertions(+), 9 deletions(-) diff --git a/src/menu/components/share/sourcecomponent/inputform/index.jsx b/src/menu/components/share/sourcecomponent/inputform/index.jsx index f178a9e..7652431 100644 --- a/src/menu/components/share/sourcecomponent/inputform/index.jsx +++ b/src/menu/components/share/sourcecomponent/inputform/index.jsx @@ -2,6 +2,7 @@ import PropTypes from 'prop-types' import { is, fromJS } from 'immutable' import { Input, Form, Row, Col, Pagination, Empty, Button, Modal, notification } from 'antd' +import { PlusOutlined } from '@ant-design/icons' import Api from '@/api' import Utils from '@/utils/utils.js' @@ -17,9 +18,7 @@ class PopSource extends Component { static propTpyes = { - btnlog: PropTypes.array, - keyword: PropTypes.string, - handlelog: PropTypes.func + keyword: PropTypes.string } state = { @@ -48,7 +47,7 @@ if (_form && _form.focus) { _form.focus() } - } catch {} + } catch (e) {} } shouldComponentUpdate (nextProps, nextState) { @@ -63,14 +62,14 @@ let videos = sessionStorage.getItem('app_videos') try { originlist = JSON.parse(videos) - } catch { + } catch (e) { originlist = [] } } else { let pictures = sessionStorage.getItem('app_pictures') try { originlist = JSON.parse(pictures) - } catch { + } catch (e) { originlist = [] } } @@ -167,15 +166,15 @@ {keyword === 'upload' ? <Form.Item label="涓婁紶" labelCol={{xs: { span: 24 }, sm: { span: 4 }}} wrapperCol={{xs: { span: 24 }, sm: { span: 20 }}}> <FileUpload config={{ initval: '', - suffix: type === 'video' ? '.mp4,.webm,.ogg' : '.jpg,.png,.gif,.pjp,.pjpeg,.jpeg,.jfif,.webp', + suffix: type === 'video' ? '.mp4,.webm,.ogg' : '.jpg,.png,.gif,.pjp,.pjpeg,.jpeg,.jfif,.webp,.ico', maxfile: 1, fileType: type === 'video' ? 'text' : 'picture' }} onChange={this.changeFile} /> </Form.Item> : null} {keyword === 'system' ? <Search value={searchKey} placeholder="" onChange={(e) => this.setState({searchKey: e.target.value})} onSearch={this.changeSearch} enterButton/> : null} - {keyword === 'system' ? <Button className="picture-plus mk-green" icon="plus" onClick={() => this.handleSource({typecharone: type})}> - 娣诲姞 + {keyword === 'system' ? <Button className="picture-plus mk-green" onClick={() => this.handleSource({typecharone: type})}> + <PlusOutlined /> 娣诲姞 </Button> : null} {keyword === 'system' && list.length ? <Row gutter={16} style={{minHeight: '250px'}}> -- Gitblit v1.8.0