Commit bc93e909 authored by 姬鋆屾's avatar 姬鋆屾

fixed:修改合计得分出现小数超长的问题

parent 62674d8b
......@@ -94,7 +94,6 @@
<el-button @click="cancleFresh">取 消</el-button>
</div>
</el-dialog>
</div>
</template>
......@@ -389,7 +388,7 @@ export default {
formatter: (row) => {
return (
<span style={{ color: "#1c75dd", fontWeight: "600" }}>
{row.ckjsdf + row.zdrwdf + row.addTotalScore}
{(row.ckjsdf + row.zdrwdf + row.addTotalScore).toFixed(1)}
</span>
);
},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment