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

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

parent 62674d8b
...@@ -94,7 +94,6 @@ ...@@ -94,7 +94,6 @@
<el-button @click="cancleFresh">取 消</el-button> <el-button @click="cancleFresh">取 消</el-button>
</div> </div>
</el-dialog> </el-dialog>
</div> </div>
</template> </template>
...@@ -389,7 +388,7 @@ export default { ...@@ -389,7 +388,7 @@ export default {
formatter: (row) => { formatter: (row) => {
return ( return (
<span style={{ color: "#1c75dd", fontWeight: "600" }}> <span style={{ color: "#1c75dd", fontWeight: "600" }}>
{row.ckjsdf + row.zdrwdf + row.addTotalScore} {(row.ckjsdf + row.zdrwdf + row.addTotalScore).toFixed(1)}
</span> </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