细节调整

This commit is contained in:
dzl
2025-09-19 15:25:47 +08:00
parent 8022bbd3a9
commit befc5a19c3
2 changed files with 3 additions and 3 deletions

View File

@@ -119,8 +119,8 @@
</el-table-column>
<el-table-column label="预收款余额变化" width="175">
<template #default="{ row }">
<div class="amount-red">转出用户¥{{ Math.abs(row.from_user_balance) }}</div>
<div class="amount">转入用户¥{{ Math.abs(row.to_user_balance) }}</div>
<div class="amount-red">转出用户¥{{ row.from_user_balance }}</div>
<div class="amount">转入用户¥{{ row.to_user_balance }}</div>
</template>
</el-table-column>
<el-table-column label="金额" width="100">

View File

@@ -127,7 +127,7 @@
<el-table-column label="位置" width="170">
<template #default="{ row }">
<span>{{ row.province_name + ' ' + row.city_name + ' ' + row.district_name || '-' }}</span>
<span>{{ (row.province_name || '-') + ' ' + (row.city_name || '-') + ' ' + (row.district_name || '-') }}</span>
</template>
</el-table-column>