Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
FlashMan
Project
Project
Details
Activity
Releases
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
华国豪
FlashMan
Commits
eb5056fd
Commit
eb5056fd
authored
Jul 18, 2019
by
华国豪
🙄
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.oytour.com/huaguohao/flashman
parents
29784e70
44ff31fb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
57 additions
and
11 deletions
+57
-11
orderCenter.js
pages/member/orderCenter/orderCenter.js
+25
-9
orderCenter.wxml
pages/member/orderCenter/orderCenter.wxml
+32
-2
No files found.
pages/member/orderCenter/orderCenter.js
View file @
eb5056fd
...
...
@@ -118,10 +118,10 @@ Page({
tagID
:
4
,
tagIndex
:
0
,
},
// 门票跳转支付
// 签证取消订单
// 门票美食签证跳转支付
goCommonPay
(
e
){
let
payInfoMsg
=
e
.
currentTarget
.
dataset
.
item
.
payInfo
;
console
.
log
(
"payInfoMsg"
,
payInfoMsg
);
wx
.
setStorageSync
(
'payInfoMsg'
,
payInfoMsg
)
wx
.
navigateTo
({
url
:
'/pages/Pay/Pay?tagID=-1'
,
...
...
@@ -150,8 +150,9 @@ Page({
}
})
},
endPaoPao
:
function
()
{
endPaoPao
:
function
(
e
)
{
console
.
log
(
'阻止冒泡····'
)
},
// 跳转详情页面
goDetails
:
function
(
e
)
{
...
...
@@ -178,12 +179,22 @@ Page({
let
url
=
'api/b2b/user/getrecentorder'
,
tagID
=
this
.
data
.
tagID
,
msg
=
this
.
data
.
getOrderMsg
;
if
(
tagID
!==
6
&&
tagID
!==
8
&&
tagID
!==
4
)
{
if
(
tagID
!==
6
&&
tagID
!==
8
&&
tagID
!==
4
&&
tagID
!==
5
)
{
// console.log(tagID)
url
=
'api/b2b/user/getrecentorder'
}
else
if
(
tagID
!==
4
){
// 8美食 6门票
msg
.
status
=
msg
.
orderState
url
=
tagID
==
8
?
'api/b2b/food/getFoodOrder'
:
'api/b2b/scenic/getTicketCouponsOrder'
msg
.
status
=
msg
.
orderState
;
if
(
tagID
==
8
){
url
=
'api/b2b/food/getFoodOrder'
}
else
if
(
tagID
==
6
){
url
=
'api/b2b/scenic/getTicketCouponsOrder'
;
}
else
if
(
tagID
==
5
)
{
console
.
log
(
"url"
);
url
=
'api/b2b/visa/getVisaOrderList'
;
}
// url = tagID == 8 ? 'api/b2b/food/getFoodOrder' : 'api/b2b/scenic/getTicketCouponsOrder'
}
else
{
msg
.
status
=
msg
.
orderState
url
=
'api/b2b/user/getAirTicketOrder'
...
...
@@ -196,9 +207,14 @@ Page({
let
arr
=
this
.
data
.
dataList
;
let
arr2
=
res
.
pageData
?
res
.
pageData
:
[];
for
(
let
i
=
0
;
i
<
arr2
.
length
;
i
++
)
{
if
(
tagID
!==
6
&&
tagID
!==
8
)
{
if
(
tagID
!==
6
&&
tagID
!==
8
&&
tagID
!==
5
)
{
arr2
[
i
].
day
=
arr2
[
i
].
createDate
.
replace
(
/-/g
,
'.'
).
substring
(
0
,
10
)
}
else
{
}
else
if
(
tagID
==
5
)
{
arr2
[
i
].
day
=
arr2
[
i
].
createTime
.
replace
(
/-/g
,
'.'
).
substring
(
0
,
10
)
}
else
{
arr2
[
i
].
day
=
arr2
[
i
].
useDate
.
replace
(
/-/g
,
'.'
)
}
}
...
...
@@ -208,7 +224,7 @@ Page({
arr
.
push
(
arr2
[
i
])
}
}
else
{
arr
=
arr2
arr
=
arr2
;
}
this
.
setData
({
dataList
:
arr
,
...
...
pages/member/orderCenter/orderCenter.wxml
View file @
eb5056fd
...
...
@@ -19,7 +19,7 @@
</view>
<scroll-view class='data_body' scroll-y bindscrolltolower="scrollGetMore">
({{tagID}})
<view wx:if="{{tagID !== 6 && tagID !== 8 && tagID !== 4}}">
<view wx:if="{{tagID !== 6 && tagID !== 8 && tagID !== 4
&& tagID !== 5
}}">
<view class='list-item' wx:for="{{dataList}}" wx:for-item="item" wx:key="index" wx:for-index="index">
<!-- <form bindsubmit="formSubmit" report-submit>
<button hover-class="btn-hover" form-type="submit" data-url="/pages/member/orderCenter/orderCenter" data-index='{{index}}'> -->
...
...
@@ -44,7 +44,7 @@
<view class='list-item-btn'>
<view wx:if="{{item.orderState == 1}}">联系客服</view>
<view wx:if="{{item.orderState == 3 || item.orderState == 2}}">取消订单</view>
<view
wx:if="{{item.orderState == 1 || item.orderState == 2}}" catchtap="endPaoPao"
class='btn-red'>付款</view>
<view
catchtap="endPaoPao" data-item="{{item}}" wx:if="{{item.orderState == 1 || item.orderState == 2}}"
class='btn-red'>付款</view>
<!-- <view class='btn-red'>确认收货</view> -->
<view class='btn-red' wx:if="{{item.orderState == 5 || item.orderState == 4}}">再次购买</view>
</view>
...
...
@@ -52,6 +52,36 @@
</form> -->
</view>
</view>
<!-- 签证 -->
<view wx:if="{{tagID == 5}}">
<view class='list-item' wx:for="{{dataList}}" wx:for-item="item" wx:key="index" wx:for-index="index">
<text class='list-item-tag {{tagList[tagBoxActive].Class}}'>{{tagList[tagBoxActive].name}}</text>
<view class='list-item-states'>
<text wx:if="{{item.visaOrderStatus == 1}}">正常</text>
<text wx:elif="{{item.visaOrderStatus == 2}}">取消</text>
<text wx:elif="{{item.visaOrderStatus == 3}}">待付款</text>
</view>
<view class='list-item-info' data-index='{{index}}' bindtap='formSubmit'>
<view class='list-item-name'>{{item.productName}}</view>
<view class='list-item-detail'>
<view class='list-item-detail-left'>
<text>{{item.guestList.length+'人'}}</text>
<text>{{item.day}}</text>
</view>
<view>¥{{item.totalPrice}}</view>
</view>
</view>
<view class='list-item-btn'>
<view wx:if="{{item.visaOrderStatus == 1}}">联系客服</view>
<view bindtap="exitVisa" data-item="{{item}}" wx:if="{{item.visaOrderStatus == 1 || item.visaOrderStatus == 3}}">取消订单</view>
<view bindtap="goCommonPay" data-item="{{item}}" wx:if="{{item.visaOrderStatus == 3}}" class='btn-red'>付款</view>
<!-- <view class='btn-red'>确认收货</view> -->
<!-- <view class='btn-red' wx:if="{{item.orderState == 5 || item.orderState == 4}}">再次购买</view> -->
</view>
<!-- </button>
</form> -->
</view>
</view>
<view wx:elif="{{tagID ==8}}">
<view class='list-item' wx:for="{{dataList}}" wx:for-item="item" wx:key="index" wx:for-index="index">
<!-- <form bindsubmit="formSubmit" report-submit>
...
...
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