Commit d031161b5669137c37a4216031b7e46062275d75
1 parent
816aa9be
填写地址事件穿透
Showing
1 changed file
with
2 additions
and
1 deletions
src/pages/pointsExchangeRecords/pointsExchangeRecords.vue
| ... | ... | @@ -29,7 +29,7 @@ |
| 29 | 29 | 兑换时间 {{item.create_time*1000 | datetime('yyyy-MM-dd hh:mm:ss')}} |
| 30 | 30 | </div> |
| 31 | 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 | 34 | <img src="static/img/red_right_icon.png" alt=""/> |
| 35 | 35 | </div> |
| ... | ... | @@ -82,6 +82,7 @@ export default { |
| 82 | 82 | methods: { |
| 83 | 83 | // 跳转原生商品详情页 |
| 84 | 84 | jumpOrderDes (item) { |
| 85 | + | |
| 85 | 86 | if (item.shop_type == 1) { // 1实物 2是虚拟商品 3红包 |
| 86 | 87 | // 判断APP内 |
| 87 | 88 | if (this.isCNLive.value) { | ... | ... |