54773648 by lxs

数据定价计算方式更新

1 parent 627ddae4
...@@ -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);
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!