修改部分预览,数据完整性,暂态列表等bug调整

This commit is contained in:
sjl
2025-12-24 10:41:04 +08:00
parent a52021572a
commit dbb6a9f72b
10 changed files with 100 additions and 38 deletions

View File

@@ -91,7 +91,7 @@ const tableStore = new TableStore({
},
{
field: 'devCapacity',
title: '供电终端容量(MVA )',
title: '供电设备容量(MVA )',
minWidth: 160
},
{
@@ -167,7 +167,7 @@ tableStore.table.params.runFlag = []
tableStore.table.params.searchValue = ''
const runFlagList = [
{ id: 0, name: '运' },
{ id: 0, name: '运' },
{ id: 1, name: '检修' },
{ id: 2, name: '停运' },
{ id: 3, name: '调试' },

View File

@@ -62,7 +62,13 @@ const tableStore = new TableStore({
tableStore.table.params.searchValue = ''
provide('tableStore', tableStore)
onMounted(() => {
onMounted(() => {
TableHeaderRef.value.setDatePicker([
{ label: '月份', value: 3 },
{ label: '周', value: 4 },
{ label: '自定义', value: 5 }
])
tableStore.index()
})
</script>