修改电网一张图

This commit is contained in:
GGJ
2024-04-30 11:18:41 +08:00
parent 6f34458256
commit 83a5446b3c
13 changed files with 276 additions and 281 deletions

View File

@@ -51,7 +51,7 @@ import { defaultAttribute } from '@/components/table/defaultAttribute'
import { mainHeight } from '@/utils/layout'
import { ref, reactive } from 'vue'
const height = mainHeight(80).height
const dataList = ref([{}])
const dataList = ref([])
const stateChange = (val: number, id: number) => {}
const tactics = (row: any, id: number) => {

View File

@@ -13,8 +13,8 @@
</template>
</TableHeader>
<div class="box">
<MyEChart style='flex: 1.2;' :options="options1" />
<MyEChart style='flex: 2;' :options="options2" />
<MyEChart style="flex: 1.2" :options="options1" />
<MyEChart style="flex: 2" :options="options2" />
</div>
<Table ref="tableRef" />
</div>
@@ -82,11 +82,7 @@ const tableStore = new TableStore({
],
loadCallback: () => {
tableStore.table.data = [
{
state: 2
}
]
tableStore.table.data = []
}
})

View File

@@ -167,11 +167,7 @@ const tableStore = new TableStore({
],
loadCallback: () => {
tableStore.table.data = [
{
state: 2
}
]
tableStore.table.data = []
}
})