diff --git a/src/components/doctorCheck/CheckItemList.vue b/src/components/doctorCheck/CheckItemList.vue index 51df040..4888011 100644 --- a/src/components/doctorCheck/CheckItemList.vue +++ b/src/components/doctorCheck/CheckItemList.vue @@ -85,7 +85,7 @@ - diff --git a/src/components/doctorCheck/PacsTemplate.vue b/src/components/doctorCheck/PacsTemplate.vue index 014003d..87ade5f 100644 --- a/src/components/doctorCheck/PacsTemplate.vue +++ b/src/components/doctorCheck/PacsTemplate.vue @@ -200,15 +200,16 @@ export default { //获取pacs结果模板 getPacsTemplateTree() { let resultType = [], resultTemplate = [], treeData = [] - - postapi('/api/app/BigtextResultType/GetList') + postapi('/api/app/BigtextResultType/GetList',{ + itemTypeId:this.refParams.row.itemTypeId + }) .then(res => { if (res.code > -1) { resultType = res.data resultType.forEach(e => { e.disabled = true - }); - return postapi('/api/app/BigtextResultTemplate/GetList', {}) + }); + return postapi('/api/app/BigtextResultTemplate/GetList',{}) } }) .then(res => {