7dd72e4e by lxs

数据定价计算方式更新

1 parent 973116d6
......@@ -794,8 +794,8 @@ const reporting = (formInfo) => {
} else if (t.targetType == '2') {// 指标类型-系统功能
if (t.functionName == '1') { // 功能名称-质量评价模型
const score = parseFloat(qualityScoreData.value.qualityScore || 0);
tNum = parseFloat(t.weight || 1) / 100 * score;
tCustomize = `权重${parseFloat(t.weight || 1) / 100} * 模型评分${score}`;
tNum = parseFloat(t.weight || 1) / 100 * score / 100;
tCustomize = `权重${parseFloat(t.weight || 1) / 100} * 模型评分${score}/100`;
} else if (t.functionName == '2') { // 功能名称-疾病管理
if (sign.computationalFormula == '1') {// 加权平均
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!