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

30 lines
760 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<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>
</div>
</template>
<script lang="tsx" setup>
import type {RawDataItem} from "@/api/check/interface";
const {tableData} = defineProps<{
tableData: RawDataItem[]
}>()
</script>
<style scoped>
</style>