Component({ /** * 组件的属性列表 */ properties: { }, data: { }, methods: { open( currentTarget ) { /* if (currentTarget.dataset.isclick) { return } */ this.getTabBar().setData({ mask: true }) // #if MP // #elif ANDROID // #endif }, showTranscript() { this.getTabBar().setData({ mask: true }) this.selectComponent("#popUp").showModal() }, closeTranscript() { this.getTabBar().setData({ mask: false }) this.selectComponent("#popUp").hideModal() }, } })