修改展示字段顺序

This commit is contained in:
Caojr
2025-11-24 15:07:11 +08:00
parent 77a8af4918
commit 8fd2a09a45

View File

@@ -504,17 +504,6 @@ export default {
colSortNo: 5,
visible: true,
},
{
title: "项目完成数",
dataIndex: "projectCompletedNum",
ellipsis: true,
key: "projectCompletedNum",
width: 120,
align: "center",
colSortNo: 6,
visible: true,
customRender: (text) => {return !text.value?'0':text.value;}
},
{
title: "面授完成数",
dataIndex: "offCourseCompletedNum",
@@ -522,7 +511,7 @@ export default {
key: "offCourseCompletedNum",
width: 120,
align: "center",
colSortNo: 7,
colSortNo: 6,
visible: true,
customRender: (text) => {return !text.value?'0':text.value;}
},
@@ -533,7 +522,7 @@ export default {
key: "offCourseCompletedRate",
width: 120,
align: "center",
colSortNo: 8,
colSortNo: 7,
visible: true,
customRender: (text) => {return !text.value && text.value != 0?'0%':text.value + "%";}
},
@@ -544,7 +533,7 @@ export default {
key: "onlineCompletedNum",
width: 130,
align: "center",
colSortNo: 9,
colSortNo: 8,
visible: true,
customRender: (text) => {return !text.value?'0':text.value;}
},
@@ -555,7 +544,7 @@ export default {
key: "onlineCompletedDuration",
width: 160,
align: "center",
colSortNo: 10,
colSortNo: 9,
visible: true,
customRender: (text) => {return !text.value?'0':text.value;}
},
@@ -594,6 +583,17 @@ export default {
customRender: (text) => {return !text.value && text.value != 0?'0%':text.value + "%";}
},
*/
{
title: "项目完成数",
dataIndex: "projectCompletedNum",
ellipsis: true,
key: "projectCompletedNum",
width: 120,
align: "center",
colSortNo: 10,
visible: true,
customRender: (text) => {return !text.value?'0':text.value;}
},
{
title: "项目完成率",
dataIndex: "projectCompletedRate",