浏览代码

处理页面字段类型

LiFei 6 年之前
父节点
当前提交
ccce76bcf4
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3 1
      src/views/company/modules/CompanyAuthenticationModal.vue

+ 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)})
         });
 
       },