Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
4dc581ef2b
@ -301,7 +301,7 @@
|
||||
v-for="(item,index) in cardFuelDieselList" :key="index"
|
||||
:class="activeKey === index ? 'select' : ''"
|
||||
@click="recharge(index)">
|
||||
<div class="top1"><span class="amount1">{{ item.incomeLitres }}</span>L</div>
|
||||
<!-- <div class="top1"><span class="amount1">{{ item.incomeLitres }}</span>L</div>-->
|
||||
<div>售价<span class="amount">{{ item.rechargeBalance }}</span>元</div>
|
||||
<div>锁价<span class="amount">{{ item.lockupPrice }}</span>/升</div>
|
||||
</div>
|
||||
@ -1971,9 +1971,9 @@ export default {
|
||||
|
||||
.mon2 {
|
||||
width: 20%;
|
||||
height: 75px;
|
||||
height: 70px;
|
||||
border: 0.5px #dadfe6 solid;
|
||||
line-height: 25px;
|
||||
line-height: 35px;
|
||||
border-radius: 5px;
|
||||
text-align: center;
|
||||
margin: 0 10px;
|
||||
|
@ -2178,8 +2178,5 @@ export default {
|
||||
.custom-tree-box{
|
||||
margin-right: 10px;
|
||||
}
|
||||
.el-tree .el-tree-node__content .el-checkbox {
|
||||
display: none;
|
||||
}
|
||||
</style>
|
||||
|
||||
|
@ -424,7 +424,7 @@
|
||||
mt_user_id = #{cardFuelRecord.mtUserId}
|
||||
and store_id = #{cardFuelRecord.storeId}
|
||||
and expire_time > NOW()
|
||||
<if test=" cardFuelRecord.oil_type != null">
|
||||
<if test=" cardFuelRecord.oilType != null and cardFuelRecord.oilType != ''">
|
||||
and oil_type = #{cardFuelRecord.oilType}
|
||||
</if>
|
||||
</where>
|
||||
|
@ -44,4 +44,13 @@ export function getUserVoName(data) {
|
||||
})
|
||||
}
|
||||
|
||||
// 获取用户囤油卡锁价信息
|
||||
export function getRecord(data) {
|
||||
return request({
|
||||
url: '/business/marketingActivity/cardFuelRecord/getRecordByUserId',
|
||||
method: 'get',
|
||||
params: data
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
|
@ -4108,6 +4108,9 @@
|
||||
this.map.recordId = this.recordId
|
||||
this.map.userId = this.member.id
|
||||
this.map.payUser = this.member.mobile
|
||||
this.map.levelAmount = this.oilDiscount
|
||||
this.map.activeAmount = this.fullReduction
|
||||
|
||||
|
||||
let _this = this;
|
||||
if (this.payType=="APPLET_CODE"){
|
||||
|
@ -215,10 +215,10 @@
|
||||
<span v-if="oilInfo.length>0">{{ oilInfo[0].couponAmount || 0 }}</span>
|
||||
</el-descriptions-item>
|
||||
<el-descriptions-item label="油品满减/折扣活动优惠">
|
||||
<span v-if="oilInfo.length>0">{{ oilInfo[0].deductionAmount || 0 }}</span>
|
||||
<span v-if="oilInfo.length>0">{{ oilInfo[0].activeAmount || 0 }}</span>
|
||||
</el-descriptions-item>
|
||||
<el-descriptions-item label="油品会员等级优惠">
|
||||
<span v-if="oilInfo.length>0">{{ cashierOrder.oilDiscountAmount - oilInfo[0].deductionAmount - oilInfo[0].couponAmount || 0 }}</span>
|
||||
<span v-if="oilInfo.length>0">{{ oilInfo[0].levelAmount || 0}}</span>
|
||||
</el-descriptions-item>
|
||||
<el-descriptions-item label="油品优惠总额">{{ cashierOrder.oilDiscountAmount }}</el-descriptions-item>
|
||||
<el-descriptions-item label="商品优惠总额">{{ cashierOrder.goodsDiscountAmount }}</el-descriptions-item>
|
||||
|
@ -302,7 +302,7 @@
|
||||
v-for="(item,index) in cardFuelDieselList" :key="index"
|
||||
:class="activeKey === index ? 'select' : ''"
|
||||
@click="recharge(index)">
|
||||
<div class="top1"><span class="amount1">{{ item.incomeLitres }}</span>L</div>
|
||||
<!-- <div class="top1"><span class="amount1">{{ item.incomeLitres }}</span>L</div>-->
|
||||
<div>售价<span class="amount">{{ item.rechargeBalance }}</span>元</div>
|
||||
<div>锁价<span class="amount">{{ item.lockupPrice }}</span>/升</div>
|
||||
</div>
|
||||
@ -2344,9 +2344,9 @@ export default {
|
||||
|
||||
.mon2 {
|
||||
width: 20%;
|
||||
height: 75px;
|
||||
height: 70px;
|
||||
border: 0.5px #dadfe6 solid;
|
||||
line-height: 25px;
|
||||
line-height: 35px;
|
||||
border-radius: 5px;
|
||||
text-align: center;
|
||||
margin: 0 10px;
|
||||
|
Loading…
Reference in New Issue
Block a user