43 lines
1.1 KiB
Python
43 lines
1.1 KiB
Python
<template>
|
|
<div>
|
|
<el-card>
|
|
<div slot="header" class="clearfix">
|
|
<span>认证结果评价</span>
|
|
</div>
|
|
<!-- <el-table
|
|
ref="elTable"
|
|
v-loading="listLoading"
|
|
:data="tableData"
|
|
style="width: 100%;"
|
|
border
|
|
fit
|
|
stripe
|
|
highlight-current-row
|
|
>
|
|
<el-table-column label="评定表编号">
|
|
<template slot-scope="scope">{{ scope.row.number }}</template>
|
|
</el-table-column>
|
|
<el-table-column label="工厂检查结论">
|
|
<template slot-scope="scope">{{ scope.row.conclusion }}</template>
|
|
</el-table-column>
|
|
<el-table-column label="不符合项分类">
|
|
<template slot-scope="scope">{{ scope.row.create_time }}</template>
|
|
</el-table-column>
|
|
<el-table-column label="创建时间">
|
|
<template slot-scope="scope">{{ scope.row.create_time }}</template>
|
|
</el-table-column>
|
|
</el-table> -->
|
|
</el-card>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
name: "access",
|
|
data() {
|
|
return {
|
|
listLoading: false,
|
|
tableData: [],
|
|
};
|
|
},
|
|
};
|
|
</script> |