fix:添加生成报告状态
This commit is contained in:
parent
ff18c04696
commit
4761553029
@ -44,7 +44,12 @@
|
||||
<span>{{ parseTime(scope.row.matchDateTime) }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="报告状态" prop="matchStatus" />
|
||||
<el-table-column label="报告状态" prop="reportSatus">
|
||||
<template #default="scope">
|
||||
<el-tag v-if="scope.row.reportSatus === 1" type="success">已生成</el-tag>
|
||||
<el-tag v-else>未生成</el-tag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||||
<template #default="scope">
|
||||
<el-tooltip content="查看" placement="top" v-if="scope.row.roleId !== 1">
|
||||
|
||||
@ -45,7 +45,12 @@
|
||||
<span>{{ parseTime(scope.row.matchDateTime) }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="报告状态" prop="matchStatus" />
|
||||
<el-table-column label="报告状态" prop="reportSatus">
|
||||
<template #default="scope">
|
||||
<el-tag v-if="scope.row.reportSatus === 1" type="success">已生成</el-tag>
|
||||
<el-tag v-else>未生成</el-tag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||||
<template #default="scope">
|
||||
<el-tooltip content="查看" placement="top" v-if="scope.row.roleId !== 1">
|
||||
|
||||
@ -40,7 +40,12 @@
|
||||
<span>{{ parseTime(scope.row.matchDateTime) }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="报告状态" prop="matchStatus"/>
|
||||
<el-table-column label="报告状态" prop="reportSatus">
|
||||
<template #default="scope">
|
||||
<el-tag v-if="scope.row.reportSatus === 1" type="success">已生成</el-tag>
|
||||
<el-tag v-else>未生成</el-tag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||||
<template #default="scope">
|
||||
<el-tooltip content="查看" placement="top" v-if="scope.row.roleId !== 1">
|
||||
|
||||
@ -43,7 +43,12 @@
|
||||
<span>{{ parseTime(scope.row.matchDateTime) }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="报告状态" prop="matchStatus" />
|
||||
<el-table-column label="报告状态" prop="reportSatus">
|
||||
<template #default="scope">
|
||||
<el-tag v-if="scope.row.reportSatus === 1" type="success">已生成</el-tag>
|
||||
<el-tag v-else>未生成</el-tag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||||
<template #default="scope">
|
||||
<el-tooltip content="查看" placement="top" v-if="scope.row.roleId !== 1">
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user