Commit a2f53e8f by caoyanzhi

修改取值

parent 2956d9ef
......@@ -173,8 +173,8 @@ export default {
if (tempVal == "attentionDate") {
returnVal = "关注时间";
}
if (tempVal == "costFeeReceivable") {
returnVal = "消费总额";
if (tempVal == "costFeePaid") {
returnVal = "消费总额(实付)";
}
if (tempVal == "costTimes") {
returnVal = "消费次数";
......@@ -182,8 +182,8 @@ export default {
if (tempVal == "lastCostTime") {
returnVal = "最近消费时间";
}
if (tempVal == "lastCostReceivable") {
returnVal = "最近消费";
if (tempVal == "lastCostPaid") {
returnVal = "最近消费(实付)";
}
if (tempVal == "avgCost") {
returnVal = "客单价";
......@@ -236,8 +236,8 @@ export default {
if (tempVal == "lastCost") {
returnVal = "最近消费(应收)";
}
if (tempVal == "highCostReceivable") {
returnVal = "最高单笔";
if (tempVal == "highCostPaid") {
returnVal = "最高单笔(实付)";
}
if (tempVal == "highCost") {
returnVal = "最高单笔(应收)";
......
......@@ -155,7 +155,7 @@
<el-table-column
:fixed="item === 'name'"
:width="item == 'name' ? '150' : ''"
v-if="item == 'name' || item == 'highCost' || item == 'highCostReceivable' || item == 'grade' || item == 'status' || item == 'channel' || item == 'frozenStatus' || item == 'costFeeReceivable' || item == 'lastCostReceivable'"
v-if="item == 'name' || item == 'highCost' || item == 'highCostPaid' || item == 'grade' || item == 'status' || item == 'channel' || item == 'frozenStatus' || item == 'costFeePaid' || item == 'lastCostPaid'"
:prop="item"
:label="item | formatField"
>
......@@ -325,17 +325,17 @@
<span v-else-if="item == 'cardNo'">
{{ scope.row.cardNo }}
</span>
<span v-else-if="item == 'costFeeReceivable'">
{{ scope.row.costFeeReceivable }}
<span v-else-if="item == 'costFeePaid'">
{{ scope.row.costFeePaid }}
</span>
<span v-else-if="item == 'lastCostReceivable'">
{{ scope.row.lastCostReceivable }}
<span v-else-if="item == 'lastCostPaid'">
{{ scope.row.lastCostPaid }}
</span>
<span v-else-if="item == 'highCost'">
{{ scope.row.highCost }}
</span>
<span v-else-if="item == 'highCostReceivable'">
{{ scope.row.highCostReceivable }}
<span v-else-if="item == 'highCostPaid'">
{{ scope.row.highCostPaid }}
</span>
<div v-else-if="item == 'frozenStatus'">
<span
......
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