fix:我的订单、我的券单个多个商品时不显示返回按钮
This commit is contained in:
parent
8ad41eb59d
commit
6f189fc737
|
@ -20,7 +20,7 @@
|
|||
|
||||
<body>
|
||||
<div id="app">
|
||||
<img class="backPresTy" @click="backHandler"
|
||||
<img class="backPresTy" @click="backHandler" v-if="goodsCount<2"
|
||||
src=" https://lsxdemall.oss-cn-beijing.aliyuncs.com/MarketingSystem/img/backprepageBtn.png" alt="">
|
||||
<ul class="tab">
|
||||
<li v-for="item in tabList" :key="item.id" @click="tabHandle(item)">
|
||||
|
@ -105,7 +105,8 @@
|
|||
popTitle: '',
|
||||
popText: '',
|
||||
popStatus: 1, /*1 成功 2提示 3失败 */
|
||||
redirect: false
|
||||
redirect: false,
|
||||
goodsCount: 0 /* 商品数量 */
|
||||
}
|
||||
},
|
||||
|
||||
|
@ -115,6 +116,7 @@
|
|||
},
|
||||
|
||||
created () {
|
||||
this.goodsCount = localStorage.getItem('goodsCount');
|
||||
this.getCouponList()
|
||||
},
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
<body>
|
||||
<div id="app">
|
||||
<!-- 弹出提示 -->
|
||||
<img class="backPresTy" @click="backHandler"
|
||||
<img class="backPresTy" @click="backHandler" v-if="goodsCount<2"
|
||||
src=" https://lsxdemall.oss-cn-beijing.aliyuncs.com/MarketingSystem/img/backprepageBtn.png" alt="">
|
||||
|
||||
<div id="refresh" @touchstart="touchStart($event)" @touchmove="touchMove($event)"
|
||||
|
|
Loading…
Reference in New Issue