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="{backgroundImage:`url(${backgroundImg6})`,backgroundSize: '167px 95px',backgroundPosition: 'center 2px',backgroundRepeat:'no-repeat'}"
></div>
<div style="text-align: center; color: #909399">综合评估</div>
<div style="margin-top: 20px;">风险调整系数<span style="font-weight: bold; color: #2EAE44; "></span></div>
</div>
</div>
@ -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<HTMLDivElement | null>(null);
const chartInstance = ref<ECharts | null>(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',