Commit bc6d143c by member

应收消费字段

parent 0cf7e8a3
......@@ -172,7 +172,7 @@ export default {
if (tempVal == "attentionDate") {
returnVal = "关注时间";
}
if (tempVal == "costAll") {
if (tempVal == "costFeeReceivable") {
returnVal = "消费总额";
}
if (tempVal == "costTimes") {
......@@ -181,7 +181,7 @@ export default {
if (tempVal == "lastCostTime") {
returnVal = "最近消费时间";
}
if (tempVal == "lastCost") {
if (tempVal == "lastCostReceivable") {
returnVal = "最近消费";
}
if (tempVal == "avgCost") {
......@@ -229,16 +229,16 @@ export default {
if (tempVal == "frozenStatus") {
returnVal = "会员状态";
}
if (tempVal == "costFeeReceivable") {
if (tempVal == "costAll") {
returnVal = "消费总额(应收)";
}
if (tempVal == "lastCostReceivable") {
if (tempVal == "lastCost") {
returnVal = "最近消费(应收)";
}
if (tempVal == "highCost") {
if (tempVal == "highCostReceivable") {
returnVal = "最高单笔";
}
if (tempVal == "highCostReceivable") {
if (tempVal == "highCost") {
returnVal = "最高单笔(应收)";
}
return returnVal;
......
......@@ -200,7 +200,7 @@
<p class="lheigth0"><span>{{ singleInfo.mainStoreName }}</span></p>
<div class="singelinfo-cost">
<div class="singelinfo-costitem">
<p>{{ singleInfo.costFeeReceivable }}</p>
<p>{{ singleInfo.costFee }}</p>
<p>消费总额</p>
</div>
<div class="singelinfo-costitem">
......@@ -208,7 +208,7 @@
<p>消费次数</p>
</div>
<div class="singelinfo-costitem">
<p>{{ singleInfo.lastCostReceivable }}</p>
<p>{{ singleInfo.lastCost }}</p>
<p>最近消费</p>
</div>
</div>
......@@ -272,7 +272,7 @@
<div>{{ scope.row.attentionTime | formatTimeHMS }}</div>
</div>
<span v-else-if="item == 'costAll'">
{{ scope.row.costFeeReceivable }}
{{ scope.row.costFee }}
</span>
<span v-else-if="item == 'costTimes'">
{{ scope.row.costTimes }}
......@@ -281,7 +281,7 @@
{{ scope.row.lastCostTime }}
</span>
<span v-else-if="item == 'lastCost'">
{{ scope.row.lastCostReceivable }}
{{ scope.row.lastCost }}
</span>
<span v-else-if="item == 'avgCost'">
{{ scope.row.avgCost }}
......@@ -326,16 +326,16 @@
{{ scope.row.cardNo }}
</span>
<span v-else-if="item == 'costFeeReceivable'">
{{ scope.row.costFee }}
{{ scope.row.costFeeReceivable }}
</span>
<span v-else-if="item == 'lastCostReceivable'">
{{ scope.row.lastCost }}
{{ scope.row.lastCostReceivable }}
</span>
<span v-else-if="item == 'highCost'">
{{ scope.row.highCostReceivable }}
{{ scope.row.highCost }}
</span>
<span v-else-if="item == 'highCostReceivable'">
{{ scope.row.highCost }}
{{ scope.row.highCostReceivable }}
</span>
<div v-else-if="item == 'frozenStatus'">
<span
......@@ -397,7 +397,7 @@
<p class="lheigth0"><span>{{ singleInfo.mainStoreName }}</span></p>
<div class="singelinfo-cost">
<div class="singelinfo-costitem">
<p>{{ singleInfo.costFeeReceivable }}</p>
<p>{{ singleInfo.costFee }}</p>
<p>消费总额</p>
</div>
<div class="singelinfo-costitem">
......@@ -405,7 +405,7 @@
<p>消费次数</p>
</div>
<div class="singelinfo-costitem">
<p>{{ singleInfo.lastCostReceivable }}</p>
<p>{{ singleInfo.lastCost }}</p>
<p>最近消费</p>
</div>
</div>
......@@ -467,7 +467,7 @@
<div>{{ scope.row.attentionTime | formatTimeHMS }}</div>
</div>
<span v-else-if="item == 'costAll'">
{{ scope.row.costFeeReceivable }}
{{ scope.row.costFee }}
</span>
<span v-else-if="item == 'costTimes'">
{{ scope.row.costTimes }}
......@@ -521,17 +521,17 @@
<span v-else-if="item == 'cardNo'">
{{ scope.row.cardNo }}
</span>
<span v-else-if="item == 'costFeeReceivable'">
<span v-else-if="item == 'costFee'">
{{ scope.row.costFee }}
</span>
<span v-else-if="item == 'lastCostReceivable'">
{{ scope.row.lastCost }}
{{ scope.row.lastCostReceivable }}
</span>
<span v-else-if="item == 'highCost'">
{{ scope.row.highCostReceivable }}
</span>
<span v-else-if="item == 'highCostReceivable'">
{{ scope.row.highCost }}
{{ scope.row.highCostReceivable }}
</span>
<div v-else-if="item == 'frozenStatus'">
<span
......
......@@ -901,7 +901,6 @@ export default {
transformCheckFields() {
for (let i = 0; i < this.checkedFields.length; i++) {
let index = FieldsReceivable.findIndex(el => el == this.checkedFields[i]);
console.log(index);
if (index == -1) {
continue;
}
......
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