소스 검색

关联试验文件查询参数修改

duy 2 년 전
부모
커밋
b5ec25fcfa
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 4 4
      src/views/data-fill/components/ListItem.vue

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

@@ -306,13 +306,13 @@
                 </div>
                 <div class="dialog-table">
                         <HcTable ref="dialogTableRef" :loading="filedialogTableLoading" :column="filedialogTableColumn" :datas="filedialogTableData" isCheck @selection-change="filedialogTableSelection"  v-if="fileModalradio==1">
-                             <template #name="{row}">
-                                <span :class="[row.isSelectedStatus===1?'text-green':'']" @click="filetableRowName(row)">{{row?.recordNo}}</span>
+                             <template #recordNo="{row}">
+                                <span :class="[row?.isSelectedStatus==1?'text-green':'']" @click="filetableRowName(row)">{{row?.recordNo}}</span>
                             </template>
                         </HcTable>
                         <HcTable ref="dialogTableRef" :loading="filedialogTableLoading" :column="filedialogTableColumn1" :datas="filedialogTableData" isCheck @selection-change="filedialogTableSelection" v-else>
-                             <template #name="{row}">
-                                <span :class="[row.isSelectedStatus===1?'text-green':'']" @click="filetableRowName(row)">{{row?.recordNo}}</span>
+                             <template #recordNo="{row}">
+                                <span :class="[row?.isSelectedStatus==1?'text-green':'']" @click="filetableRowName(row)">{{row?.recordNo}}</span>
                             </template>
                         </HcTable>
                 </div>