Commit 8257256f6937b277fcf58e07af87e0905262b3a3

Authored by zhiyangdu
1 parent ef1a8d80

兑换记录注释地址填写按钮

src/pages/pointsExchangeRecords/pointsExchangeRecords.vue
... ... @@ -36,10 +36,10 @@
36 36 </div>
37 37 <div v-show="item.shop_type == 1 && !item.address_name && !item.address_address && !item.address_phone" class="btn-box">
38 38 <!-- 需要填写地址状态 -->
39   - <div @click.stop="addAddressInfo(item)" class="btn">
  39 + <!-- <div @click.stop="addAddressInfo(item)" class="btn">
40 40 填写地址
41 41 <img src="static/img/red_right_icon.png" alt=""/>
42   - </div>
  42 + </div> -->
43 43 <!-- 已填写地址等待发货状态 -->
44 44 <div v-show="item.sendtime && item.sendtime>0" class="look_logistics">
45 45 查看物流
... ... @@ -57,14 +57,14 @@
57 57 没有更多了
58 58 </div>
59 59 <!-- 地址信息组件 -->
60   - <app-address-toast ref="itemsInfo" @toUpdate="updateAddressInfo" v-show="pointsToast_control"></app-address-toast>
  60 + <!-- <app-address-toast ref="itemsInfo" @toUpdate="updateAddressInfo" v-show="pointsToast_control"></app-address-toast> -->
61 61 </div>
62 62 </template>
63 63  
64 64 <script>
65 65 // 引入组件
66 66 import { Toast, Indicator } from "mint-ui";
67   -import appAddressToast from "@/components/appAddressToast/appAddressToast";
  67 +// import appAddressToast from "@/components/appAddressToast/appAddressToast";
68 68 export default {
69 69 data () {
70 70 return {
... ... @@ -73,12 +73,12 @@ export default {
73 73 isMore: 1, // 0没有更多1有更多
74 74 addressInfo: null, // 暂存已选商品发货地址信息
75 75 isCall: false, // 是否调用接口
76   - pointsToast_control: this.$route.query.pointsToast_control,
  76 + // pointsToast_control: this.$route.query.pointsToast_control,
77 77 }
78 78 },
79 79 //部件
80 80 components: {
81   - appAddressToast
  81 + // appAddressToast
82 82 },
83 83 //静态
84 84 props: [
... ... @@ -132,12 +132,12 @@ export default {
132 132 }
133 133 },
134 134 // 填写地址
135   - addAddressInfo (item) {
136   - // 如果是实物弹起填写地址弹窗
137   - this.pointsToast_control = true;
138   - // 礼品兑换弹框派发
139   - this.$refs.itemsInfo.getItemInfo(item, item.id);
140   - },
  135 + // addAddressInfo (item) {
  136 + // // 如果是实物弹起填写地址弹窗
  137 + // this.pointsToast_control = true;
  138 + // // 礼品兑换弹框派发
  139 + // this.$refs.itemsInfo.getItemInfo(item, item.id);
  140 + // },
141 141 // 填写完地址回调
142 142 updateAddressInfo (orderInfo, addressInfo) {
143 143 console.log(orderInfo);
... ...