dev01 hace 1 año
padre
commit
e724710cd7

+ 6 - 1
src/pages/detail/index.jsx

@@ -40,6 +40,10 @@ class Detail extends Component {
     this.getReleasetDails();
   }
 
+  componentDidShow(){
+    this.getReleasetDails();
+  }
+
   // 项目详情
   getReleasetDails() {
     recordDetails({
@@ -175,7 +179,8 @@ class Detail extends Component {
                       <Text className="logbt" onClick={() => { this.setState({ historicalIsOpened: true }) }}>查看审核日志</Text>
                     </View>
                   </View>
-                  {data.processStatus == 3 &&
+                  {
+                    data.processStatus == 3 &&
                     <View className="option">
                       <AtButton
                         type="primary"

+ 0 - 1
src/pages/punchClock/punchClocks.jsx

@@ -252,7 +252,6 @@ class PunchClocks extends Component {
                       />
                     </View>
                   </View>
-
                   <View className='items'>
                     <View className='ititles'>上传附件:</View>
                     <ImagePicker

+ 7 - 9
src/pages/reclockin/index.jsx

@@ -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

+ 7 - 0
src/pages/reclockin/index.less

@@ -403,4 +403,11 @@
       }
     }
   }
+}
+
+.picker {
+  padding: 5px 15px;
+  border-radius: 100px;
+  background: #D7D7D7;
+
 }