LiFei 6 роки тому
батько
коміт
ccce76bcf4

+ 3 - 1
src/views/company/modules/CompanyAuthenticationModal.vue

@@ -92,9 +92,11 @@
         this.model = Object.assign({}, record);
         this.visible = true;
         this.$nextTick(() => {
-          this.form.setFieldsValue(pick(this.model,'userId','licenseFront','otherLicense','enterpriseName','isHumanResource','authenticationStatus','delFlag'))
+
+          this.form.setFieldsValue(pick(this.model,'userId','licenseFront','otherLicense','enterpriseName','authenticationStatus','delFlag'))
 		  //时间格式化
           this.form.setFieldsValue({expiryDate:this.model.expiryDate?moment(this.model.expiryDate):null})
+          this.form.setFieldsValue({isHumanResource:String(this.model.isHumanResource)})
         });
 
       },