Browse Source

style: 修改个人中心

wanggaokun 3 weeks ago
parent
commit
e28e848c4b
3 changed files with 7 additions and 4 deletions
  1. 5 0
      src/styles/element-dark.scss
  2. 0 2
      src/styles/element.scss
  3. 2 2
      src/views/taais/homePage/index.vue

+ 5 - 0
src/styles/element-dark.scss

@@ -8,6 +8,8 @@ html.dark {
   --el-border-color-hover: #7fffff;
   --el-text-color-placeholder: #abf2f2;
 
+  // --el-bg-color-overlay: transparent;
+
   // --el-bg-color: transparent;
 
   /* wangEditor */
@@ -24,6 +26,9 @@ html.dark {
   .w-e-menu-tooltip-v5::before {
     color: #eeeeee;
   }
+  .el-card {
+    --el-card-bg-color: transparent;
+  }
 
   /* login */
   // .login-container {

+ 0 - 2
src/styles/element.scss

@@ -242,8 +242,6 @@ label {
     background-image: url('@/assets/images/bg0.png') !important;
   }
 
-  // }
-
   // el-table 表格样式
   .el-table {
     flex: 1;

+ 2 - 2
src/views/taais/homePage/index.vue

@@ -121,7 +121,7 @@ const createTaskNew = () => {
 }
 // 表格配置项
 const columns = reactive<ColumnProps<User.ResUserList>[]>([
-  { type: 'selection', fixed: 'left', width: 70 },
+  { type: 'selection', width: 70 },
   { prop: 'name', label: '任务名称' },
   // {
   //   prop: 'status',
@@ -144,7 +144,7 @@ const columns = reactive<ColumnProps<User.ResUserList>[]>([
     //   el: 'input'
     // }
   },
-  { prop: 'operation', label: '操作', width: 230, fixed: 'right' }
+  { prop: 'operation', label: '操作', width: 230 }
 ])
 </script>
 <style scoped lang="scss">