|
|
|
@ -159,9 +159,9 @@ export default { |
|
|
|
}) |
|
|
|
|
|
|
|
//获取结果状态提示数据 |
|
|
|
getapi('/api/app/common-char/in-filter').then(res => { |
|
|
|
postapi('/api/app/CommonChar/GetCommonCharList',{}).then(res => { |
|
|
|
if(res.code >= 0){ |
|
|
|
this.symbols = res.data.items |
|
|
|
this.symbols = res.data |
|
|
|
} |
|
|
|
}) |
|
|
|
}, |
|
|
|
@ -284,6 +284,8 @@ export default { |
|
|
|
|
|
|
|
//项目列为计算函数 |
|
|
|
computeFun(index) { |
|
|
|
// 有计算项的,才调用计算函数 |
|
|
|
let haveComputeFun = false |
|
|
|
let checkItem = this.doctorCheck.checkItemList[index] |
|
|
|
console.log('checkItem', checkItem) |
|
|
|
let body = { |
|
|
|
@ -296,7 +298,9 @@ export default { |
|
|
|
itemId: e.itemId, |
|
|
|
result: e.result |
|
|
|
}) |
|
|
|
if(e.isCalculationItem == 'Y') haveComputeFun = true |
|
|
|
}); |
|
|
|
if(!haveComputeFun) return // 有计算项的,才调用计算函数 |
|
|
|
let lfind = -1 |
|
|
|
postapi('/api/app/diagnosisfunction/getcalculationfunctionresult', body).then(res => { |
|
|
|
if (res.code != -1) { |
|
|
|
|