处理问题
This commit is contained in:
parent
79dfb00c47
commit
00c7eb6a7d
@ -164,11 +164,14 @@ export default {
|
||||
},
|
||||
{
|
||||
align: 'center',
|
||||
title: '姓名',
|
||||
title: '姓名(网格数)',
|
||||
key: 'B',
|
||||
keyName: 'name',
|
||||
fixed: 'left',
|
||||
width: 140
|
||||
width: 140,
|
||||
render(row) {
|
||||
return `${row.B}(${row.gridCount})`
|
||||
}
|
||||
},
|
||||
{
|
||||
align: 'center',
|
||||
@ -205,14 +208,6 @@ export default {
|
||||
key: 'E',
|
||||
keyName: 'shouldReportCount',
|
||||
width: 60,
|
||||
// render(row, index) {
|
||||
// return h('a', {
|
||||
// href: 'javascript:void(0);',
|
||||
// onClick() {
|
||||
// vueSelf.onReportDayClick(row, index)
|
||||
// }
|
||||
// }, row.E)
|
||||
// }
|
||||
},
|
||||
{
|
||||
align: 'center',
|
||||
@ -626,13 +621,21 @@ export default {
|
||||
},
|
||||
{
|
||||
align: 'center',
|
||||
title: '应发绩效工资',
|
||||
title: '应发(浮动)绩效工资',
|
||||
key: 'AF',
|
||||
keyName: 'shouldPay',
|
||||
fixed: 'right',
|
||||
width: 100,
|
||||
render(row, index) {
|
||||
return vueSelf.computeAF(row);
|
||||
let score = vueSelf.computeAE(row);
|
||||
if(score <= 100 && score >= 85) {
|
||||
return `${333 * row.gridCount}(${500 * row.gridCount})`;
|
||||
} else if(score >= 75) {
|
||||
return `${333 * row.gridCount}(0)`;
|
||||
} else if(score >= 60) {
|
||||
return `${333 * row.gridCount}(0)`;
|
||||
}
|
||||
return `${333 * row.gridCount}(0)`;
|
||||
}
|
||||
},
|
||||
{
|
||||
@ -937,9 +940,9 @@ export default {
|
||||
} else if(score >= 75) {
|
||||
return '良';
|
||||
} else if(score >= 60) {
|
||||
return '一般';
|
||||
return '合格';
|
||||
}
|
||||
return '差';
|
||||
return '不合格';
|
||||
},
|
||||
onSearchClick() {
|
||||
this.listData();
|
||||
@ -1047,9 +1050,9 @@ export default {
|
||||
}).then(({ data }) => {
|
||||
data.forEach((item, index) => {
|
||||
item.A = index + 1;
|
||||
item.F = item.E === 0 ? 0 : item.D / item.E;
|
||||
item.H = item.F * item.G;
|
||||
item.J = item.F * item.I;
|
||||
item.F = item.E === 0 ? 0 : (item.D / item.E).toFixed(2);
|
||||
item.H = Math.min(item.F * item.G, item.D);
|
||||
item.J = Math.min(item.F * item.I, item.D);
|
||||
item.L = (item.K > 10 ? 10 : item.K) * 0.5;
|
||||
item.S = item.R * 0.2;
|
||||
})
|
||||
|
@ -165,7 +165,7 @@ export default {
|
||||
{
|
||||
align: 'center',
|
||||
title: '不合格人员数',
|
||||
key: 'E',
|
||||
key: 'D',
|
||||
keyName: 'signUnPassCount',
|
||||
width: 60
|
||||
},
|
||||
|
@ -25,8 +25,8 @@ const router = createRouter({
|
||||
// axios
|
||||
const createAxios = {
|
||||
install(app, options) {
|
||||
// axios.defaults.baseURL = 'http://127.0.0.1:8087/bigdata';
|
||||
axios.defaults.baseURL = '/bigdata';
|
||||
axios.defaults.baseURL = 'http://127.0.0.1:8087/bigdata';
|
||||
// axios.defaults.baseURL = '/bigdata';
|
||||
axios.defaults.timeout = 20000;
|
||||
app.config.globalProperties.$axios = axios;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user