|
@@ -2,25 +2,25 @@
|
|
|
<HcTable ui="no-border" is-new :column="tableColumn" :datas="tableData" :loading="tableLoading" :is-index="false">
|
|
|
<template #integrality="{ row }">
|
|
|
<div v-if="row.isEdit" class="table-score-input-box">
|
|
|
- <el-input-number v-model="row.integrality" placeholder="" :controls="false" style="width: 100%;" :precision="0" />
|
|
|
+ <el-input-number v-model="row.integrality" placeholder="" :controls="false" style="width: 100%;" />
|
|
|
</div>
|
|
|
<span v-else>{{ row.integrality || '-' }}</span>
|
|
|
</template>
|
|
|
<template #integralityDeduction="{ row }">
|
|
|
<div v-if="row.isEdit" class="table-score-input-box">
|
|
|
- <el-input-number v-model="row.integralityDeduction" placeholder="" :controls="false" style="width: 100%;" :precision="0" />
|
|
|
+ <el-input-number v-model="row.integralityDeduction" placeholder="" :controls="false" style="width: 100%;" />
|
|
|
</div>
|
|
|
<span v-else>{{ row.integralityDeduction || '-' }}</span>
|
|
|
</template>
|
|
|
<template #normativeDeduction="{ row }">
|
|
|
<div v-if="row.isEdit" class="table-score-input-box">
|
|
|
- <el-input-number v-model="row.normativeDeduction" placeholder="" :controls="false" style="width: 100%;" :precision="0" />
|
|
|
+ <el-input-number v-model="row.normativeDeduction" placeholder="" :controls="false" style="width: 100%;" />
|
|
|
</div>
|
|
|
<span v-else>{{ row.normativeDeduction || '-' }}</span>
|
|
|
</template>
|
|
|
<template #normative="{ row }">
|
|
|
<div v-if="row.isEdit" class="table-score-input-box">
|
|
|
- <el-input-number v-model="row.normative" placeholder="" :controls="false" style="width: 100%;" :precision="0" />
|
|
|
+ <el-input-number v-model="row.normative" placeholder="" :controls="false" style="width: 100%;" />
|
|
|
</div>
|
|
|
<span v-else>{{ row.normative || '-' }}</span>
|
|
|
</template>
|