import { adManager } from '@jdmini/api' Component({ properties: { type: { type: String, value: 'custom' // 可选banner, video, custom } }, data: { ads: {} }, lifetimes: { attached: function () { adManager.onDataReady(() => { this.setData({ ads: adManager.ads }) }) }, }, methods: { } })