|
@@ -306,13 +306,13 @@
|
|
</div>
|
|
</div>
|
|
<div class="dialog-table">
|
|
<div class="dialog-table">
|
|
<HcTable ref="dialogTableRef" :loading="filedialogTableLoading" :column="filedialogTableColumn" :datas="filedialogTableData" isCheck @selection-change="filedialogTableSelection" v-if="fileModalradio==1">
|
|
<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>
|
|
</template>
|
|
</HcTable>
|
|
</HcTable>
|
|
<HcTable ref="dialogTableRef" :loading="filedialogTableLoading" :column="filedialogTableColumn1" :datas="filedialogTableData" isCheck @selection-change="filedialogTableSelection" v-else>
|
|
<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>
|
|
</template>
|
|
</HcTable>
|
|
</HcTable>
|
|
</div>
|
|
</div>
|