Commit 1bd4f417 authored by 黄奎's avatar 黄奎
parents 648d8bb2 c38d38ca
...@@ -382,8 +382,8 @@ export default { ...@@ -382,8 +382,8 @@ export default {
return `<span>${rowData.xiaoShouKaiTuan <= 0 && !rowData.xiaoShouKaiTuan ? '' : rowData.xiaoShouKaiTuan}</span>` return `<span>${rowData.xiaoShouKaiTuan <= 0 && !rowData.xiaoShouKaiTuan ? '' : rowData.xiaoShouKaiTuan}</span>`
} }
}; };
let PlanDmcPriceCount = { let planDmcPriceCount = {
field: "PlanDmcPriceCount", field: "planDmcPriceCount",
title: "用款计划违规", title: "用款计划违规",
titleAlign: "left", titleAlign: "left",
columnAlign: "left", columnAlign: "left",
...@@ -391,7 +391,7 @@ export default { ...@@ -391,7 +391,7 @@ export default {
width: 120, width: 120,
orderBy: "", orderBy: "",
formatter: function(rowData, rowIndex, pagingIndex, field) { formatter: function(rowData, rowIndex, pagingIndex, field) {
return `<span>${rowData.PlanDmcPriceCount <= 0 && !rowData.PlanDmcPriceCount ? '' : rowData.PlanDmcPriceCount}</span>` return `<span>${rowData.planDmcPriceCount <= 0 && !rowData.planDmcPriceCount ? '' : rowData.planDmcPriceCount}</span>`
} }
}; };
this.columns = []; this.columns = [];
...@@ -412,7 +412,7 @@ export default { ...@@ -412,7 +412,7 @@ export default {
this.columns.push(leaveEarlyCount); this.columns.push(leaveEarlyCount);
this.columns.push(complainCount); this.columns.push(complainCount);
this.columns.push(discountPrice); this.columns.push(discountPrice);
this.columns.push(PlanDmcPriceCount) this.columns.push(planDmcPriceCount)
this.isReady = true; this.isReady = true;
}, },
sortChange(param) { sortChange(param) {
...@@ -455,9 +455,9 @@ export default { ...@@ -455,9 +455,9 @@ export default {
this.msg.OrderBy='a.AppletOrderCount '+param.appletOrderCount this.msg.OrderBy='a.AppletOrderCount '+param.appletOrderCount
} }
if(param.PlanDmcPriceCount!=''){ if(param.planDmcPriceCount!=''){
this.msg.OrderBy='a.PlanDmcPriceCount '+param.PlanDmcPriceCount this.msg.OrderBy='a.PlanDmcPriceCount '+param.planDmcPriceCount
} }
//this.tableData = this.orderBy(d, ["incomeVal"], param.income).results; //this.tableData = this.orderBy(d, ["incomeVal"], param.income).results;
this.getList(); this.getList();
......
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