Files
energy_storage/web/src/components/ComTable.vue
zhoumengru ee37e8b265 feat(system): 优化电价策略功能
- 添加删除策略功能
- 修复编辑策略时表单数据绑定问题
- 优化策略列表展示逻辑
- 调整策略表单验证方式
- 修改策略列表分页配置
2025-09-05 16:41:50 +08:00

444 lines
10 KiB
Vue

<template>
<div class="comtable">
<div class="table" ref="comtable">
<a-table
bordered
:loading="loading"
:columns="columns"
:scroll="scroll"
:data-source="data.realTableData"
:pagination="false"
:row-class-name="rowClassName"
row-key="id"
:expand-icon="expandIcon"
:row-selection="
data.newTableOpt.select
? {
selectedRowKeys: data.selectedRowKeys,
onChange: onSelectChange
}
: false
"
:expanded-row-keys="data.newTableOpt.expand ? data.expandedKeys : null"
size="middle"
:indent-size="30"
@resizeColumn="handleResizeColumn"
>
<template #bodyCell="{ column, record }">
<template v-if="column.scopedSlots">
<slot
v-bind="record"
:name="column.scopedSlots ? column.scopedSlots.customRender : ''"
></slot>
</template>
</template>
<template v-if="data.newTableOpt.expand" #expandedRowRender="{ record }">
<a-table
size="small"
:columns="innerColumns"
:data-source="record.currentLimitList"
:pagination="false"
>
<!-- <template #bodyCell="{ column, record_ }">
<template v-if="column.key === 'type'">
<span>
{{ getType(record_.type) }}
</span>
</template>
</template> -->
</a-table>
</template>
</a-table>
</div>
<div class="pagination" v-if="data.newTableOpt.page">
<a-pagination
v-model:current="data.newPageOption.page"
:total="data.newPageOption.count"
:page-size="data.newPageOption.pageSize"
@change="onChange"
show-size-changer
show-quick-jumper
:page-size-options="data.pageSizeOptions"
>
</a-pagination>
<div style="color: #7f8fa4; height: 30px; line-height: 30px; margin: 0 10px">
<span style="color: aqua; font-size: 18px; margin: 0 2px">{{
data.newPageOption.count
}}</span
>
</div>
</div>
</div>
</template>
<script setup>
// <a-select :dropdownMatchSelectWidth="false" size="small" placement="top" />
import {
nextTick,
ref,
toRefs,
reactive,
onMounted,
watch,
defineProps,
defineEmits,
defineExpose
} from 'vue'
const comtable = ref('')
const props = defineProps({
columns: { type: Array, default: () => [] },
tableData: { type: Array, default: () => [] },
tableOption: {
type: Object,
default: () => {
return {
loading: false,
page: true,
align: 'center',
expand: false,
select: true,
scroll: { y: 750 }
}
}
},
pageOption: {
type: Object,
default: () => {
return {
count: 1,
pageSize: 10,
page: 1
}
}
},
selectField: {
type: Array,
default: () => {
return []
}
}
// rowClick: {
// default: () => {}
// },
// tableH: {
// type: Number,
// },
})
function handleResizeColumn(w, col) {
col.width = w
}
const mountedScroll = () => {
// data.newColumns = [...props.columns]
// data.realTableData = [...props.tableData]
// // tableScoll()
}
const emit = defineEmits(['handlePagesizeChange'])
const data = reactive({
expandedKeys: [],
newColumns: [],
selectedRowKeys: [],
realColumns: [],
realTableData: [],
selectedRows: [],
defaultTabOpt: {
page: true,
align: 'center',
expand: false,
select: true
},
newPageOption: {},
newTableOpt: {},
pageSizeOptions: ['10', '20', '30', '40', '50', '100'],
mountedScroll
})
const loading = ref(false)
const scroll = ref({})
onMounted(async () => {
data.newColumns = [...props.columns]
data.realTableData = [...props.tableData]
await nextTick()
// console.log(props.tableH, 'props.tableH');
scroll.value = { y: comtable.value.offsetHeight - 56 }
})
watch(
() => props.tableData,
(n, o) => {
if (n) {
data.realTableData = [...n]
}
},
{ deep: true, immediate: true }
)
watch(
() => props.pageOption,
(n, o) => {
data.newPageOption = { ...n }
},
{ deep: true, immediate: true }
)
watch(
() => props.tableOption,
(n, o) => {
data.newTableOpt = { ...data.defaultTabOpt, ...n }
},
{ deep: true, immediate: true }
)
watch(
() => props.tableH,
(n, o) => {
if (n && n !== o) {
const pageH = data.newTableOpt.page ? 42 : 0
scroll.value = { y: n - pageH - 56 }
}
}
// { deep: true, immediate: true }
)
function rowClassName(record, index) {
return 'table-row'
}
function expandIcon(props) {}
function onChange(page, pageSize) {
data.newPageOption.page = page
data.newPageOption.pageSize = pageSize
emit('handlePagesizeChange', data.newPageOption)
}
function onSelectChange(selectedRowKeys, selectedRows) {
data.selectedRowKeys = selectedRowKeys
data.selectedRows = selectedRows
}
defineExpose({ ...toRefs(data), loading, mountedScroll, scroll: data.scroll })
</script>
<style lang="scss" scoped>
.comtable {
border-radius: 8px;
font-size: 14px;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: space-between;
.table {
flex: 1;
}
.pagination {
display: flex;
justify-content: flex-end;
margin-top: 10px;
// margin-bottom: 10px;
min-width: 420px;
height: 32px;
}
:deep(.ant-table) {
border-radius:20px 20px 0 0 !important;
overflow: hidden; /* 确保圆角生效 */
}
:deep(.ant-table-wrapper .ant-table.ant-table-bordered >.ant-table-container){
border-inline-start:none!important;
}
:deep(.ant-table-thead ){
background: linear-gradient(0deg, rgba(61, 254, 250, 0.2), rgba(61, 254, 250, 0.2)),
linear-gradient(
90deg,
rgba(61, 254, 250, 0) 0%,
rgba(0, 255, 251, 0.15) 50.17%,
rgba(61, 254, 250, 0) 100%
)!important;
}
:deep(.ant-table-thead > tr > th) {
border-inline: 1px solid transparent !important;
background: transparent;
color: #fff !important;
border-bottom: none !important; /* 可选:去除底部边框 */
}
}
:deep(
.ant-table-wrapper
.ant-table.ant-table-bordered
> .ant-table-container
> .ant-table-header
> table
) {
border-top: none !important;
border-inline-start: none !important;
}
:deep(.ant-checkbox-checked .ant-checkbox-inner) {
background-color: var(--table-header-bg) !important;
border: none !important;
}
:deep(.ant-checkbox-indeterminate .ant-checkbox-inner:after) {
background-color: var(--table-header-bg) !important;
}
:deep(.ant-pagination) {
.ant-pagination-item-link {
color: #fff !important;
height: 100% !important;
display: block !important;
}
.ant-pagination-prev,
.ant-pagination-next {
background: transparent !important;
color: #fff !important;
border: 1px solid $page-border;
button {
box-sizing: border-box;
}
}
.ant-select-selector {
border: none !important;
}
.ant-select-arrow {
color: #fff !important;
}
span.ant-input-affix-wrapper,
.ant-select,
.ant-picker {
width: 110px !important;
}
.ant-select-selection-item {
color: #fff !important;
border: 1px solid $page-border;
}
.ant-select-single:not(.ant-select-customize-input) .ant-select-selector {
background-color: transparent !important;
}
.ant-pagination-total-text,
.ant-pagination-options-quick-jumper {
color: #fff !important;
margin-inline-end: 9px !important;
}
.ant-pagination-options-quick-jumper input {
background-color: transparent !important;
// border: none !important;
color: #fff !important;
}
.ant-pagination-options .ant-pagination-options-size-changer .ant-select-selector {
padding: 0px !important;
color: #fff !important;
background-color: transparent !important;
.ant-select-selection-item {
padding: 0 10px;
}
}
.ant-select-dropdown {
top: -210px !important;
}
.ant-pagination-item {
&:not(.ant-pagination-item-active):hover {
background: #1c797a !important;
}
a {
color: #fff;
border-radius: 2px;
background: #1c797a !important;
}
}
.ant-pagination-item-active {
border: 1px solid transparent;
color: #fff;
background: #1c797a !important;
}
}
:deep(.ant-table-wrapper .ant-table.ant-table-bordered >.ant-table-container >.ant-table-body >table >tbody>tr>td){
border-inline-end: none!important;
}
//表格样式
:deep(.ant-table-tbody) {
color: var(--theme-text-default) !important;
> tr {
&:hover {
> .ant-table-cell {
// background-color: red !important;
}
}
}
}
:deep(.ant-table-body) {
color:#fff;
background: $table-bg !important;
border: 1px solid $table-border;
border-radius: 0px 0px 20px 20px;
.ant-table-cell {
background: var(--theme-bg) !important;
}
.ant-table-row-selected {
td {
background-color: var(--table-select) !important;
}
}
.ant-table-cell-fix-right.ant-table-cell-fix-right-first,
.ant-table-cell-fix-left {
box-shadow: none !important;
padding: 8px !important;
margin: 0 !important;
}
.ant-empty-description{
color:#fff;
}
}
:deep(.ant-table-wrapper) {
.ant-table-cell-scrollbar,
.ant-table.ant-table-bordered > .ant-table-container {
box-shadow: none !important;
&>.ant-table-body >table >tbody>tr>td{
border-bottom: none !important;
}
}
}
:deep(.ant-table-wrapper .ant-table) {
background-color: transparent !important;
}
:deep(
.ant-table-wrapper
.ant-table.ant-table-bordered
> .ant-table-container
> .ant-table-body
> table
> tbody
> tr
> .ant-table-cell-fix-right-first::after
) {
// border-inline-end: 1px solid var(--theme-bg) !important;
}
:deep(
.ant-table-wrapper
.ant-table.ant-table-bordered
> .ant-table-container
> .ant-table-header
> table
> thead
> tr
> .ant-table-cell-fix-right-first::after
) {
// border-inline-end: 1px solid var(--theme-bg) !important;
}
:deep(.ant-table-wrapper .ant-table-thead th.ant-table-column-has-sorters:hover) {
background: var(--table-select) !important;
}
</style>