From ac705ecfcb3e77974788c9b4a85beb7c42d37f02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8B=A5=E6=8B=99=5F233?= <342879248@qq.com> Date: Mon, 3 Nov 2025 16:28:57 +0800 Subject: [PATCH] debug --- web/src/views/pages/index.vue | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/web/src/views/pages/index.vue b/web/src/views/pages/index.vue index 92cff21..db8eb8a 100644 --- a/web/src/views/pages/index.vue +++ b/web/src/views/pages/index.vue @@ -529,7 +529,6 @@ style="text-align: center; font-size: 30px; font-weight: bold; margin-top: 10px; height: 95px;" :style="{backgroundImage:`url(${backgroundImg6})`,backgroundSize: '167px 95px',backgroundPosition: 'center 2px',backgroundRepeat:'no-repeat'}" > -
综合评估
风险调整系数:
@@ -1131,7 +1130,9 @@ const submit = () => { api.valuations(data).then(res=>{ loading.value = false getHistoryList() - // window.location.reload() + setTimeout(() => { + window.location.reload() + }, 1000); }) } const getHistoryList = () => { @@ -1191,7 +1192,6 @@ const risk = ref(null); const chartInstance = ref(null); const getEcharts= (item, value, color1, color2)=>{ - console.log(item) if (!item) return; // 创建实例 chartInstance.value = echarts.init(item); @@ -1200,14 +1200,16 @@ const getEcharts= (item, value, color1, color2)=>{ title: [{ text: '综合评估', top: '80%', + left: '36%', textStyle: { color: '#909399', fontSize: 13, fontWeight: 100, } }, { - text: value, + text: value<10? '0' + value: value, top: '45%', + left: '40%', textStyle: { fontSize: '26', color: '#000',