Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
dev
/
zhiliang-light-mp
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
38453c3d
authored
2019-11-13 17:41:46 +0800
by
simon
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
默认提交
1 parent
d0eec946
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
4 deletions
src/config.js
src/image/my-qrcode/qr-bg.png
src/pages/scan-result/scan-result.wxml
src/config.js
View file @
38453c3
...
...
@@ -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
;
...
...
src/image/my-qrcode/qr-bg.png
View file @
38453c3
28.7 KB
|
W:
|
H:
34.8 KB
|
W:
|
H:
2-up
Swipe
Onion skin
src/pages/scan-result/scan-result.wxml
View file @
38453c3
<wxs module="filter" src="../../utils/utilswxs.wxs"></wxs>
<view class="page">
<view class="app__bgc bgc"></view>
<view class="app__bg bg"></view>
...
...
@@ -6,11 +7,11 @@
<view class="content" wx:if="{{!scaning}}">
<view wx:if="{{prizeInfo}}" class="border scan">
<view wx:if="{{prizeInfo.qrCodeStatus == 1}}" class="result success">
<text class="tips tips1">恭喜获得{{
prizeInfo.pointNum
}}奖金!</text>
<text class="tips tips1">恭喜获得{{
filter.Fen2Yuan(prizeInfo.pointNum)
}}奖金!</text>
<view class="tips tips2">
账户共有
<span class="t1">{{
prizeInfo.memberPoints
}}</span>
奖金
<span class="t1">{{
filter.Fen2Yuan(prizeInfo.memberPoints)
}}</span>
元
奖金
</view>
<view class="btn-wrap">
<view bindtap="onScanHandler" class="btn">再扫一次</view>
...
...
Please
register
or
sign in
to post a comment