|
|
@ -200,15 +200,16 @@ export default { |
|
|
//获取pacs结果模板 |
|
|
//获取pacs结果模板 |
|
|
getPacsTemplateTree() { |
|
|
getPacsTemplateTree() { |
|
|
let resultType = [], resultTemplate = [], treeData = [] |
|
|
let resultType = [], resultTemplate = [], treeData = [] |
|
|
|
|
|
|
|
|
postapi('/api/app/BigtextResultType/GetList') |
|
|
|
|
|
|
|
|
postapi('/api/app/BigtextResultType/GetList',{ |
|
|
|
|
|
itemTypeId:this.refParams.row.itemTypeId |
|
|
|
|
|
}) |
|
|
.then(res => { |
|
|
.then(res => { |
|
|
if (res.code > -1) { |
|
|
if (res.code > -1) { |
|
|
resultType = res.data |
|
|
resultType = res.data |
|
|
resultType.forEach(e => { |
|
|
resultType.forEach(e => { |
|
|
e.disabled = true |
|
|
e.disabled = true |
|
|
}); |
|
|
|
|
|
return postapi('/api/app/BigtextResultTemplate/GetList', {}) |
|
|
|
|
|
|
|
|
}); |
|
|
|
|
|
return postapi('/api/app/BigtextResultTemplate/GetList',{}) |
|
|
} |
|
|
} |
|
|
}) |
|
|
}) |
|
|
.then(res => { |
|
|
.then(res => { |
|
|
|