uni-app写微信小程序时ucharts层级过高盖的解决方案

思路:在点击某个遮罩或者弹框时,改变data里定义的Showhiddenunits等于true,watch监听对图表进行隐藏和现实。

data() {
			return {
				Showhiddenunits:false,
				showCanvas: true,
			}
		}
 
watch: {
	Showhiddenunits(newValue, oldValue){
		this.showCanvas = !newValue
	},
},

经过测试非常好用!

你可能感兴趣的:(uni-app写微信小程序时ucharts层级过高盖的解决方案)