|
@@ -574,10 +574,10 @@ export default {
|
|
|
this.buyMaintenance = true
|
|
|
}
|
|
|
|
|
|
- if(item.checked && item.kitType != "GROUP" && this.courseViewType == 2) {
|
|
|
+ if(item.checked && item.kitType != "GROUP" && (this.courseViewType == 2 || this.courseViewType == 3)) {
|
|
|
this.accessIsShowStatus = true
|
|
|
}
|
|
|
- if(this.courseViewType != 2) {
|
|
|
+ if(this.courseViewType != 2 && this.courseViewType != 3) {
|
|
|
this.accessIsShowStatus = true
|
|
|
}
|
|
|
})
|
|
@@ -676,7 +676,7 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
// 云教练且选择自备则不显示辅件
|
|
|
- if(this.courseViewType == 2) {
|
|
|
+ if(this.courseViewType == 2 || this.courseViewType == 3) {
|
|
|
if(item.kitType != "GROUP") {
|
|
|
this.accessIsShowStatus = true
|
|
|
} else {
|
|
@@ -757,7 +757,7 @@ export default {
|
|
|
|
|
|
csi.forEach(item => {
|
|
|
if (item.isStatus) {
|
|
|
- if(this.courseViewType != 2) {
|
|
|
+ if(this.courseViewType != 2 || this.courseViewType != 3) {
|
|
|
musicClassFee += parseFloat(item.courseCurrentPrice)
|
|
|
}
|
|
|
// marketPrice += parseFloat(item.courseOriginalPrice)
|