diff --git a/src/components/customerOrg/customerOrgEdit.vue b/src/components/customerOrg/customerOrgEdit.vue index b45a142..b96636d 100644 --- a/src/components/customerOrg/customerOrgEdit.vue +++ b/src/components/customerOrg/customerOrgEdit.vue @@ -145,11 +145,22 @@ + + + + + + + + + - + @@ -234,7 +245,6 @@ export default { routeUrlorPageName: 'customerOrg', //当前页面归属路由或归属页面权限名称 privs: [] // 页面权限 }, - customerOrgEditStyle: "height:400px;", data: { organizationdata: [], //体检中心数据 @@ -269,6 +279,7 @@ export default { medicalTypeId: '', personnelTypeId: '', isRecommend: 'N', + reportFormatTemplateId:'', }, //初始化 单位 记录 目前新增与更新是一致 formInit: {}, rules: { @@ -355,6 +366,13 @@ export default { this.data.organizationdata = res.data; }); + postapi('/api/app/Report/GetReportFormatTemplateByReportId',{id:'0005'}).then(res => { + if(res.code > -1){ + this.dict.reportFormatTemplate = res.data + } + }) + + //获取单位类别列表 getapi("/api/app/customer-org-type/get-all").then((res) => { this.data.customerOrgType = res.data;