Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
7
7-Eleven
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
高淑倩
7-Eleven
Commits
dbf2a382
Commit
dbf2a382
authored
Oct 10, 2019
by
赵雅纹
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev_7.1.0' into fixbug-ZYW
parents
f709c443
50a76778
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
14 additions
and
9 deletions
+14
-9
app.js
src/app.js
+0
-1
plus-icon-3x.png
src/assets/imgs/7_1_0/plus-icon-3x.png
+0
-0
index.js
src/config/index.js
+2
-1
cart.wxml
src/pages/cart/cart.wxml
+1
-1
confirmOrder.js
src/pages/confirmOrder/confirmOrder.js
+2
-0
confirmOrder.wxml
src/pages/confirmOrder/confirmOrder.wxml
+2
-2
confirmOrder.wxss
src/pages/confirmOrder/confirmOrder.wxss
+4
-2
memberOfOwn.wxml
src/pages/memberOfOwn/memberOfOwn.wxml
+1
-1
memberOfOwn.wxss
src/pages/memberOfOwn/memberOfOwn.wxss
+2
-1
No files found.
src/app.js
View file @
dbf2a382
...
...
@@ -38,7 +38,6 @@ App({
},
onShow
:
function
(
options
=
{})
{
console
.
log
(
'app-onshow'
,
options
)
const
baseUserInfo
=
wx
.
getStorageSync
(
'_baseUserInfo'
)
// 获取当前会员是否是体验者
const
{
member
}
=
baseUserInfo
...
...
src/assets/imgs/7_1_0/plus-icon-3x.png
0 → 100644
View file @
dbf2a382
9.62 KB
src/config/index.js
View file @
dbf2a382
...
...
@@ -4,7 +4,8 @@ const needMock = '' //
// appid_dev_wx wxc3b64b09b1d3dfc2
// appid_test_wx wx857ea77f4f7f4f34 wxac09792264c49b5c
// appid_pre_711 wx358b56af62edbde1
// appid_prod_711 wx700028bf32a3be66 wx313ec36b710125d4---3001 ---
// appid_prod_711 wx700028bf32a3be66
// appid_prod_3001 wx313ec36b710125d4
// 1 2 3 4步!!!!!!!!!!!!!!!!!!!!!! prod appid brandId tunnel-token
...
...
src/pages/cart/cart.wxml
View file @
dbf2a382
...
...
@@ -2,7 +2,7 @@
<view class="page-cart" style="padding-bottom:{{currentHeight + 88}}px">
<!-- <view class="open-card">
<view class="vip-desc">
<image class="plus-img" src="/assets/imgs/7_1_0/plus-icon.png" mode="widthFix" />
<image class="plus-img" src="/assets/imgs/7_1_0/plus-icon
-3x
.png" mode="widthFix" />
<text class="vip-info">VIP尊享N大权益,本单立减</text>
<text class="vip-price">¥145</text>
</view>
...
...
src/pages/confirmOrder/confirmOrder.js
View file @
dbf2a382
...
...
@@ -405,6 +405,8 @@ wxService.page({
fail
(
res
)
{
wx
.
hideLoading
()
// wxService.router(`/subPackage/page/pages/paymentStatus/paymentStatus?status=F`)
wxService
.
router
(
`/pages/order/order`
)
// wxService.router(`/pages/orderDetail/orderDetail?id=${id}`)
}
},
data
.
wxParams
))
}
...
...
src/pages/confirmOrder/confirmOrder.wxml
View file @
dbf2a382
...
...
@@ -89,7 +89,7 @@
<view class="vip-info" wx:if="{{!isVip}}">
<view class="vip-left">
<view class="left-top">
<image class="top-image" src="/assets/imgs/7_1_0/plus-icon.png" />
<image class="top-image" src="/assets/imgs/7_1_0/plus-icon
-3x
.png" />
<text>现在勾选成为vip,立领200元礼包</text>
</view>
<view class="left-bottom">
...
...
@@ -150,7 +150,7 @@
<text class="vip-desc"> (不可使用任何优惠或积分)</text>
<view class="select-coupon">
<text class="coupon-price">+¥{{plusMemberPrice}}</text>
<
image class="arrow-right" src="/assets/imgs/7_1_0/arrow-right.png" /
>
<
!--<image class="arrow-right" src="/assets/imgs/7_1_0/arrow-right.png" />--
>
</view>
</view>
</view>
...
...
src/pages/confirmOrder/confirmOrder.wxss
View file @
dbf2a382
...
...
@@ -248,6 +248,7 @@
font-size: 23rpx;
text-align: left;
margin-bottom: 8rpx;
vertical-align: middle;
}
.left-bottom {
width: 193rpx;
...
...
@@ -257,9 +258,10 @@
text-align: left;
}
.left-top .top-image {
width:
23
rpx;
height:
11
rpx;
width:
35
rpx;
height:
20
rpx;
margin-right: 8rpx;
vertical-align: middle;
}
.left-bottom .bottom-image {
width: 17rpx;
...
...
src/pages/memberOfOwn/memberOfOwn.wxml
View file @
dbf2a382
...
...
@@ -17,7 +17,7 @@
</view>
<view class='user-qr-code'>
<canvas canvas-id="barcode" binderror="canvasIdErrorCallback" />
<view class='wx-pay-code' bindtap="onTapWxPay">微信支付</view
>
<!-- <view class='wx-pay-code' bindtap="onTapWxPay">微信支付</view>--
>
</view>
</view>
...
...
src/pages/memberOfOwn/memberOfOwn.wxss
View file @
dbf2a382
...
...
@@ -59,7 +59,8 @@ page{
background-color: #ffffff;
border-radius: 7rpx;
display: flex;
height: 300rpx;
/* height: 300rpx; */
height: 200rpx;
flex-direction: column;
justify-content: center;
align-items: center;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment