30f426cb by simon

默认提交

1 parent 64f1f09f
......@@ -2,7 +2,7 @@ let ENV_CONFIG = require('./env/index');
const APPID = ''
/** ====每次发布版本记得修改此环境配置==== */
const ENV = 'Dev'; // Dev Prod
const ENV = 'Prod'; // Dev Prod
const NET_CONFIG = ENV_CONFIG[ENV];
const MOCKAPI = ENV_CONFIG.mockApi;
......
......@@ -88,7 +88,7 @@ Page({
*/
formatRankInfo(val, status) {
let rankInfo = val;
if (!rankInfo) return;
if (!rankInfo) return null;
if (status == "promotion") {
rankInfo.myMember.rank = rankInfo.myMember.promotionNo;
......
......@@ -88,7 +88,7 @@ $contentWidth:690px;
.func {
@extend .fcc;
height: 80px;
font-size: 32px;
font-size: 30px;
color: #3680EB;
background: #F5F8FE;
border-radius: 8px;
......
......@@ -158,6 +158,20 @@ Page({
})
},
/**
* 我知道了
* @param {*} evt
*/
onSureHandler(evt) {
// app.router.push({
// openType: "reLaunch",
// path: "index"
// })
wx.navigateBack({
delta: 1
});
},
// 隐藏蒙层
hideMask() {
this.setData({
......
......@@ -22,12 +22,21 @@
<text wx:if="{{prizeInfo.qrCodeStatus == 2}}" class="tips tips1">
此产品码已被扫过!\n若有异常,请联系客服
</text>
<!-- 码已经被使用 -->
<text wx:elif="{{prizeInfo.qrCodeStatus == 3}}" class="tips tips1">
积分获取失败!\n产品积分码获取对象为:\n电工及终端消费者。
</text>
<!-- 其他异常 -->
<text wx:else class="tips tips1">此产品码已被扫过!\n若有异常,请联系客服</text>
<view class="btn-wrap">
<view bindtap="onScanHandler" class="btn">再扫一次</view>
<view bindtap="onMyIntegralHandler" class="btn btn2">查看我的积分</view>
<!-- <view class="btn btn2">联系客服</view> -->
<!-- 非 产品积分码获取对象为:电工及终端消费者。 -->
<block wx:if="{{prizeInfo.qrCodeStatus == 3}}">
<view bindtap="onSureHandler" class="btn">我知道了</view>
</block>
<block wx:else>
<view bindtap="onScanHandler" class="btn">再扫一次</view>
<view bindtap="onMyIntegralHandler" class="btn btn2">查看我的积分</view>
</block>
</view>
</view>
</view>
......