From 068afd187aa183869bc2557b3ac8599c181a6b0c Mon Sep 17 00:00:00 2001 From: fengchengzhi Date: Thu, 21 Jun 2018 00:36:37 +0800 Subject: [PATCH] no message --- src/view/month-card.vue | 44 ++++++++++++++++++++++++++++++----------- 1 file changed, 32 insertions(+), 12 deletions(-) diff --git a/src/view/month-card.vue b/src/view/month-card.vue index 5cc4a66..6fe9062 100644 --- a/src/view/month-card.vue +++ b/src/view/month-card.vue @@ -49,11 +49,11 @@ -
+
-

使用范围:广州市(天河区、海珠区、白云区、番禺区、花都区、从化区、越秀区、黄埔区、南沙区、荔湾区)

+

使用范围:{{getData.authAreaStr}}

使用流程:领券下单→关注公众号→预约服务

@@ -133,15 +133,35 @@ that.loading = false; console.log(result) - if (result.code == 0) { - - console.log('领取成功') - - } else { - - console.log('领取失败') - - } +// if (result.code == 0) { +// +// console.log('领取成功') +// +// } else { +// +// console.log('领取失败') +// +// } + if (result.code === 0 || result.code === 3) { + alert("领取成功!"); + setTimeout(function () { + window.location.href = 'http://192.168.40.160:8808/mall/web/vgoods/detail/' + that.getData.goodsNo; + }, 2000); +// window.history.go(0); +// hide_layer(1); + } else if (result.code === 666) { + alert("您还没登录,请先登录!"); + setTimeout(function () { + window.location.href = '/mall/web/user/login'; + }, 2000); + } else { + if (result.msg === '' || result.msg === undefined || result.msg == null) { + result.msg = '操作失败,请刷新重试'; + } + alert(result.msg); +// $('.get-btn').attr('disabled', true).text("已使用"); +// hide_layer(1); + } }); },