2 Commits 92eef7b72d ... d929c45113

Author SHA1 Message Date
  半月无霜 d929c45113 Merge branch 'master' of http://192.168.20.122:3000/root/qiyewechatApp 4 years ago
  半月无霜 9cc701781e 修改医生审核未通过逻辑 4 years ago
2 changed files with 3 additions and 3 deletions
  1. 2 2
      UI/src/components/Form/BirdForm.js
  2. 1 1
      UI/src/pages/ymall/Doctor.js

+ 2 - 2
UI/src/components/Form/BirdForm.js

@@ -180,9 +180,9 @@ class BirdForm extends React.Component {
     return true;
   }
 
-  save() {
+  save(verifyNotFalg) {
     let self = this;
-    if (!self.validate()) return;
+    if (!verifyNotFalg && !self.validate()) return;
 
     let dto = self.getResult();
     request({

+ 1 - 1
UI/src/pages/ymall/Doctor.js

@@ -553,7 +553,7 @@ class Doctor extends React.Component {
         this.setState({
             checkMsgVisible: false
         })
-        this.refs.checkForm.save();
+        this.refs.checkForm.save(true);
     }
 
     render() {