mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-21 00:36:46 +08:00
讲师管理bug
This commit is contained in:
@@ -371,6 +371,11 @@ const queryDrawer = () => {
|
||||
margin-right: 20px;
|
||||
}
|
||||
}
|
||||
.table{
|
||||
::v-deep .ant-table-cell-fix-right {
|
||||
width: 160px !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -618,6 +618,11 @@ const config = () => {
|
||||
margin-right: 20px;
|
||||
}
|
||||
}
|
||||
.table{
|
||||
::v-deep .ant-table-cell-fix-right {
|
||||
width: 160px !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -620,7 +620,7 @@ export default {
|
||||
customRender: (value) => {
|
||||
return (
|
||||
<div>
|
||||
{dayjs(value.record?.teachingDate).format("YYYY-MM-DD HH:mm")}
|
||||
{value.record?.teachingDate?dayjs(value.record?.teachingDate).format("YYYY-MM-DD HH:mm"):'-'}
|
||||
</div>
|
||||
);
|
||||
},
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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: '课程类型 ',
|
||||
|
||||
Reference in New Issue
Block a user