mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-06 09:26:44 +08:00
修改展示字段顺序
This commit is contained in:
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user