AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
~~~ //page data: { topMore:0, bottomMore:0 }, onPullDownRefresh: function () { this.setData({ topMore:Math.random() }) }, onReachBottom(){ this.setData({ bottomMore:Math.random() }) } ~~~ ~~~ //子组件 properties: { topMore:{ type:Number, observer:"onPull", }, bottomMore:{ type:Number, observer:"onBottom" } }, //子更新则会触发observer函数 methods: { onPull(){ console.log(1); }, onBottom(){ console.log(2); } } ~~~