数据定价计算方式更新
Showing
1 changed file
with
1 additions
and
1 deletions
| ... | @@ -795,7 +795,7 @@ const reporting = (formInfo) => { | ... | @@ -795,7 +795,7 @@ const reporting = (formInfo) => { |
| 795 | if (t.functionName == '1') { // 功能名称-质量评价模型 | 795 | if (t.functionName == '1') { // 功能名称-质量评价模型 |
| 796 | const score = parseFloat(qualityScoreData.value.qualityScore || 0); | 796 | const score = parseFloat(qualityScoreData.value.qualityScore || 0); |
| 797 | tNum = parseFloat(t.weight || 1) / 100 * score / 100; | 797 | tNum = parseFloat(t.weight || 1) / 100 * score / 100; |
| 798 | tCustomize = `权重${parseFloat(t.weight || 1) / 100} * 模型评分${score/100}`; | 798 | tCustomize = `权重${parseFloat(t.weight || 1) / 100} * 模型评分${score}/100`; |
| 799 | } else if (t.functionName == '2') { // 功能名称-疾病管理 | 799 | } else if (t.functionName == '2') { // 功能名称-疾病管理 |
| 800 | if (sign.computationalFormula == '1') {// 加权平均 | 800 | if (sign.computationalFormula == '1') {// 加权平均 |
| 801 | const score = parseFloat(disScore.value.find(d => d.guid == t.guid)?.factor || 0); | 801 | const score = parseFloat(disScore.value.find(d => d.guid == t.guid)?.factor || 0); | ... | ... |
-
Please register or sign in to post a comment