From 5eae2714a8877765213099fed0f2acf0bc4685d9 Mon Sep 17 00:00:00 2001 From: yuping <82253452@qq.com> Date: Sat, 4 Feb 2023 01:49:52 +0800 Subject: [PATCH] --fix bug --- src/App.vue | 16 + src/components/drawers/FaceManage.vue | 83 ++---- .../drawers/project/ProjectFaceTaskManage.vue | 50 +--- .../drawers/router/RouterFaceTeachManage.vue | 43 +-- src/utils/utils.js | 278 +++++++++--------- src/views/courselibrary/CoursewareManage.vue | 40 +-- src/views/learningpath/LearningPath.vue | 43 +-- src/views/projectcenter/ProjectManage.vue | 42 ++- 8 files changed, 259 insertions(+), 336 deletions(-) diff --git a/src/App.vue b/src/App.vue index 97503f1f..5ae4044b 100644 --- a/src/App.vue +++ b/src/App.vue @@ -114,6 +114,22 @@ const getDictList = (param) => api1.getDictTree({setCode: param,}).then((res) => height: 100%; } +.ant-table-wrapper { + .ant-table-content { + .ant-table-thead th { + background-color: #eff4fc !important; + text-align: center !important; + } + } + .ant-table-tbody > tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) > td { + background: #f6f9fd; + } +} + +.ant-btn-link { + padding: 0 !important; +} + #container { margin: 0; display: flex; diff --git a/src/components/drawers/FaceManage.vue b/src/components/drawers/FaceManage.vue index 5cfe8a12..4234541c 100644 --- a/src/components/drawers/FaceManage.vue +++ b/src/components/drawers/FaceManage.vue @@ -282,65 +282,36 @@ export default { const ListOpera = () => { let arr = state.tabledata; arr.map((value) => { - if(value.status == '已完成'){ - value.operation = ( -
@@ -87,18 +87,13 @@