|
@@ -57,6 +57,9 @@
|
|
|
<template #reportNo="{row}">
|
|
|
<span :class="[row?.isSelectedStatus===1?'text-green':'']">{{ row?.reportNo }}</span>
|
|
|
</template>
|
|
|
+ <template #status="{row}">
|
|
|
+ <span >{{ row?.status==1?'合格':'不合格' }}</span>
|
|
|
+ </template>
|
|
|
</HcTable>
|
|
|
<HcTable v-if="fileModalradio==3" ref="dialogTableRef" :column="filedialogTableColumn1"
|
|
|
:datas="filedialogTableData" :loading="filedialogTableLoading" isCheck
|
|
@@ -64,6 +67,9 @@
|
|
|
<template #reportNo="{row}">
|
|
|
<span :class="[row?.isSelectedStatus===1?'text-green':'']">{{ row?.reportNo }}</span>
|
|
|
</template>
|
|
|
+ <template #status="{row}">
|
|
|
+ <span >{{ row?.status==1?'合格':'不合格' }}</span>
|
|
|
+ </template>
|
|
|
</HcTable>
|
|
|
|
|
|
</div>
|
|
@@ -308,7 +314,7 @@ const filedialogTableColumn1 = ref([
|
|
|
{key: 'reportNo', name: '报告编号'},
|
|
|
{key: 'reportDate', name: '报告日期'},
|
|
|
{key: 'projectPosition', name: '工程用途及部位'},
|
|
|
- {key: 'detectionResultName', name: '检测结果'},
|
|
|
+ {key: 'status', name: '检测结果'},
|
|
|
])
|
|
|
|
|
|
//多选
|