Commit d031161b5669137c37a4216031b7e46062275d75

Authored by zhiyangdu
1 parent 816aa9be

填写地址事件穿透

src/pages/pointsExchangeRecords/pointsExchangeRecords.vue
@@ -29,7 +29,7 @@ @@ -29,7 +29,7 @@
29 兑换时间 {{item.create_time*1000 | datetime('yyyy-MM-dd hh:mm:ss')}} 29 兑换时间 {{item.create_time*1000 | datetime('yyyy-MM-dd hh:mm:ss')}}
30 </div> 30 </div>
31 <div v-show="item.shop_type == 1 && !item.address_name && !item.address_address && !item.address_phone" class="btn-box"> 31 <div v-show="item.shop_type == 1 && !item.address_name && !item.address_address && !item.address_phone" class="btn-box">
32 - <div @click="addAddressInfo(item)" class="btn"> 32 + <div @click.stop="addAddressInfo(item)" class="btn">
33 填写地址 33 填写地址
34 <img src="static/img/red_right_icon.png" alt=""/> 34 <img src="static/img/red_right_icon.png" alt=""/>
35 </div> 35 </div>
@@ -82,6 +82,7 @@ export default { @@ -82,6 +82,7 @@ export default {
82 methods: { 82 methods: {
83 // 跳转原生商品详情页 83 // 跳转原生商品详情页
84 jumpOrderDes (item) { 84 jumpOrderDes (item) {
  85 +
85 if (item.shop_type == 1) { // 1实物 2是虚拟商品 3红包 86 if (item.shop_type == 1) { // 1实物 2是虚拟商品 3红包
86 // 判断APP内 87 // 判断APP内
87 if (this.isCNLive.value) { 88 if (this.isCNLive.value) {