/** * Web二雪 * 趁时光不老 努力活成自己想要成为的样子 */ Page({ /** * 页面的初始数据 */ data: { info:[],//进度 }, onLoad: function (options) { this.setData({ refundId: options.refundId }) this.getInfo() }, /** * 进度详情 */ getInfo() { wx.$api.companyModule.getRefundLogsInfo(this.data.refundId).then(res => { console.log(res) this.setData({ info: res }) }) }, })