|
@@ -308,7 +308,7 @@
|
|
|
<div class="dialog-table">
|
|
|
<HcTable ref="dialogTableRef1" :loading="filedialogTableLoading" :column="filedialogTableColumn" :datas="filedialogTableData" isCheck @selection-change="filedialogTableSelection1" v-if="fileModalradio==1">
|
|
|
<template #reportNo="{row}">
|
|
|
- <span :class="[row?.isSelectedStatus==1?'text-green':'']">{{row?.recordNo}}</span>
|
|
|
+ <span :class="[row?.isSelectedStatus==1?'text-green':'']">{{row?.reportNo}}</span>
|
|
|
</template>
|
|
|
</HcTable>
|
|
|
<HcTable ref="dialogTableRef2" :loading="filedialogTableLoading" :column="filedialogTableColumn1" :datas="filedialogTableData" isCheck @selection-change="filedialogTableSelection" v-if="fileModalradio==2">
|
|
@@ -1279,7 +1279,7 @@ const CTDdialogTableColumn = ref([
|
|
|
])
|
|
|
const filedialogTableColumn = ref([
|
|
|
// reportNo
|
|
|
- {key:'recordNo', name: '报告编号'},
|
|
|
+ {key:'reportNo', name: '报告编号'},
|
|
|
{key:'reportDate', name: '报告日期'},
|
|
|
{key:'projectPositionName', name: '工程用途及部位'},
|
|
|
{key:'detectionResultName', name: '检测结果'},
|
|
@@ -1288,7 +1288,7 @@ const filedialogTableColumn1 = ref([
|
|
|
// reportNo
|
|
|
{key:'reportNo', name: '报告编号'},
|
|
|
{key:'reportDate', name: '报告日期'},
|
|
|
- {key:'projectPositionName', name: '工程用途及部位'},
|
|
|
+ {key:'projectPosition', name: '工程用途及部位'},
|
|
|
{key:'detectionResultName', name: '检测结果'},
|
|
|
])
|
|
|
const CTDElTreeClick = (data,node,keys) => {
|