修改问题

This commit is contained in:
TS-QD1 2025-08-26 14:36:38 +08:00
parent 24823060ce
commit 12bae65db0
4 changed files with 15 additions and 8 deletions

View File

@ -130,6 +130,7 @@ export default {
fixed: 'left',
width: 60
},
/*
{
align: 'center',
title: '签到情况30分',
@ -145,6 +146,7 @@ export default {
}, row.C);
}
},
*/
{
align: 'center',
title: '网格案件调度情况',
@ -380,7 +382,7 @@ export default {
this.modal.scoring.rowIndex = index;
this.modal.scoring.score = others;
this.modal.scoring.reason = row.reasonJ;
this.modal.scoring.maxScore = 20;
this.modal.scoring.maxScore = 50;
this.modal.scoring.minScore = 0;
this.modal.scoring.userName = row.B;
this.modal.scoring.title = '组织评价';

View File

@ -173,6 +173,7 @@ export default {
return `${row.B}(${row.gridCount})`
}
},
/*
{
align: 'center',
title: '片区巡查40分',
@ -190,6 +191,7 @@ export default {
}, row.C);
}
},
*/
{
align: 'center',
title: '巡查上报、案件受理过程质量',
@ -509,7 +511,7 @@ export default {
},
{
align: 'center',
title: '人口信息质量管理(15)',
title: '人口信息质量管理(35)', // 15 -> 35
key: 'X',
keyName: 'populationQuality',
width: 80,
@ -538,7 +540,7 @@ export default {
}
}, row.Y);
}
},*/
},
{
align: 'center',
title: '抽查情况',
@ -555,6 +557,7 @@ export default {
}, row.Z);
}
},
*/
]
},
/*{
@ -865,7 +868,7 @@ export default {
this.modal.scoring.rowIndex = index;
this.modal.scoring.score = populationQuality;
this.modal.scoring.reason = row.reasonX;
this.modal.scoring.maxScore = 15;
this.modal.scoring.maxScore = 35; // 15 -> 35
this.modal.scoring.minScore = 0;
this.modal.scoring.userName = row.B;
this.modal.scoring.title = '人口信息质量';
@ -1119,7 +1122,7 @@ export default {
}
item.W = item.communityPopulationRate === 1 ? 15 : no100Score;*/
item.W = (item.communityPopulationRate * 15).toFixed(2);
item.X = 15;
item.X = 35; // 15 -> 35
// item.Y = parseFloat((4 * item.communityPopulationRate).toFixed(2));
// ()
/*item.AA = item.communityPopulationRate >= 0.75 ? 3 : (item.communityPopulationRate >= 0.6 ? 1.5 : 0);

View File

@ -148,6 +148,7 @@ export default {
fixed: 'left',
width: 60
},
/*
{
align: 'center',
title: '巡片签到100分',
@ -163,6 +164,7 @@ export default {
}, row.C);
}
},
*/
{
align: 'center',
title: '复杂案件数量',
@ -487,7 +489,7 @@ export default {
delete this.modal.scoring.type;
},
computeM(row) {
return Math.max(row.C - row.G - row.H - row.I - row.J - row.K - row.L, 0);
return Math.max(100 - row.G - row.H - row.I - row.J - row.K - row.L, 0);
},
computeComplex(row) {
let complex = row.complex;

View File

@ -26,8 +26,8 @@ const router = createRouter({
// axios
const createAxios = {
install(app, options) {
axios.defaults.baseURL = 'http://219.147.99.164:8082/bigdata';
// axios.defaults.baseURL = 'http://127.0.0.1:8087/bigdata';
// axios.defaults.baseURL = 'http://61.138.88.81:8081/bigdata';
axios.defaults.baseURL = 'http://127.0.0.1:8087/bigdata';
// axios.defaults.baseURL = '/bigdata';
axios.defaults.timeout = 20000;
app.config.globalProperties.$axios = axios;