Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mallapp
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
viitto
mallapp
Commits
aae45b5a
Commit
aae45b5a
authored
Jun 18, 2020
by
zhangjianguo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
8610a0d2
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
21 additions
and
7 deletions
+21
-7
refunds-detail.vue
pages/order/after-sale/refunds-detail.vue
+2
-2
express.vue
pages/order/express.vue
+3
-3
index.vue
pages/order/index/index.vue
+8
-1
order-detail.vue
pages/order/order-detail.vue
+7
-0
share-qrcode.vue
pages/share-qrcode/share-qrcode.vue
+1
-1
No files found.
pages/order/after-sale/refunds-detail.vue
View file @
aae45b5a
...
...
@@ -33,8 +33,8 @@
</view>
<view
v-if=
"d.ReOrderStatus == 5 || d.Type==1"
class=
"marginT"
>
申请退款金额:
{{
d
.
Refund
}}
元
</view>
<view
v-if=
"d.ReOrderStatus == 5 || d.Type==1"
class=
"marginT"
>
实退金额:
{{
d
.
Refund
}}
元
</view>
<view
v-if=
"d.ReOrderStatus == 5
||
d.Type==1"
class=
"marginT"
>
退款方式:原路退回
</view>
<view
v-if=
"d.ReOrderStatus == 5
||
d.Type==1"
class=
"marginT"
>
退款时间:
{{
d
.
FinishTime
}}
</view>
<view
v-if=
"d.ReOrderStatus == 5
&&
d.Type==1"
class=
"marginT"
>
退款方式:原路退回
</view>
<view
v-if=
"d.ReOrderStatus == 5
&&
d.Type==1"
class=
"marginT"
>
退款时间:
{{
d
.
FinishTime
}}
</view>
<!-- TODO字段没有 -->
<!--
<view
class=
"content"
v-else
>
...
...
pages/order/express.vue
View file @
aae45b5a
...
...
@@ -66,9 +66,9 @@
<!-- 此处没有自定义左边的内容,会默认显示一个点 -->
<
template
v-slot:content
>
<view
style=
"padding-bottom: 30rpx;"
:style=
"
{color:(i==0)?'#000 !important':'gray'}">
<view
class=
"u-order-desc"
>
{{
x
.
AcceptStation
}}
</view>
<view
class=
"u-order-desc"
>
{{
x
.
Remark
}}
</view>
<view
class=
"u-order-time"
>
{{
x
.
AcceptTime
}}
</view>
<view
class=
"u-order-desc"
>
{{
x
.
AcceptStation
!=
null
?
x
.
AcceptStation
:
''
}}
</view>
<view
class=
"u-order-desc"
>
{{
x
.
Remark
!=
null
?
x
.
Remark
:
''
}}
</view>
<view
class=
"u-order-time"
>
{{
x
.
AcceptTime
!=
null
?
x
.
AcceptTime
:
''
}}
</view>
</view>
</
template
>
...
...
pages/order/index/index.vue
View file @
aae45b5a
...
...
@@ -218,7 +218,7 @@
<view
style=
"display: flex;align-items: center;justify-content: center;height:70px ;"
>
<Text>
是否取消订单?
</Text>
</view>
<view
style=
"display: flex;flex-direction: column;height:80px ;margin-left: 15px;width: 100%;"
v-if=
'
msg
.OrderStatus==2'
>
<view
style=
"display: flex;flex-direction: column;height:80px ;margin-left: 15px;width: 100%;"
v-if=
'
item
.OrderStatus==2'
>
<Text
style=
'margin-left: 10px;margin-top: 5px;'
>
备注
</Text>
<input
class=
"uni-input inputM"
style=
'margin-left: 10px;margin-top: 5px;'
v-model=
"Cancelmsg.Remark"
placeholder=
"输入备注"
/>
</view>
...
...
@@ -490,6 +490,13 @@ export default {
},
confirm
()
{
//取消订单
this
.
showModal
=
false
;
if
(
this
.
Cancelmsg
.
Type
==
2
&&
this
.
Cancelmsg
.
Remark
==
''
){
uni
.
showToast
({
title
:
'备注不能为空'
,
icon
:
'none'
})
return
}
this
.
request2
(
{
url
:
'/api/AppletOrder/CancelAppletGoodsOrderInfo'
,
...
...
pages/order/order-detail.vue
View file @
aae45b5a
...
...
@@ -440,6 +440,13 @@ export default {
},
confirm
()
{
this
.
showModal
=
false
;
if
(
this
.
Cancelmsg
.
Type
==
2
&&
this
.
Cancelmsg
.
Remark
==
''
){
uni
.
showToast
({
title
:
'备注不能为空'
,
icon
:
'none'
})
return
}
let
pages
=
getCurrentPages
();
// 当前页面
let
beforePage
=
pages
[
pages
.
length
-
2
];
// 前一个页面
this
.
request2
(
...
...
pages/share-qrcode/share-qrcode.vue
View file @
aae45b5a
...
...
@@ -64,7 +64,7 @@
{
url
:
'/api/AppletUser/GetWeiXinQRCodeForApplet'
,
data
:
{
Path
:
'
/
pages/index/index?pid='
+
this
.
UserInfo
.
UserId
,
Path
:
'pages/index/index?pid='
+
this
.
UserInfo
.
UserId
,
With
:
this
.
qrcode
.
QrCodeSize
,
}
},
...
...
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