数据定价计算方式更新
Showing
1 changed file
with
2 additions
and
2 deletions
| ... | @@ -794,8 +794,8 @@ const reporting = (formInfo) => { | ... | @@ -794,8 +794,8 @@ const reporting = (formInfo) => { |
| 794 | } else if (t.targetType == '2') {// 指标类型-系统功能 | 794 | } else if (t.targetType == '2') {// 指标类型-系统功能 |
| 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; | 797 | tNum = parseFloat(t.weight || 1) / 100 * score / 100; |
| 798 | tCustomize = `权重${parseFloat(t.weight) / 100} * 模型评分${score}`; | 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