|
@@ -340,6 +340,40 @@ export default {
|
|
|
})
|
|
|
},
|
|
|
handleClick(val) {
|
|
|
+ this.titleMsgArr.forEach(it =>{
|
|
|
+ it.showClick = false
|
|
|
+ if (val.props.name === 'QQXM') {
|
|
|
+ if (it.isNameEn === 'QQ') {
|
|
|
+ it.showClick = true
|
|
|
+ this.binSectionStr = it.id
|
|
|
+ }
|
|
|
+ } else if (val.props.name === 'JJXM') {
|
|
|
+ if (it.isNameEn === 'JJ') {
|
|
|
+ it.showClick = true
|
|
|
+ this.binSectionStr = it.id
|
|
|
+ }
|
|
|
+ } else if (val.props.name === 'GLSX') {
|
|
|
+ if (it.isNameEn === 'GLSX') {
|
|
|
+ it.showClick = true
|
|
|
+ this.binSectionStr = it.id
|
|
|
+ }
|
|
|
+ } else if (val.props.name === 'ZDZX') {
|
|
|
+ if (it.isNameEn === 'ZDZX') {
|
|
|
+ it.showClick = true
|
|
|
+ this.binSectionStr = it.id
|
|
|
+ }
|
|
|
+ } else if (val.props.name === 'KJCX') {
|
|
|
+ if (it.isNameEn === 'KJCX') {
|
|
|
+ it.showClick = true
|
|
|
+ this.binSectionStr = it.id
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ if (it.isNameEn === 'HD') {
|
|
|
+ it.showClick = true
|
|
|
+ this.binSectionStr = it.id
|
|
|
+ }
|
|
|
+ }
|
|
|
+ })
|
|
|
let stageId = ''
|
|
|
this.activeName = val.props.name
|
|
|
console.log('activeName', this.activeName)
|