disType(nv) {
let allfx = document.querySelectorAll('.fx')
let allyh = document.querySelectorAll('.yh')
let allzy = document.querySelectorAll('.zy')
if (nv == 'fx') {
this.showType = 1
allfx.forEach((fx) => {
fx.style.display = 'block'
})
allyh.forEach((yh) => {
yh.style.display = 'none'
})
allzy.forEach((zy) => {
zy.style.display = 'none'
})
} else if (nv == 'yh') {
this.showType = 2
allfx.forEach((fx) => {
fx.style.display = 'none'
})
allyh.forEach((yh) => {
yh.style.display = 'block'
})
allzy.forEach((zy) => {
zy.style.display = 'none'
})
} else if (nv == 'zy') {
this.showType = 3
allfx.forEach((fx) => {
fx.style.display = 'none'
})
allyh.forEach((yh) => {
yh.style.display = 'none'
})
allzy.forEach((zy) => {
zy.style.display = 'block'
})
}
},