feat(credit): 添加涉案金额字段显示并调整开发环境配置
- 在信用判决债务人页面添加 involvedAmount 字段模板 - 当 involvedAmount 为空时回退到 amount 字段显示 - 注释掉开发环境中的 VITE_API_URL 配置项以避免冲突
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
VITE_APP_NAME=后台管理(开发环境)
|
||||
VITE_API_URL=http://127.0.0.1:9200/api
|
||||
#VITE_API_URL=http://127.0.0.1:9200/api
|
||||
#VITE_SERVER_API_URL=http://127.0.0.1:8000/api
|
||||
|
||||
|
||||
|
||||
@@ -35,6 +35,9 @@
|
||||
<template v-if="column.key === 'appellee'">
|
||||
{{ record.appellee || record.name }}
|
||||
</template>
|
||||
<template v-if="column.key === 'involvedAmount'">
|
||||
{{ record.involvedAmount || record.amount }}
|
||||
</template>
|
||||
<template v-if="column.key === 'caseNumber'">
|
||||
<template v-if="record.historyId">
|
||||
<span class="text-red-500 font-bold">{{
|
||||
|
||||
Reference in New Issue
Block a user