Component({ properties: { floatingList: { type: Array, value: [] } }, data: { singleComponent: '' }, lifetimes: { attached: function () { // 在组件实例进入页面节点树时执行 console.log('floatingList attached') let componentFrontId = this.data.floatingList[0].componentFrontId this.setData({ singleComponent: componentFrontId }) }, detached: function () { }, }, methods: { } })