|
|
|
@ -145,6 +145,17 @@ |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="8"> |
|
|
|
<el-form-item label="报告版式" prop="remark"> |
|
|
|
<el-select v-model="form.reportFormatTemplateId" placeholder="请选择" filterable clearable |
|
|
|
:style="'width:' + Math.floor((window.pageWidth - 585) / 3) + 'px;'" size="small"> |
|
|
|
<el-option v-for="item in dict.reportFormatTemplate" :key="item.id" :label="item.displayName" |
|
|
|
:value="item.id" /> |
|
|
|
</el-select> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
|
<el-row> |
|
|
|
<el-col :span="24"> |
|
|
|
<el-form-item label="备注" prop="remark"> |
|
|
|
<el-input class="enterToTab" v-model="form.remark" maxlength="100" show-word-limit /> |
|
|
|
</el-form-item> |
|
|
|
@ -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; |
|
|
|
|