|
@@ -1,7 +1,7 @@
|
|
|
<template>
|
|
|
<hc-body ids="carry-spot-checks-layout-target1" split :loading="treeLoading" :project-nmae="projectInfo.name">
|
|
|
<template #tree>
|
|
|
- <HcTree :project-id="projectId" :contract-id="contractId" :auto-expand-keys="treeAutoExpandKeys" @nodeTap="projectTreeClick" @nodeLoading="treeNodeLoading" @menuTap="ElTreeMenuClick" />
|
|
|
+ <HcTree :project-id="projectId" :contract-id="contractId" :auto-expand-keys="treeAutoExpandKeys" @node-tap="projectTreeClick" @node-loading="treeNodeLoading" @menu-tap="ElTreeMenuClick" />
|
|
|
</template>
|
|
|
<hc-new-card v-show="!isCarrySpotChecksDrawer" title="已形成的案卷">
|
|
|
<HcTable ref="tableRef" :column="tableColumn" :datas="tableData" :loading="tableLoading" is-new :index-style="{ width: 60 }" @row-click="tableRowClick">
|
|
@@ -85,7 +85,7 @@
|
|
|
<div class="hc-csc-data-box" :style="{ height: checkId ? '' : 'calc(100% - 363px)' }">
|
|
|
<HcTable v-if="tabTypeKey === 'tab1'" :column="cscTableColumn1" :datas="cscTableData1" :loading="cscTableLoading" is-new :is-arr-index="false">
|
|
|
<template #name="{ row }">
|
|
|
- <div :class="row.id === checkId ? 'text-link' : 'text-hover'" @click="changePdf(row)">{{ row?.fileName }}</div>
|
|
|
+ <div :class="row.id === checkId ? 'bg-orange-400' : 'text-hover'" @click="changePdf(row)">{{ row?.fileName }}</div>
|
|
|
</template>
|
|
|
</HcTable>
|
|
|
|