浏览代码

关联试验文件数据回显问题

duy 2 年之前
父节点
当前提交
8fccf87d5a
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      src/views/data-fill/components/ListItem.vue

+ 3 - 3
src/views/data-fill/components/ListItem.vue

@@ -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) => {