|
@@ -1,5 +1,6 @@
|
|
|
import React, { Component } from "react";
|
|
|
import config from '@config/index';
|
|
|
+import report from '@common/images/end_time.png';
|
|
|
|
|
|
class SlideIpt extends Component {
|
|
|
constructor(props) {
|
|
@@ -35,16 +36,19 @@ class SlideIpt extends Component {
|
|
|
if(item.flg!==8||(item.flg===8&&item.check)){
|
|
|
return null;
|
|
|
}
|
|
|
- return (
|
|
|
+ return (<span>
|
|
|
+ <img src={report} title={'报告时间'}
|
|
|
+ style={{verticalAlign:'text-bottom',marginRight:'3px'}}/>
|
|
|
<input type="text"
|
|
|
class="canEdit"
|
|
|
- style={{color:'#333'}}
|
|
|
+ style={{color:'#333',width:'140px'}}
|
|
|
placeholder='时间'
|
|
|
autoComplete="off"
|
|
|
value={item.finishDateValue}
|
|
|
onInput={(e)=>{this.handleInput(e,item,3,idx)}}
|
|
|
onFocus={()=>{this.handleFocus()}}
|
|
|
/>
|
|
|
+ </span>
|
|
|
|
|
|
);
|
|
|
}
|