问题1: 页面通过api获取收藏状态 global.$apis.goods .collectState(data) .then(res => { if (res.state == 0) { //1取消收藏,2收藏 this.status = 2 } else { this.status = 1 } console.log('收藏状态', this.status) }) 在模拟器上显示正常,但USB调试与测试包到真机上则没有反应,如何解决。问题二: 使用list-item包裹 <richtext type="html"/>渲染数据,其中有一条数据在页面滑动到底部后向上滑动一定位置会回弹到底部,如何解决 |