【讲师费管理】/【讲师费统计】里面的时长显示都调整为小时(包口页面和导出)

This commit is contained in:
gengxin
2025-02-28 10:40:44 +08:00
parent 5512963b16
commit 9d3c266f83

View File

@@ -318,7 +318,7 @@ export default {
align: "center",
width: 140,
customRender: ({ text }) => {
return text ? text + '分钟' : '-'
return text ? (text/60).toFixed(2) + '小时' : '-'
}
},
{
@@ -329,7 +329,7 @@ export default {
align: "center",
width: 140,
customRender: ({ text }) => {
return text ? text + '分钟' : '-'
return text ? (text/60).toFixed(2) + '小时' : '-'
}
},
{
@@ -340,7 +340,7 @@ export default {
align: "center",
width: 120,
customRender: ({ text }) => {
return text ? text + '分钟' : '-'
return text ? (text/60).toFixed(2) + '小时' : '-'
}
},
{