|
@@ -90,8 +90,9 @@
|
|
|
</div>
|
|
|
</template>
|
|
|
<HcTable
|
|
|
- ref="tableRef" :column="tableColumn" :datas="tableData" :loading="tableLoading" is-check
|
|
|
- border @selection-change="tableSelection"
|
|
|
+ ref="tableRef" :column="tableColumn" :datas="tableData" :loading="tableLoading"
|
|
|
+ is-new :index-style="{ width: 60 }" is-check :check-style="{ width: 29 }"
|
|
|
+ @selection-change="tableSelection"
|
|
|
>
|
|
|
<template #materialCount="{ row }">{{ row.materialCount === -1 ? "" : row.materialCount }}</template>
|
|
|
<template #representativeCount="{ row }">
|
|
@@ -211,7 +212,7 @@
|
|
|
>
|
|
|
<HcTable
|
|
|
:column="linksApproachTableColumn" :datas="linksApproachTableData"
|
|
|
- :is-index="false" :loading="linksApproachTableLoading" border
|
|
|
+ :is-index="false" :loading="linksApproachTableLoading" is-new
|
|
|
>
|
|
|
<template #materialType="{ row }">{{ getRowTableMaterialType(row.materialType) }}</template>
|
|
|
<template #action="{ row }">
|
|
@@ -248,7 +249,7 @@
|
|
|
:loading="copyTableLoading" :show="copyTableModal" is-table title="复制样品登记信息" widths="60rem"
|
|
|
@close="copyTableModalClose" @save="copyTableClick"
|
|
|
>
|
|
|
- <HcTable :column="copyTableColumn" :datas="copyTableData" border>
|
|
|
+ <HcTable :column="copyTableColumn" :datas="copyTableData" is-new :index-style="{ width: 60 }">
|
|
|
<template #specificationNumber="{ row }">
|
|
|
<el-input v-model="row.specificationNumber" placeholder="请输入样品编号" />
|
|
|
</template>
|