| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- const _Http = getApp().globalData.http;
- Page({
- data: {
- sa_orderid: null,
- tabsActive:0,
- tabsList: [{
- label: "产品明细",
- icon: "icon-tabxiangxixinxi1"
- }, {
- label: "附件",
- icon: "icon-tabgenjinjilu"
- }, {
- label: "订单进度",
- icon: "icon-tabcaozuojilu1"
- }, {
- label: "发票",
- icon: "icon-tabgenjinjilu"
- }],
- },
- 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
- })
- })
- }
- })
|