Commit 2933919e authored by 黄奎's avatar 黄奎

11

parent f7d55755
...@@ -214,7 +214,7 @@ export default { ...@@ -214,7 +214,7 @@ export default {
}; };
let periods = { let periods = {
field: "periods", field: "periods",
title: this.$t('fnc.qishu'), title: this.$t('tips.qishu'),
titleAlign: "left", titleAlign: "left",
columnAlign: "left", columnAlign: "left",
isResize: true, isResize: true,
...@@ -236,30 +236,7 @@ export default { ...@@ -236,30 +236,7 @@ export default {
return `<span>${rowData.rejectCount <= 0 ? '' : rowData.rejectCount}</span>` return `<span>${rowData.rejectCount <= 0 ? '' : rowData.rejectCount}</span>`
} }
}; };
// let receivedPeopleCount = {
// field: "receivedPeopleCount",
// title: this.$t('objFill.v101.SalesModule.col.t2'),
// titleAlign: "left",
// columnAlign: "left",
// isResize: true,
// width: 100,
// orderBy: "",
// formatter: function(rowData, rowIndex, pagingIndex, field) {
// return `<span>${rowData.receivedPeopleCount <= 0 ? '' : rowData.receivedPeopleCount}</span>`
// }
// };
// let orderCount = {
// field: "orderCount",
// title: this.$t('objFill.v101.SalesModule.col.t3'),
// titleAlign: "left",
// columnAlign: "left",
// isResize: true,
// width: 80,
// orderBy: "",
// formatter: function(rowData, rowIndex, pagingIndex, field) {
// return `<span>${rowData.orderCount <= 0 ? '' : rowData.orderCount}</span>`
// }
// };
let uncollected = { let uncollected = {
field: "uncollected", field: "uncollected",
title: this.$t('objFill.v101.SalesModule.col.t4'), title: this.$t('objFill.v101.SalesModule.col.t4'),
...@@ -403,8 +380,7 @@ export default { ...@@ -403,8 +380,7 @@ export default {
this.columns.push(shaoJian); this.columns.push(shaoJian);
this.columns.push(shenHeShiJian); this.columns.push(shenHeShiJian);
this.columns.push(rejectCount); this.columns.push(rejectCount);
// this.columns.push(receivedPeopleCount);
// this.columns.push(orderCount);
this.columns.push(uncollected); this.columns.push(uncollected);
this.columns.push(lateCount); this.columns.push(lateCount);
this.columns.push(leaveEarlyCount); this.columns.push(leaveEarlyCount);
...@@ -430,7 +406,7 @@ export default { ...@@ -430,7 +406,7 @@ export default {
if(param.leaveEarlyCount!=''){ if(param.leaveEarlyCount!=''){
this.msg.OrderBy='a.LeaveEarlyCount '+param.leaveEarlyCount this.msg.OrderBy='a.LeaveEarlyCount '+param.leaveEarlyCount
} }
if(param.orderCount!=''){ if(param.orderCount && param.orderCount!='' && param.orderCount!='undefined'){
this.msg.OrderBy='a.OrderCount '+param.orderCount this.msg.OrderBy='a.OrderCount '+param.orderCount
} }
if(param.receivedPeopleCount && param.receivedPeopleCount!=''){ if(param.receivedPeopleCount && param.receivedPeopleCount!=''){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment