|
|
@@ -27,9 +27,8 @@
|
|
|
</template>
|
|
|
|
|
|
<template #table-column-debt="{scope}">
|
|
|
- <span style="color:red;font-weight:bold;font-size:13px;">
|
|
|
- {{ scope.row.debt == 1 ? '赊' : '' }}
|
|
|
- </span>
|
|
|
+ <span style="color:red;font-weight:bold;font-size:13px;" v-if="scope.row.debt == 1">赊</span>
|
|
|
+ <span v-else>-</span>
|
|
|
</template>
|
|
|
|
|
|
<template #table-column-addTime="{scope}">
|