|
@@ -194,10 +194,10 @@
|
|
|
<div class="hc-import-modal-table-box">
|
|
|
<HcTable ref="tableImportRef" :column="tableColumn" :datas="tableImportData" :loading="tableImportLoading" isCheck @selection-change="tableImportSelection">
|
|
|
<template #status="{row}">
|
|
|
- {{row.status === 1?'启用中':'已停用'}}
|
|
|
+ {{row.status == 1?'启用中':'已停用'}}
|
|
|
</template>
|
|
|
<template #isCalibration="{row}">
|
|
|
- {{row.isCalibration === 1?'是':'否'}}
|
|
|
+ {{row.isCalibration == 1?'是':'否'}}
|
|
|
</template>
|
|
|
</HcTable>
|
|
|
</div>
|