This commit is contained in:
若拙_233 2025-11-03 16:28:57 +08:00
parent 632c85b73c
commit ac705ecfcb

View File

@ -529,7 +529,6 @@
style="text-align: center; font-size: 30px; font-weight: bold; margin-top: 10px; height: 95px;" 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'}" :style="{backgroundImage:`url(${backgroundImg6})`,backgroundSize: '167px 95px',backgroundPosition: 'center 2px',backgroundRepeat:'no-repeat'}"
></div> ></div>
<div style="text-align: center; color: #909399">综合评估</div>
<div style="margin-top: 20px;">风险调整系数<span style="font-weight: bold; color: #2EAE44; "></span></div> <div style="margin-top: 20px;">风险调整系数<span style="font-weight: bold; color: #2EAE44; "></span></div>
</div> </div>
</div> </div>
@ -1131,7 +1130,9 @@ const submit = () => {
api.valuations(data).then(res=>{ api.valuations(data).then(res=>{
loading.value = false loading.value = false
getHistoryList() getHistoryList()
// window.location.reload() setTimeout(() => {
window.location.reload()
}, 1000);
}) })
} }
const getHistoryList = () => { const getHistoryList = () => {
@ -1191,7 +1192,6 @@ const risk = ref<HTMLDivElement | null>(null);
const chartInstance = ref<ECharts | null>(null); const chartInstance = ref<ECharts | null>(null);
const getEcharts= (item, value, color1, color2)=>{ const getEcharts= (item, value, color1, color2)=>{
console.log(item)
if (!item) return; if (!item) return;
// //
chartInstance.value = echarts.init(item); chartInstance.value = echarts.init(item);
@ -1200,14 +1200,16 @@ const getEcharts= (item, value, color1, color2)=>{
title: [{ title: [{
text: '综合评估', text: '综合评估',
top: '80%', top: '80%',
left: '36%',
textStyle: { textStyle: {
color: '#909399', color: '#909399',
fontSize: 13, fontSize: 13,
fontWeight: 100, fontWeight: 100,
} }
}, { }, {
text: value, text: value<10? '0' + value: value,
top: '45%', top: '45%',
left: '40%',
textStyle: { textStyle: {
fontSize: '26', fontSize: '26',
color: '#000', color: '#000',