Files
AGuestSaas/pages/user/companyMine/refundInfo/refundInfo.js
2020-12-31 16:10:36 +08:00

30 lines
486 B
JavaScript

/**
* 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
})
})
},
})