1234567891011121314151617181920212223242526272829303132 |
- const _Http = getApp().globalData.http;
- Page({
- data: {
- sa_orderid: null,
- },
- onLoad(options) {
- console.log(options)
- this.setData({
- sa_orderid: options.id
- });
- this.getDetail();
- },
- getDetail() {
- _Http.basic({
- "id": 20221108151302,
- "content": {
- "sa_orderid": this.data.sa_orderid
- }
- }).then(res => {
- console.log("订单详情", res)
- if (res.msg != '成功') return wx.showToast({
- title: res.msg,
- icon: "none"
- });
-
- this.setData({
- detail: res.data
- })
- })
- }
- })
|