提交 163ea634 authored 作者: 钟是志's avatar 钟是志

2019年9月27日 10:16:05 火车票打折卡

上级 f88c8f16
/**
* 2019年9月27日
* 钟是志
* 文件上传组件
* 通过设置一个隐藏的input的框 和一个覆盖在上面的P标签实现文件上传功能
* */
import React, {Fragment} from 'react'; import React, {Fragment} from 'react';
import { Button, Toast} from 'antd-mobile'; import { Button, Toast} from 'antd-mobile';
import { uploadFile } from './api'; import { uploadFile } from './api';
...@@ -7,14 +13,6 @@ export default class UploadButton extends React.Component { ...@@ -7,14 +13,6 @@ export default class UploadButton extends React.Component {
super(props); super(props);
} }
clickUpload = (e) => {
// alert(window.navigator.userAgent);
// document.getElementById('infoUpload').click();
this.fileInput.click();
};
imgFileChange = (e) => { imgFileChange = (e) => {
const file = this.fileInput.files[this.fileInput.files.length - 1]; const file = this.fileInput.files[this.fileInput.files.length - 1];
if(!file) { if(!file) {
...@@ -48,7 +46,6 @@ export default class UploadButton extends React.Component { ...@@ -48,7 +46,6 @@ export default class UploadButton extends React.Component {
position: 'relative' position: 'relative'
}} > }} >
<p <p
/* onClick={this.clickUpload}*/
style={{ style={{
position: 'absolute', position: 'absolute',
top: 0, top: 0,
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论