|
|
@@ -384,10 +384,12 @@ export default {
|
|
|
this.showDetail()
|
|
|
},
|
|
|
coverOnChange(it) {
|
|
|
- this.coverArr.forEach(it => {
|
|
|
- it.check = false
|
|
|
- })
|
|
|
it.check = !it.check
|
|
|
+ this.coverArr.forEach(iv => {
|
|
|
+ if (it.value !== iv.value) {
|
|
|
+ iv.check = false
|
|
|
+ }
|
|
|
+ })
|
|
|
this.showCover = it.value
|
|
|
this.$emit("coverOnChange", it)
|
|
|
},
|