导出数据
@@ -175,16 +176,21 @@ export default {
tableDataTotal: 0,
projectName: "",
projectNameList: [
+ {
+ id: 0,
+ value: '',
+ label: "全部",
+ },
{
id: 1,
value: "0",
label: "未开始",
},
- {
- id: 2,
- value: "2",
- label: "进行中",
- },
+ //{
+ // id: 2,
+ //value: "2",
+ // label: "进行中",
+ // },
{
id: 3,
value: "1",
@@ -200,8 +206,9 @@ export default {
title: "工号",
dataIndex: "studentUserNo",
key: "studentUserNo",
- width: 50,
+ width: "20%",
align: "center",
+ ellipsis: true,
className: "h head",
customRender: (text) => {
return (
@@ -215,8 +222,9 @@ export default {
title: "姓名",
dataIndex: "studentName",
key: "studentName",
- width: 50,
+ width: "10%",
align: "center",
+ ellipsis: true,
className: "h head",
customRender: (text) => {
return (
@@ -230,9 +238,11 @@ export default {
title: "所在部门",
dataIndex: "studentDepartName",
key: "studentDepartName",
- width: 60,
+ width: "20%",
align: "center",
+
className: "h",
+ ellipsis: true,
customRender: (text) => {
return (
@@ -245,8 +255,9 @@ export default {
title: "所在岗位",
dataIndex: "studentJobName",
key: "studentJobName",
- width: 60,
+ width: "10%",
align: "center",
+ ellipsis: true,
className: "h",
customRender: (text) => {
return (
@@ -260,8 +271,9 @@ export default {
title: "学员关卡",
dataIndex: "currentStageName",
key: "currentStageName",
- width: 60,
+ width: "10%",
align: "center",
+ ellipsis: true,
className: "h",
customRender: () => {
return (
@@ -275,8 +287,9 @@ export default {
title: "完成时间",
dataIndex: "lastStudyTime",
key: "lastStudyTime",
- width: 100,
+ width: "15%",
align: "center",
+ ellipsis: true,
className: "h",
customRender: (text) => {
return (
@@ -290,8 +303,9 @@ export default {
title: "任务状态",
dataIndex: "finishStatus",
key: "finishStatus",
- width: 60,
+ width: "10%",
align: "center",
+ ellipsis: true,
className: "h",
customRender: (text) => {
return (
diff --git a/src/components/drawers/router/RouterEvaluationManage.vue b/src/components/drawers/router/RouterEvaluationManage.vue
index 050cac7e..c70633ed 100644
--- a/src/components/drawers/router/RouterEvaluationManage.vue
+++ b/src/components/drawers/router/RouterEvaluationManage.vue
@@ -26,7 +26,7 @@
起止时间:{{ datasource.startTime }} ~ {{ datasource.endTime }}
- 起止时间:—
+
-
+
导出数据
diff --git a/src/components/drawers/router/RouterExaminationManage.vue b/src/components/drawers/router/RouterExaminationManage.vue
index d8ba8895..b1711cea 100644
--- a/src/components/drawers/router/RouterExaminationManage.vue
+++ b/src/components/drawers/router/RouterExaminationManage.vue
@@ -57,10 +57,10 @@
-
+
导出数据
diff --git a/src/components/drawers/router/RouterFaceTeachManage.vue b/src/components/drawers/router/RouterFaceTeachManage.vue
index 3dd6cf5f..35717f54 100644
--- a/src/components/drawers/router/RouterFaceTeachManage.vue
+++ b/src/components/drawers/router/RouterFaceTeachManage.vue
@@ -63,10 +63,10 @@
-
+
diff --git a/src/components/student/TableStudent.vue b/src/components/student/TableStudent.vue
index 69b12142..7f2898a1 100644
--- a/src/components/student/TableStudent.vue
+++ b/src/components/student/TableStudent.vue
@@ -699,7 +699,7 @@ const exportStu = () => {
window.open(
`${
process.env.VUE_APP_PROXY_URL
- }admin/student/exportTaskStudent?type=${3}&pid=${props.id}`
+ }admin/student/exportTaskStudent?type=${3}&pid=${props.id}&thirdType=2`
);
};