|
@@ -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) {
|