@@ -1,12 +1,13 @@
|
||||
var t = require("../../utils/login.js");
|
||||
var e = getApp(), t = require("../../utils/login.js");
|
||||
|
||||
Page({
|
||||
data: {
|
||||
pic: "https://jm-static.v0750.com/image/dui.jpg",
|
||||
tips: "温馨提示:\n1、请在30分钟内完成兑换,超时作废\n2、请在兑换完成后,在本页面点击\"确认兑换\"\n3、兑换成功后,将在3个工作日内发放奖品",
|
||||
code: ''
|
||||
},
|
||||
onLoad() {
|
||||
t.request('/miniprogram/coupons', {}, !0).then((res) => {
|
||||
t.request('/miniprogram/coupons/index', {}, !0).then((res) => {
|
||||
if (res.code == 200) {
|
||||
this.setData({
|
||||
tips: res.data.tips,
|
||||
@@ -15,7 +16,58 @@ Page({
|
||||
}
|
||||
})
|
||||
},
|
||||
toScan: function () {
|
||||
e.globalData.needJumpUrl = !1;
|
||||
var a = this;
|
||||
wx.scanCode({
|
||||
success: function (i) {
|
||||
console.log(i), wx.showLoading({
|
||||
title: ""
|
||||
}), e.globalData.qrcode = i.result, t.request("/miniprogram/identify/index", i, !0).then(function (t) {
|
||||
console.log("data", t), wx.hideLoading();
|
||||
// 保存设备编号
|
||||
getApp().globalData.deviceData = t.data || getApp().globalData.deviceData || {};
|
||||
getApp().globalData.devicecode = t.data.devicecode || getApp().globalData.devicecode;
|
||||
a.startup();
|
||||
}).catch(function (e) {
|
||||
wx.hideLoading();
|
||||
});
|
||||
}
|
||||
});
|
||||
},
|
||||
// 启动
|
||||
startup: function () {
|
||||
if (getApp().globalData.deviceData.devicecode) {
|
||||
|
||||
// 合并参数 t.globalData.deviceData 与 washcode
|
||||
let params = Object.assign(getApp().globalData.deviceData, {
|
||||
washcode: this.data.code
|
||||
});
|
||||
|
||||
// 已扫码,启动机器
|
||||
t.request('/miniprogram/' + getApp().globalData.deviceData.type + '/carwashcodestartup', params, !0).then((startRes) => {
|
||||
if (startRes.code == 200) {
|
||||
wx.showToast({ title: startRes.message || '启动成功', icon: 'success' });
|
||||
// 跳转到洗车券列表页面
|
||||
wx.redirectTo({
|
||||
// url: "/pages/washing/washing"
|
||||
url: "/pages/index/index"
|
||||
})
|
||||
} else {
|
||||
wx.redirectTo({
|
||||
url: "/pages/washCodeList/washCodeList"
|
||||
});
|
||||
wx.showToast({ title: startRes.message || '启动失败', icon: 'none' });
|
||||
}
|
||||
});
|
||||
} else {
|
||||
// 未扫码,提示
|
||||
wx.showToast({
|
||||
title: '请先扫码',
|
||||
icon: 'none'
|
||||
})
|
||||
}
|
||||
},
|
||||
onSubmitToGroup(e) {
|
||||
const code = e.detail.value.code
|
||||
if (!code) {
|
||||
@@ -32,15 +84,43 @@ Page({
|
||||
t.request('/miniprogram/coupons/importDouyin', { code: code }, !0).then((res) => {
|
||||
wx.hideLoading()
|
||||
if (res.code == 200) {
|
||||
wx.showToast({
|
||||
title: '兑换成功',
|
||||
icon: 'success'
|
||||
});
|
||||
setTimeout(() => {
|
||||
wx.navigateTo({
|
||||
url: '/pages/washCodeList/washCodeList'
|
||||
})
|
||||
|
||||
// 在当前页面记下券码
|
||||
this.setData({
|
||||
code: res.data.code
|
||||
})
|
||||
|
||||
wx.showModal({
|
||||
title: '兑换成功',
|
||||
content: '是否立即使用?',
|
||||
success: (result) => {
|
||||
if (result.confirm) {
|
||||
// 判断是否已扫码
|
||||
if (getApp().globalData.devicecode) {
|
||||
|
||||
wx.showModal({
|
||||
title: "提示",
|
||||
content: "你当前将要使用的机器编号是:".concat(getApp().globalData.deviceData.title || getApp().globalData.deviceData.devicecode, ",确认开机吗?"),
|
||||
success: (res) => {
|
||||
if (res.confirm) {
|
||||
// 用户点击了确认按钮,执行开机操作
|
||||
this.startup();
|
||||
} else {
|
||||
// 用户点击了取消按钮,跳转到洗车券列表页面
|
||||
wx.navigateTo({ url: '/pages/washCodeList/washCodeList' });
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
} else {
|
||||
// 未扫码,打开扫码页面
|
||||
this.toScan(); // 调用toScan方法,跳转到扫码页面
|
||||
}
|
||||
} else {
|
||||
wx.navigateTo({ url: '/pages/washCodeList/washCodeList' });
|
||||
}
|
||||
}
|
||||
});
|
||||
} else {
|
||||
wx.showToast({
|
||||
title: res.message || '兑换失败',
|
||||
|
||||
Reference in New Issue
Block a user