husq
2023-09-13 bae07cec6cfa99cadd98fb7eb0332cbde35a921e
src/pages/page-web/projects/project_list/add_page/components/ComTable.vue
@@ -1,7 +1,8 @@
<template>
    <div class="">
        <a-table class="ant-table-project" v-bind="$attrs" :row-selection="rowSelection" :columns="columns" :data-source="model.userList" />
    </div>
  <div class="">
    <a-table class="ant-table-project" v-bind="$attrs" :row-selection="rowSelection" :columns="columns"
      :data-source="model.userList" />
  </div>
</template>
<script setup lang="ts">
@@ -44,35 +45,35 @@
<style scoped lang="scss">
.ant-table-project :deep(.project_dark) td {
            background-color: #232323;
            color: #fff;
            border: none;
            border-bottom: 1px solid #4f4f4f;
            padding: 10px;
        }
  background-color: #232323 !important;
  color: #fff !important;
  border: none !important;
  border-bottom: 1px solid #4f4f4f;
  padding: 10px !important;
}
        .ant-table-project :deep(.ant-table-placeholder) {
            background: #434343;
            border: none !important;
        }
.ant-table-project :deep(.ant-table-placeholder) {
  background: #434343 !important;
  border: none !important;
}
        .ant-table-project :deep(.ant-table-thead) th {
            background: #3c3c3c;
            color: #fff;
            border: 1px solid #4f4f4f;
            padding: 10px;
        }
.ant-table-project :deep(.ant-table-thead) th {
  background: #3c3c3c !important;
  color: #fff !important;
  border: 1px solid #4f4f4f !important;
  padding: 10px !important;
}
        .ant-table-project :deep(.ant-table-body) table {
            border: 1px solid #4f4f4f;
            border-right: 1px solid #4f4f4f;
        }
.ant-table-project :deep(.ant-table-body) table {
  border: 1px solid #4f4f4f !important;
  border-right: 1px solid #4f4f4f !important;
}
        .ant-table-project :deep(.ant-table-body) {
            background: #434343;
        }
.ant-table-project :deep(.ant-table-body) {
  background: #434343 !important;
}
        .ant-table-project :deep(.ant-empty-description) {
            color: #fff;
        }
.ant-table-project :deep(.ant-empty-description) {
  color: #fff !important;
}
</style>