体验官打卡

This commit is contained in:
2023-07-17 17:33:54 +08:00
parent 3ecd1fefa7
commit 38391e46a1
18 changed files with 389 additions and 56 deletions

View File

@@ -0,0 +1,25 @@
/*
* 手太欠
* 愿这世界都如故事里一样 美好而动人~
*/
Page({
data: {
logisticArr : '',
expressData : '',
},
onLoad(options) {
// 查看物流
this.h5url(options.id);
},
// 查看物流
h5url(id) {
wx.$api.recruit.kuaiDi(id).then(res => {
this.setData({
expressData: res.data.express_track
})
}).catch(err => {})
}
})