Files
pqs-9100_client/frontend/src/views/home/components/dataCheckRawDataTable.vue

30 lines
760 B
Vue
Raw Normal View History

<template>
2024-12-18 15:56:59 +08:00
<div class="table-main">
<el-table :data="tableData" stripe border :header-cell-style="{ textAlign: 'center' } "
:cell-style="{ textAlign: 'center' }" height="335px"
style="width: 100%;">
<el-table-column type="index" label="序号" width="70" fixed="left"/>
<el-table-column prop="updateTime" label="数据时间"/>
<el-table-column prop="L1" label="L1V"/>
<el-table-column prop="L2" label="L2V"/>
<el-table-column prop="L3" label="L3V"/>
</el-table>
2024-12-18 15:56:59 +08:00
</div>
</template>
<script lang="tsx" setup>
import type {RawDataItem} from "@/api/check/interface";
2024-12-18 15:56:59 +08:00
const {tableData} = defineProps<{
tableData: RawDataItem[]
2024-12-18 15:56:59 +08:00
}>()
2024-12-05 18:14:43 +08:00
2024-12-18 15:56:59 +08:00
</script>
<style scoped>
</style>