Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
J
jz_Travel
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
zhengke
jz_Travel
Commits
e6a74664
Commit
e6a74664
authored
Oct 21, 2021
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
a2a16ae1
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
143 additions
and
8 deletions
+143
-8
jz_ActiveInfo.vue
pages/jiuzhai/jz_ActiveInfo.vue
+1
-1
jz_ActivePaySuccess.vue
pages/jiuzhai/jz_ActivePaySuccess.vue
+127
-0
jz_Activity.vue
pages/jiuzhai/jz_Activity.vue
+2
-2
jz_ActivityList.vue
pages/jiuzhai/jz_ActivityList.vue
+8
-4
jz_MyOrder.vue
pages/jiuzhai/jz_MyOrder.vue
+5
-1
No files found.
pages/jiuzhai/jz_ActiveInfo.vue
View file @
e6a74664
...
...
@@ -703,7 +703,7 @@ export default {
icon
:
"success"
,
});
uni
.
navigateTo
({
url
:
"/pages/jiuzhai/jz_
MyOrder"
,
url
:
"/pages/jiuzhai/jz_
ActivityList"
});
}
},
...
...
pages/jiuzhai/jz_ActivePaySuccess.vue
0 → 100644
View file @
e6a74664
<
template
>
<view
class=
"paySuccess"
>
<view
style=
"background: #fff"
>
<view
class=
"img-box"
>
<img
src=
"/static/images/icon/pay-success.png"
class=
"img"
/>
</view>
<view
class=
"title"
>
订单支付成功
</view>
<view
class=
"price"
>
实付 ¥
{{
PreferPrice
}}
</view>
<view
class=
"btn-box"
>
<u-button
shape=
"circle"
:custom-style=
"customStyle"
@
click=
"goHome"
>
返回首页
</u-button
>
<u-button
shape=
"circle"
:custom-style=
"themCustomStyle"
@
click=
"redictToOrders"
>
查看订单
</u-button
>
</view>
</view>
</view>
</
template
>
<
script
>
export
default
{
components
:
{},
data
()
{
return
{
customStyle
:
{
width
:
"150rpx"
,
padding
:
"0 30rpx"
,
},
themCustomStyle
:
{
width
:
"150rpx"
,
marginLeft
:
"60rpx"
,
padding
:
"0 30rpx"
,
},
mainColor
:
""
,
recommend
:
[],
payInfo
:
{},
showCoupons
:
false
,
couponMessage
:
""
,
PreferPrice
:
""
,
isLineOrder
:
0
,
};
},
onLoad
(
option
)
{
if
(
option
.
PreferPrice
)
{
this
.
PreferPrice
=
option
.
PreferPrice
;
}
uni
.
setNavigationBarTitle
({
title
:
"支付成功"
,
});
this
.
mainColor
=
this
.
$uiConfig
.
mainColor
;
this
.
themCustomStyle
.
color
=
this
.
mainColor
;
this
.
themCustomStyle
.
borderColor
=
this
.
mainColor
;
if
(
option
.
isFrom
)
{
this
.
isLineOrder
=
option
.
isFrom
;
}
},
methods
:
{
redictToOrders
()
{
if
(
this
.
isLineOrder
==
0
)
{
uni
.
redirectTo
({
url
:
"/pages/jiuzhai/allorderList"
,
});
}
else
if
(
this
.
isLineOrder
==
1
)
{
uni
.
redirectTo
({
url
:
"/pages/jiuzhai/jz_MyOrder"
,
});
}
else
if
(
this
.
isLineOrder
==
2
)
{
//司导订单
uni
.
redirectTo
({
url
:
"/pages/guidecar/orderList"
,
});
}
},
goHome
()
{
uni
.
reLaunch
({
url
:
"/pages/index/index"
,
});
},
},
};
</
script
>
<
style
>
.paySuccess
{
min-height
:
100vh
;
padding-bottom
:
40
rpx
;
background
:
#f5f5f5
;
}
.paySuccess
.img-box
{
display
:
flex
;
align-items
:
center
;
justify-content
:
center
;
}
.paySuccess
.img-box
.img
{
width
:
256
rpx
;
height
:
256
rpx
;
padding
:
60
rpx
0
0
0
;
}
.paySuccess
.title
{
padding
:
40
rpx
0
20
rpx
0
;
font-size
:
32
rpx
;
color
:
#000
;
font-weight
:
600
;
text-align
:
center
;
}
.paySuccess
.price
{
font-size
:
30
rpx
;
color
:
gray
;
padding-bottom
:
60
rpx
;
text-align
:
center
;
}
.paySuccess
.btn-box
{
padding-bottom
:
60
rpx
;
text-align
:
center
;
display
:
flex
;
justify-content
:
center
;
}
</
style
>
pages/jiuzhai/jz_Activity.vue
View file @
e6a74664
...
...
@@ -856,7 +856,7 @@ export default {
setTimeout
(()
=>
{
uni
.
redirectTo
({
url
:
"/pages/jiuzhai/
pays
uccess?PreferPrice="
+
"/pages/jiuzhai/
jz_ActivePayS
uccess?PreferPrice="
+
this
.
price
+
"&isFrom=1"
,
});
...
...
@@ -973,7 +973,7 @@ export default {
this
.
submit
=
false
;
uni
.
redirectTo
({
url
:
"/pages/jiuzhai/
pays
uccess?PreferPrice="
+
"/pages/jiuzhai/
jz_ActivePayS
uccess?PreferPrice="
+
obj
.
preferPrice
+
"&isFrom=1"
,
});
...
...
pages/jiuzhai/jz_ActivityList.vue
View file @
e6a74664
...
...
@@ -210,11 +210,15 @@
<!-- #ifdef MP-ALIPAY -->
<subscribe-msg
/>
<!-- #endif -->
<tabbars></tabbars>
</view>
</template>
<
script
>
import
tabbars
from
"@/components/tabbar/index"
;
export
default
{
components
:
{},
components
:
{
tabbars
},
data
()
{
return
{
pageTitle
:
"活动订单"
,
...
...
@@ -286,7 +290,7 @@ export default {
goOrderDetail
(
item
)
{
console
.
log
(
item
);
uni
.
redirectTo
({
url
:
"/pages/jiuzhai/jz_
SureOrder
?orderId="
+
item
.
orderId
,
url
:
"/pages/jiuzhai/jz_
ActiveInfo
?orderId="
+
item
.
orderId
,
});
},
change
(
i
)
{
...
...
@@ -463,7 +467,7 @@ export default {
//todo
uni
.
redirectTo
({
url
:
"/pages/jiuzhai/
pays
uccess?PreferPrice="
+
"/pages/jiuzhai/
jz_ActivePayS
uccess?PreferPrice="
+
that
.
price
+
"&isFrom=1"
,
});
...
...
@@ -562,7 +566,7 @@ export default {
console
.
log
(
"cb"
,
res
);
uni
.
redirectTo
({
url
:
"/pages/jiuzhai/
pays
uccess?PreferPrice="
+
"/pages/jiuzhai/
jz_ActivePayS
uccess?PreferPrice="
+
obj
.
preferPrice
+
"&isFrom=1"
,
});
...
...
pages/jiuzhai/jz_MyOrder.vue
View file @
e6a74664
...
...
@@ -210,11 +210,15 @@
<!-- #ifdef MP-ALIPAY -->
<subscribe-msg
/>
<!-- #endif -->
<tabbars></tabbars>
</view>
</template>
<
script
>
import
tabbars
from
"@/components/tabbar/index"
;
export
default
{
components
:
{},
components
:
{
tabbars
},
data
()
{
return
{
pageTitle
:
"线路订单"
,
...
...
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