Bläddra i källkod

feat: 省份订阅包详情页问题处理

zhangyuhan 3 år sedan
förälder
incheckning
00c03f6cb0
1 ändrade filer med 2 tillägg och 2 borttagningar
  1. 2 2
      src/web/staticres/common-module/order-list/js/order-detail.js

+ 2 - 2
src/web/staticres/common-module/order-list/js/order-detail.js

@@ -227,7 +227,7 @@ var vm = new Vue({
       }
 
       // 如果是可再次购买的产品,则显示再次购买
-      if (this.prodConf.canBuyAgain.indexOf(this.orderInfo.productType) && order.pay_money > 0) {
+      if (this.prodConf.canBuyAgain.indexOf(this.orderInfo.productType) !== -1 && order.pay_money > 0) {
         this.orderStateMap[1].bottomButtonShow.buyAgain = true
       }
 
@@ -238,7 +238,7 @@ var vm = new Vue({
 
       this.orderInfo.productInfoList = this.getProductInfoList(info)
       this.orderInfo.orderInfoList = this.getOrderInfoListList(info)
-      this.getOrderBottomButton(info.order)
+      // this.getOrderBottomButton(info.order)
     },
     getOrderBottomButton (order) {
       switch (order.product_type) {