user-order.js 10.5 KB
Newer Older
D
devil_gong 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
const app = getApp();
Page({
  data: {
    data_list: [],
    data_page_total: 0,
    data_page: 1,
    data_list_loding_status: 1,
    data_bottom_line_status: false,
    params: null,
    input_keyword_value: '',
    load_status: 0,
    is_show_payment_popup: false,
    payment_list: [],
    payment_id: 0,
    temp_pay_value: 0,
    temp_pay_index: 0,
    nav_status_list: [
      { name: "全部", value: "-1" },
      { name: "待付款", value: "1" },
      { name: "待发货", value: "2" },
      { name: "待收货", value: "3" },
      { name: "已完成", value: "4" },
      { name: "已失效", value: "5,6" },
    ],
    nav_status_index: 0,
  },

  onLoad(params) {
    // 是否指定状态
    var nav_status_index = 0;
    if ((params.status || null) != null) {
      for (var i in this.data.nav_status_list) {
        if (this.data.nav_status_list[i]['value'] == params.status) {
          nav_status_index = i;
          break;
        }
      }
    }

    this.setData({
      params: params,
      nav_status_index: nav_status_index,
    });
    this.init();
  },

  onShow() {
G
gongfuxiang 已提交
48
    wx.setNavigationBarTitle({title: app.data.common_pages_title.user_order});
D
devil_gong 已提交
49 50 51
  },

  init() {
D
devil_gong 已提交
52 53 54 55 56 57 58 59 60 61
    var user = app.get_user_cache_info(this, "init");
    // 用户未绑定用户则转到登录页面
    if (user == false || ((user.mobile || null) == null)) {
      wx.redirectTo({
        url: "/pages/login/login?event_callback=init"
      });
      return false;
    } else {
      // 获取数据
      this.get_data_list();
D
devil_gong 已提交
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
    }
  },

  // 输入框事件
  input_event(e) {
    this.setData({input_keyword_value: e.detail.value});
  },

  // 获取数据
  get_data_list(is_mandatory) {
    // 分页是否还有数据
    if ((is_mandatory || 0) == 0) {
      if (this.data.data_bottom_line_status == true) {
        return false;
      }
    }

    // 加载loding
G
gongfuxiang 已提交
80
    wx.showLoading({title: "加载中..." });
D
devil_gong 已提交
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
    this.setData({
      data_list_loding_status: 1
    });

    // 参数
    var order_status = ((this.data.nav_status_list[this.data.nav_status_index] || null) == null) ? -1 : this.data.nav_status_list[this.data.nav_status_index]['value'];

    // 获取数据
    wx.request({
      url: app.get_request_url("index", "order"),
      method: "POST",
      data: {
        page: this.data.data_page,
        keywords: this.data.input_keyword_value || "",
        status: order_status,
        is_more: 1,
      },
      dataType: "json",
      success: res => {
        wx.hideLoading();
        wx.stopPullDownRefresh();
        if (res.data.code == 0) {
          if (res.data.data.data.length > 0) {
            if (this.data.data_page <= 1) {
              var temp_data_list = res.data.data.data;

              // 下订单支付处理
              if(this.data.load_status == 0)
              {
                if((this.data.params.is_pay || 0) == 1 && (this.data.params.order_id || 0) != 0)
                {
                  for(var i in temp_data_list)
                  {
                    if(this.data.params.order_id == temp_data_list[i]['id'])
                    {
                      this.pay_handle(this.data.params.order_id, i);
                      break;
                    }
                  }
                }
              }
            } else {
              var temp_data_list = this.data.data_list;
              var temp_data = res.data.data.data;
              for (var i in temp_data) {
                temp_data_list.push(temp_data[i]);
              }
            }
            this.setData({
              data_list: temp_data_list,
              data_total: res.data.data.total,
              data_page_total: res.data.data.page_total,
              data_list_loding_status: 3,
              data_page: this.data.data_page + 1,
              load_status: 1,
              payment_list: res.data.data.payment_list || [],
            });

            // 是否还有数据
            if (this.data.data_page > 1 && this.data.data_page > this.data.data_page_total)
            {
              this.setData({ data_bottom_line_status: true });
            } else {
              this.setData({data_bottom_line_status: false});
            }
          } else {
            this.setData({
              data_list_loding_status: 0,
              load_status: 1,
              data_list: [],
              data_bottom_line_status: false,
            });
          }
        } else {
          this.setData({
            data_list_loding_status: 0,
            load_status: 1,
          });

D
devil_gong 已提交
160
          app.showToast(res.data.msg);
D
devil_gong 已提交
161 162 163 164 165 166 167 168 169 170
        }
      },
      fail: () => {
        wx.hideLoading();
        wx.stopPullDownRefresh();

        this.setData({
          data_list_loding_status: 2,
          load_status: 1,
        });
D
devil_gong 已提交
171
        app.showToast("服务器请求出错");
D
devil_gong 已提交
172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
      }
    });
  },

  // 下拉刷新
  onPullDownRefresh() {
    this.setData({
      data_page: 1
    });
    this.get_data_list(1);
  },

  // 滚动加载
  scroll_lower(e) {
    this.get_data_list();
  },

  // 支付
  pay_event(e) {
    this.setData({
      is_show_payment_popup: true,
G
gongfuxiang 已提交
193 194
      temp_pay_value: e.currentTarget.dataset.value,
      temp_pay_index: e.currentTarget.dataset.index,
D
devil_gong 已提交
195 196 197 198 199 200 201 202 203 204
    });
  },

  // 支付弹窗关闭
  payment_popup_event_close(e) {
    this.setData({ is_show_payment_popup: false });
  },

  // 支付弹窗发起支付
  popup_payment_event(e) {
G
gongfuxiang 已提交
205
    var payment_id = e.currentTarget.dataset.value || 0;
D
devil_gong 已提交
206 207 208 209 210 211 212 213
    this.setData({payment_id: payment_id});
    this.payment_popup_event_close();
    this.pay_handle(this.data.temp_pay_value, this.data.temp_pay_index);
  },

  // 支付方法
  pay_handle(order_id, index) {
    // 加载loding
G
gongfuxiang 已提交
214
    wx.showLoading({title: "请求中..." });
D
devil_gong 已提交
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233

    wx.request({
      url: app.get_request_url("pay", "order"),
      method: "POST",
      data: {
        id: order_id,
        payment_id: this.data.payment_id,
      },
      dataType: "json",
      success: res => {
        wx.hideLoading();
        if (res.data.code == 0) {
          // 线下支付成功
          if (res.data.data.is_under_line == 1) {
            var temp_data_list = this.data.data_list;
            temp_data_list[index]['status'] = 2;
            temp_data_list[index]['status_name'] = '待发货';
            this.setData({ data_list: temp_data_list });

G
gongfuxiang 已提交
234
            app.showToast("支付成功", "success");
D
devil_gong 已提交
235
          } else {
D
devil_gong 已提交
236 237
            console.log(res.data.data.data)
            wx.requestPayment({
D
devil_gong 已提交
238 239 240 241 242
              timeStamp: res.data.data.data.timeStamp,
              nonceStr: res.data.data.data.nonceStr,
              package: res.data.data.data.package,
              signType: res.data.data.data.signType,
              paySign: res.data.data.data.paySign,
D
devil_gong 已提交
243
              success: res => {
D
devil_gong 已提交
244
                console.log(res);
D
devil_gong 已提交
245
                // 数据设置
D
devil_gong 已提交
246 247 248 249 250 251
                // if (res.resultCode == 9000) {
                //   var temp_data_list = this.data.data_list;
                //   temp_data_list[index]['status'] = 2;
                //   temp_data_list[index]['status_name'] = '待发货';
                //   this.setData({ data_list: temp_data_list });
                // }
D
devil_gong 已提交
252

D
devil_gong 已提交
253 254 255 256 257 258 259 260
                // // 跳转支付页面
                // wx.navigateTo({
                //   url:
                //     "/pages/paytips/paytips?code=" +
                //     res.resultCode +
                //     "&total_price=" +
                //     this.data.data_list[index]['total_price']
                // });
D
devil_gong 已提交
261 262
              },
              fail: res => {
D
devil_gong 已提交
263
                app.showToast("唤起支付模块失败");
D
devil_gong 已提交
264 265 266 267
              }
            });
          }
        } else {
D
devil_gong 已提交
268
          app.showToast(res.data.msg);
D
devil_gong 已提交
269 270 271 272
        }
      },
      fail: () => {
        wx.hideLoading();
D
devil_gong 已提交
273
        app.showToast("服务器请求出错");
D
devil_gong 已提交
274 275 276 277 278 279
      }
    });
  },

  // 取消
  cancel_event(e) {
D
devil_gong 已提交
280
    wx.showModal({
D
devil_gong 已提交
281 282
      title: "温馨提示",
      content: "取消后不可恢复,确定继续吗?",
D
devil_gong 已提交
283 284
      confirmText: "确认",
      cancelText: "不了",
D
devil_gong 已提交
285 286 287
      success: result => {
        if (result.confirm) {
          // 参数
G
gongfuxiang 已提交
288 289
          var id = e.currentTarget.dataset.value;
          var index = e.currentTarget.dataset.index;
D
devil_gong 已提交
290 291

          // 加载loding
G
gongfuxiang 已提交
292
          wx.showLoading({title: "处理中..." });
D
devil_gong 已提交
293 294 295 296 297 298 299 300 301 302 303 304 305 306

          wx.request({
            url: app.get_request_url("cancel", "order"),
            method: "POST",
            data: {id: id},
            dataType: "json",
            success: res => {
              wx.hideLoading();
              if (res.data.code == 0) {
                var temp_data_list = this.data.data_list;
                temp_data_list[index]['status'] = 5;
                temp_data_list[index]['status_name'] = '已取消';
                this.setData({data_list: temp_data_list});

D
devil_gong 已提交
307
                app.showToast(res.data.msg, "success");
D
devil_gong 已提交
308
              } else {
D
devil_gong 已提交
309
                app.showToast(res.data.msg);
D
devil_gong 已提交
310 311 312 313
              }
            },
            fail: () => {
              wx.hideLoading();
D
devil_gong 已提交
314
              app.showToast("服务器请求出错");
D
devil_gong 已提交
315 316 317 318 319 320 321 322 323
            }
          });
        }
      }
    });
  },

  // 收货
  collect_event(e) {
D
devil_gong 已提交
324
    wx.showModal({
D
devil_gong 已提交
325 326
      title: "温馨提示",
      content: "请确认已收到货物或已完成,操作后不可恢复,确定继续吗?",
D
devil_gong 已提交
327 328
      confirmText: "确认",
      cancelText: "不了",
D
devil_gong 已提交
329 330 331
      success: result => {
        if (result.confirm) {
          // 参数
G
gongfuxiang 已提交
332 333
          var id = e.currentTarget.dataset.value;
          var index = e.currentTarget.dataset.index;
D
devil_gong 已提交
334 335

          // 加载loding
G
gongfuxiang 已提交
336
          wx.showLoading({title: "处理中..." });
D
devil_gong 已提交
337 338 339 340 341 342 343 344 345 346 347 348 349 350

          wx.request({
            url: app.get_request_url("collect", "order"),
            method: "POST",
            data: {id: id},
            dataType: "json",
            success: res => {
              wx.hideLoading();
              if (res.data.code == 0) {
                var temp_data_list = this.data.data_list;
                temp_data_list[index]['status'] = 4;
                temp_data_list[index]['status_name'] = '已完成';
                this.setData({data_list: temp_data_list});

D
devil_gong 已提交
351
                app.showToast(res.data.msg, "success");
D
devil_gong 已提交
352
              } else {
D
devil_gong 已提交
353
                app.showToast(res.data.msg);
D
devil_gong 已提交
354 355 356 357
              }
            },
            fail: () => {
              wx.hideLoading();
D
devil_gong 已提交
358
              app.showToast("服务器请求出错");
D
devil_gong 已提交
359 360 361 362 363 364 365 366 367
            }
          });
        }
      }
    });
  },

  // 催催
  rush_event(e) {
D
devil_gong 已提交
368
    app.showToast("催促成功", "success");
D
devil_gong 已提交
369 370 371 372 373
  },

  // 导航事件
  nav_event(e) {
    this.setData({
G
gongfuxiang 已提交
374
      nav_status_index: e.currentTarget.dataset.index || 0,
D
devil_gong 已提交
375 376 377 378 379
      data_page: 1,
    });
    this.get_data_list(1);
  },
});