|
@@ -211,7 +211,8 @@ class PunchClocks extends Component {
|
|
|
<View className='items'>
|
|
|
<View className='ititle'>研发工时:
|
|
|
<Input value={this.state.duration} type='digit' className='input' placeholder='请输入'
|
|
|
- style={{ textAlign: "center", border: "1px solid #d6e4ef", background: "#D7D7D7", borderRadius: "10px", }}
|
|
|
+ style={{ textAlign: "center", background: "#D7D7D7", borderRadius: "10px", }}
|
|
|
+ // border: "1px solid #d6e4ef",
|
|
|
onInput={e => {
|
|
|
this.setState({
|
|
|
duration: e.detail.value
|
|
@@ -242,7 +243,7 @@ class PunchClocks extends Component {
|
|
|
<Textarea
|
|
|
value={this.state.remark}
|
|
|
placeholder="请填写研发过程记录"
|
|
|
- style='background:#D7D7D7;width:66%;min-height:70px;border:1px solid #d6e4ef;padding:10px;border-radius: 10px'
|
|
|
+ style='background:#D7D7D7;width:66%;min-height:70px;padding:10px;border-radius: 10px'
|
|
|
autoHeight
|
|
|
onInput={e => {
|
|
|
this.setState({
|
|
@@ -252,6 +253,12 @@ class PunchClocks extends Component {
|
|
|
/>
|
|
|
</View>
|
|
|
</View>
|
|
|
+ {/* <ImagePicker
|
|
|
+ showAddBtn
|
|
|
+ ref={(ref) => (this.imagePickerRef = ref)}
|
|
|
+ url="/api/project/upload"
|
|
|
+ onChange={this.onChange}
|
|
|
+ /> */}
|
|
|
<View className='items'>
|
|
|
<View className='ititles'>上传附件:</View>
|
|
|
<ImagePicker
|