diff --git a/src/components/project/BatchLecturer.vue b/src/components/project/BatchLecturer.vue index 830ee900..ce467f8c 100644 --- a/src/components/project/BatchLecturer.vue +++ b/src/components/project/BatchLecturer.vue @@ -371,6 +371,11 @@ const queryDrawer = () => { margin-right: 20px; } } + .table{ + ::v-deep .ant-table-cell-fix-right { + width: 160px !important; + } + } } } diff --git a/src/components/project/ConfirmLecturer.vue b/src/components/project/ConfirmLecturer.vue index 69b7fd38..f524d677 100644 --- a/src/components/project/ConfirmLecturer.vue +++ b/src/components/project/ConfirmLecturer.vue @@ -618,6 +618,11 @@ const config = () => { margin-right: 20px; } } + .table{ + ::v-deep .ant-table-cell-fix-right { + width: 160px !important; + } + } } } diff --git a/src/views/lecturer/ExternalTeaching.vue b/src/views/lecturer/ExternalTeaching.vue index 54c9f8bc..dc324563 100644 --- a/src/views/lecturer/ExternalTeaching.vue +++ b/src/views/lecturer/ExternalTeaching.vue @@ -620,7 +620,7 @@ export default { customRender: (value) => { return (
- {dayjs(value.record?.teachingDate).format("YYYY-MM-DD HH:mm")} + {value.record?.teachingDate?dayjs(value.record?.teachingDate).format("YYYY-MM-DD HH:mm"):'-'}
); }, diff --git a/src/views/lecturer/LecturerAPPEdit.vue b/src/views/lecturer/LecturerAPPEdit.vue index a728add6..628cb916 100644 --- a/src/views/lecturer/LecturerAPPEdit.vue +++ b/src/views/lecturer/LecturerAPPEdit.vue @@ -954,6 +954,9 @@ export default { ellipsis: true, align: "center", width: 160, + customRender: ({text}) => { + return text || "0"; + } }, { title: '评分 ', @@ -962,6 +965,9 @@ export default { ellipsis: true, align: "center", width: 160, + customRender: ({text}) => { + return text || "-"; + } }, { title: '课程基准 ', @@ -1244,6 +1250,9 @@ export default { } .table{ padding-bottom: 70px; + ::v-deep .ant-table-cell-fix-right { + width: 160px !important; + } } } } diff --git a/src/views/lecturer/LecturerApproval.vue b/src/views/lecturer/LecturerApproval.vue index 623dfda0..c16a0ac3 100644 --- a/src/views/lecturer/LecturerApproval.vue +++ b/src/views/lecturer/LecturerApproval.vue @@ -983,6 +983,9 @@ ellipsis: true, align: "center", width: 120, + customRender: ({text}) => { + return text || "0"; + } }, { title: '评分 ', @@ -991,6 +994,9 @@ ellipsis: true, align: "center", width: 120, + customRender: ({text}) => { + return text || "-"; + } }, { title: '课程类型 ',