处理问题

This commit is contained in:
TS-QD1 2023-05-14 00:46:03 +08:00
parent a8c7810ed8
commit b378105dfa
2 changed files with 9 additions and 9 deletions

View File

@ -205,14 +205,14 @@ export default {
key: 'E', key: 'E',
keyName: 'shouldReportCount', keyName: 'shouldReportCount',
width: 60, width: 60,
render(row, index) { // render(row, index) {
return h('a', { // return h('a', {
href: 'javascript:void(0);', // href: 'javascript:void(0);',
onClick() { // onClick() {
vueSelf.onReportDayClick(row, index) // vueSelf.onReportDayClick(row, index)
} // }
}, row.E) // }, row.E)
} // }
}, },
{ {
align: 'center', align: 'center',

View File

@ -325,7 +325,7 @@ export default {
fixed: 'right', fixed: 'right',
width: 60, width: 60,
render(row, index) { render(row, index) {
return vueSelf.computeM(row) * row.O / 100; return (vueSelf.computeM(row) * row.N / 100).toFixed(2);
} }
} }
], ],