|
|
@@ -58,10 +58,10 @@
|
|
|
</template>
|
|
|
|
|
|
<template #table-column-actDebt="{scope}">
|
|
|
- <span v-if="Number(scope.row.debtAmount) > Number(scope.row.balance)" style="font-weight:bold;cursor: pointer;" @click="goDebtChange(scope.row)">
|
|
|
+ <span v-if="Number(scope.row.debtAmount) > Number(scope.row.balance)" style="cursor: pointer;" @click="goDebtChange(scope.row)">
|
|
|
{{ parseFloat((Number(scope.row.debtAmount)-Number(scope.row.balance)).toFixed(2)) }}
|
|
|
</span>
|
|
|
- <span v-else style="font-weight:bold;cursor: pointer;" @click="goDebtChange(scope.row)">-</span>
|
|
|
+ <span v-else style="cursor: pointer;" @click="goDebtChange(scope.row)">-</span>
|
|
|
</template>
|
|
|
|
|
|
<template #table-column-debt="{scope}">
|
|
|
@@ -70,7 +70,7 @@
|
|
|
</template>
|
|
|
|
|
|
<template #table-column-debtLimit="{scope}">
|
|
|
- <span v-if="scope.row.debt == 1" style="font-weight:bold;color:green;cursor: pointer;" @click="changeDebtAmount(scope.row)">
|
|
|
+ <span v-if="scope.row.debt == 1" style="color:green;cursor: pointer;" @click="changeDebtAmount(scope.row)">
|
|
|
{{ scope.row.debtLimit ? parseFloat(scope.row.debtLimit) : 0 }}
|
|
|
</span>
|
|
|
<span v-else>
|