Commit b93c6a33 by caoyanzhi

修改取值

parent 8a3da24c
......@@ -227,17 +227,17 @@ export default {
if (tempVal == "frozenStatus") {
returnVal = "会员状态";
}
if (tempVal == "costFeeReceivable") {
returnVal = "消费总额";
if (tempVal == "costFeePaid") {
returnVal = "消费总额(实付)";
}
if (tempVal == "lastCostReceivable") {
returnVal = "最近消费";
if (tempVal == "lastCostPaid") {
returnVal = "最近消费(实付)";
}
if (tempVal == "highCost") {
returnVal = "最高单笔(应收)";
}
if (tempVal == "highCostReceivable") {
returnVal = "最高单笔";
if (tempVal == "highCostPaid") {
returnVal = "最高单笔(实付)";
}
return returnVal;
},
......
......@@ -165,7 +165,7 @@
:key="index">
<el-table-column
:fixed="item === 'name'"
v-if="item == 'name' || item == 'highCost' || item == 'highCostReceivable' || item == 'grade' || item == 'status' || item == 'channel' || item == 'createCardStoreName' || item == 'cardNo' || item == 'forzenStatus' || item == 'mainStoreName' || item == 'costFeeReceivable' || item == 'lastCostReceivable'"
v-if="item == 'name' || item == 'highCost' || item == 'highCostPaid' || item == 'grade' || item == 'status' || item == 'channel' || item == 'createCardStoreName' || item == 'cardNo' || item == 'forzenStatus' || item == 'mainStoreName' || item == 'costFeePaid' || item == 'lastCostPaid'"
:prop="item"
:label="item | formatField"
width="160"
......@@ -341,17 +341,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
......@@ -1079,4 +1079,4 @@ export default { ...wechattotal };
color: #1890ff;
cursor: pointer;
}
</style>
\ No newline at end of file
</style>
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