|
@@ -8,6 +8,7 @@ import ImagePicker from '../../components/common/imagePicker';
|
|
|
import { updateRecord, recordDetails } from '../../utils/servers/servers';
|
|
|
import { resourceAddress } from "../../utils/config";
|
|
|
import './index.less';
|
|
|
+// import '../punchClock/index.less'
|
|
|
import 'taro-ui/dist/style/components/noticebar.scss';
|
|
|
import 'taro-ui/dist/style/components/icon.scss';
|
|
|
import 'taro-ui/dist/style/components/list.scss';
|
|
@@ -98,7 +99,6 @@ class ReClockin extends Component {
|
|
|
}
|
|
|
|
|
|
updateRecordClockIn() {
|
|
|
-
|
|
|
if (!this.state.dateSel) {
|
|
|
Taro.showToast({ title: '请选择研发时间!', icon: 'none' });
|
|
|
return
|
|
@@ -107,12 +107,8 @@ class ReClockin extends Component {
|
|
|
Taro.showToast({ title: '请填写工时!', icon: 'none' });
|
|
|
return
|
|
|
}
|
|
|
- if (!this.state.content) {
|
|
|
- Taro.showToast({ title: '请填写研发记录!', icon: 'none' });
|
|
|
- return
|
|
|
- }
|
|
|
- if (this.state.imgs.length == 0) {
|
|
|
- Taro.showToast({ title: "请上传附件", icon: "none" });
|
|
|
+ if (!this.state.selectorChecked) {
|
|
|
+ Taro.showToast({ title: '请选择研发阶段!', icon: 'none' });
|
|
|
return
|
|
|
}
|
|
|
Taro.showLoading({ title: '打卡中...' });
|
|
@@ -129,6 +125,7 @@ class ReClockin extends Component {
|
|
|
Taro.hideLoading()
|
|
|
if (v.code === 200) {
|
|
|
Taro.showToast({ title: '打卡成功', icon: 'none' });
|
|
|
+ Taro.navigateBack({ delta: 1 });
|
|
|
} else {
|
|
|
Taro.showToast({ title: v.msg, icon: 'none' })
|
|
|
}
|
|
@@ -184,7 +181,8 @@ class ReClockin 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" }}
|
|
|
+ <Input value={this.state.duration} type='digit' className='input' placeholder='请输入'
|
|
|
+ style={{ textAlign: "center", border: "1px solid #d6e4ef", background: "#D7D7D7", borderRadius: "10px", }}
|
|
|
onInput={e => {
|
|
|
this.setState({
|
|
|
duration: e.detail.value
|
|
@@ -214,7 +212,7 @@ class ReClockin extends Component {
|
|
|
<View className='ititles'>研发记录:
|
|
|
<Textarea
|
|
|
value={this.state.content}
|
|
|
- style='background:#fff;width:66%;min-height:70px;border:1px solid #d6e4ef;padding:10px' autoHeight
|
|
|
+ style='background:#D7D7D7;width:66%;min-height:70px;border:1px solid #d6e4ef;padding:10px;border-radius: 10px' autoHeight
|
|
|
onInput={e => {
|
|
|
this.setState({
|
|
|
content: e.detail.value
|