修改小程序使用优惠券bug

master
lemon橪 2021-09-26 10:30:28 +08:00
parent 0b2bf1faf1
commit cebde87682
4 changed files with 11 additions and 10 deletions

View File

@ -18,8 +18,6 @@
"path": "pages/tabbar/cart/cartList", "path": "pages/tabbar/cart/cartList",
"style": { "style": {
"navigationBarTitleText": "购物车", "navigationBarTitleText": "购物车",
"navigationStyle": "custom",
"navigationBarBackgroundColor": "#fff" "navigationBarBackgroundColor": "#fff"
} }
@ -720,7 +718,7 @@
] ]
} }
], ],
"globalStyle": { "globalStyle": {
"navigationBarTextStyle": "black", "navigationBarTextStyle": "black",
"navigationBarTitleText": "Lili商城", "navigationBarTitleText": "Lili商城",
"titleColor": "#303133", "titleColor": "#303133",

View File

@ -69,6 +69,10 @@ export default {
routerVal: "", // routerVal: "", //
}; };
}, },
onLoad(options){
this.routerVal = options
},
watch: { watch: {
current(val) { current(val) {
console.log(this.$store.state.cantUseCoupons); console.log(this.$store.state.cantUseCoupons);
@ -114,10 +118,11 @@ export default {
</script> </script>
<style scoped lang="scss"> <style scoped lang="scss">
.desc { .desc {
height: 100%; height: 220rpx;
flex: 2;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
justify-content: center; justify-content: space-around;
} }
.end-time, .end-time,
.reason { .reason {
@ -204,14 +209,14 @@ export default {
align-items: center; align-items: center;
width: 450rpx; width: 450rpx;
font-size: $font-sm; font-size: $font-sm;
height: 100%; height: 220rpx;
background-color: #ffffff; background-color: #ffffff;
overflow: hidden; overflow: hidden;
position: relative; position: relative;
> view:nth-child(1) { > view:nth-child(1) {
color: #666666; color: #666666;
margin-left: 20rpx; margin-left: 20rpx;
line-height: 3em;
> view:nth-child(1) { > view:nth-child(1) {
color: #ff6262; color: #ff6262;
font-size: 30rpx; font-size: 30rpx;

View File

@ -150,7 +150,7 @@
<u-row> <u-row>
<u-col :span="9">优惠金额</u-col> <u-col :span="9">优惠金额</u-col>
<u-col :span="3" textAlign="right" v-if=" orderMessage.priceDetailDTO.couponPrice"> <u-col :span="3" textAlign="right" v-if=" orderMessage.priceDetailDTO.couponPrice">
-{{ orderMessage.priceDetailDTO.couponPrice | unitPrice }}</u-col> <span class="main-color"> -{{ orderMessage.priceDetailDTO.couponPrice | unitPrice }}</span></u-col>
<u-col :span="3" textAlign="right" v-else>0.00</u-col> <u-col :span="3" textAlign="right" v-else>0.00</u-col>
</u-row> </u-row>
</div> </div>

View File

@ -1,7 +1,5 @@
<template> <template>
<div class="wrapper"> <div class="wrapper">
<u-navbar :isBack="false" title="购物车"></u-navbar>
<!-- 空白页--> <!-- 空白页-->
<view v-if="cartDetail.cartList == '' || cartDetail.cartList == [] || !cartDetail" class="empty"> <view v-if="cartDetail.cartList == '' || cartDetail.cartList == [] || !cartDetail" class="empty">
<image src="/static/emptyCart.png" mode="aspectFit"></image> <image src="/static/emptyCart.png" mode="aspectFit"></image>