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
58a04509
Commit
58a04509
authored
Sep 11, 2020
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加司导订单页
parent
83b6f712
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
371 additions
and
0 deletions
+371
-0
pages.json
pages.json
+2
-0
orderList.vue
pages/guidecar/orderList.vue
+369
-0
No files found.
pages.json
View file @
58a04509
...
...
@@ -313,6 +313,8 @@
}
},{
"path"
:
"pickcarcity"
},{
"path"
:
"orderList"
}]
},
{
...
...
pages/guidecar/orderList.vue
0 → 100644
View file @
58a04509
<
style
>
.order_Content
{
width
:
100%
;
}
.order_Inner
{
width
:
100%
;
padding
:
20px
;
margin-bottom
:
10px
;
background-color
:
#fff
;
}
.order_NContent
{
display
:
flex
;
justify-content
:
space-between
;
align-items
:
center
;
font-size
:
13px
;
color
:
#121212
;
}
.order_Status
{
color
:
#FF4048
;
color
:
12px
;
}
.order_Car
{
display
:
flex
;
justify-content
:
space-between
;
margin-top
:
15px
;
}
.order_Price
{
color
:
#121212
;
font-size
:
15px
;
}
.order_carImg
image
{
width
:
200
rpx
;
height
:
200
rpx
;
}
.order_middle
{
font-size
:
13px
;
color
:
#121212
;
width
:
55%
;
}
.order_carName
{
font-size
:
15px
;
font-weight
:
bold
;
margin-bottom
:
9px
;
}
.order_guidIndfo
{
width
:
100%
;
height
:
45px
;
background-color
:
#FAF8F9
;
display
:
flex
;
justify-content
:
space-between
;
align-items
:
center
;
font-size
:
13px
;
color
:
#121212
;
padding
:
0
20px
;
margin-top
:
15px
;
border-radius
:
7px
;
font-weight
:
bold
;
}
.order_BtnList
{
margin-top
:
20px
;
position
:
relative
;
height
:
30px
;
}
.order_Btn_inner
{
width
:
70%
;
position
:
absolute
;
right
:
0
;
}
.order_Btn_Com
{
padding
:
5px
10px
;
border
:
1px
solid
#888888
;
border-radius
:
14px
;
color
:
#888888
;
font-size
:
12px
;
float
:
right
;
margin-right
:
15px
;
}
.order_Btn_inner
.order_Btn_Com
:first-child
{
margin-right
:
0
;
}
</
style
>
<
template
>
<view
class=
"quick-box"
style=
"height:100vh;"
>
<view
class=
"guid-head"
>
<u-tabs
name=
"Name"
:list=
"headData"
:is-scroll=
"true"
:current=
"current"
:bar-width=
"80"
:font-size=
"28"
:active-color=
"mainColor"
@
change=
"getChild"
></u-tabs>
</view>
<u-empty
v-if=
"dataList.length==0"
text=
"暂无数据"
mode=
"data"
></u-empty>
<scroll-view
v-else
:scroll-y=
"true"
style=
"background-color: #f0f4f7;"
:enable-back-to-top=
"true"
:enable-flex=
"true"
@
scrolltolower=
"lower"
:style=
"
{ 'height': `calc(100% - ${scrollHeight})`}">
<view
class=
"order_Content"
>
<view
class=
"order_Inner"
v-for=
"(item,index) in dataList"
:key=
"index"
>
<view
class=
"order_NContent"
>
<view>
订单号:
{{
item
.
OrderNo
}}
</view>
<view
class=
"order_Status"
>
{{
item
.
OrderStatusName
}}
</view>
</view>
<view
class=
"order_Car"
>
<view
class=
"order_carImg"
>
<image
mode=
"aspectFit"
:src=
"item.DetailList[0].CoverImagePath"
/>
</image>
</view>
<view
class=
"order_middle"
>
<view
class=
"order_carName"
>
{{
item
.
DetailList
[
0
].
GoodsName
}}
</view>
<view
style=
"margin-bottom:9px;"
>
{{
item
.
DetailList
[
0
].
TripSTime
}}
</view>
<view>
出行
{{
item
.
DetailList
[
0
].
Number
}}
人
</view>
</view>
<view>
<view
class=
"order_Price"
>
¥
{{
item
.
Income
}}
</view>
</view>
</view>
<view
class=
"order_guidIndfo"
>
<view>
匹配导游:
{{
item
.
GuideName
}}
·
<text
style=
"font-weight: normal;"
>
{{
item
.
GuideTelephone
}}
</text></view>
<view>
<u-avatar
mode=
"circle"
size=
"60"
:src=
"item.GuidePhoto"
></u-avatar>
</view>
</view>
<view
class=
"order_BtnList"
>
<view
class=
"order_Btn_inner"
>
<view
class=
"order_Btn_Com"
style=
"color:#FF4048;border-color:#FF4048;"
>
再次购买
</view>
<!--
<view
class=
"order_Btn_Com"
>
评价晒单
</view>
-->
<view
class=
"order_Btn_Com"
@
click=
"cancel(item,index)"
v-if=
"item.OrderStatus==1||item.OrderStatus==2||item.OrderStatus==3"
>
取消订单
</view>
</view>
</view>
</view>
</view>
<view
style=
"padding:10px 0;"
>
<u-loadmore
:status=
"status"
:load-text=
"loadText"
:font-size=
"24"
:margin-top=
"0"
:margin-bottom=
"0"
bg-color=
"#f0f4f7"
/>
</view>
</scroll-view>
<u-popup
v-model=
"showModal"
mode=
"center"
length=
"80%"
>
<view
style=
'display: flex;flex-direction: column;align-items: center;background: #fff;'
>
<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=
'subItem.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>
<view
style=
"display: flex;flex-direction: row;align-items: center;height: 50px;border-top: 1px solid #F5F5F5;width: 100%;"
>
<view
style=
"width: 50%;display: flex;align-items: center;justify-content: center"
@
click=
"showModal=false"
>
<Text>
取消
</Text>
</view>
<view
style=
"width: 50%;color: #a0cfff;display: flex;align-items: center;justify-content: center"
@
click=
"confirm"
>
<Text>
确定
</Text>
</view>
</view>
</view>
</u-popup>
</view>
</
template
>
<
script
>
import
auth
from
"@/components/auth/index"
;
import
tabbar
from
"@/components/tabbar/index"
;
export
default
{
data
()
{
return
{
pageTitle
:
"司导订单"
,
loading
:
true
,
mainColor
:
""
,
u
:
{},
msg
:
{
pageIndex
:
1
,
pageSize
:
5
,
OrderId
:
0
,
StartTime
:
''
,
EndTime
:
''
,
OrderStatus
:
0
,
OrderNo
:
''
,
OrderType
:
11
//默认写死
},
scrollHeight
:
0
,
pageCount
:
1
,
loadText
:
{
loadmore
:
"轻轻上拉,加载更多"
,
loading
:
"努力加载中"
,
nomore
:
"没有更多了"
,
},
headData
:
[],
//头部切换数据
current
:
0
,
//内容数据
dataList
:
[],
showModal
:
false
,
subItem
:
{},
index
:
0
,
Cancelmsg
:
{
OrderId
:
0
,
Type
:
1
,
Remark
:
''
,
},
};
},
components
:
{
},
created
()
{
this
.
mainColor
=
this
.
$uiConfig
.
mainColor
;
},
mounted
()
{
let
currentPages
=
getCurrentPages
();
let
u
=
"/"
+
currentPages
[
currentPages
.
length
-
1
].
route
;
let
pages
=
wx
.
getStorageSync
(
"basedata"
)
?
wx
.
getStorageSync
(
"basedata"
).
bar_title
:
[];
pages
.
forEach
((
x
)
=>
{
if
(
x
.
value
==
u
)
{
this
.
pageTitle
=
x
.
new_name
?
x
.
new_name
:
x
.
name
;
}
});
uni
.
setNavigationBarTitle
({
title
:
this
.
pageTitle
,
});
setTimeout
(()
=>
{
this
.
getHeadHeight
();
},
1000
);
},
onLoad
(
option
)
{
this
.
getHeadList
();
this
.
getContent
();
this
.
u
=
uni
.
getStorageSync
(
"mall_UserInfo"
);
},
methods
:
{
getHeadHeight
()
{
let
that
=
this
;
const
query
=
uni
.
createSelectorQuery
().
in
(
this
);
query
.
select
(
".guid-head"
)
.
boundingClientRect
((
data
)
=>
{
that
.
scrollHeight
=
data
.
height
+
"px"
;
})
.
exec
();
},
//获取头部数据
getHeadList
()
{
this
.
request2
({
url
:
"/api/AppletGCOrder/GuidCarOrderStatusEnumList"
,
data
:
this
.
msg
,
},
(
res
)
=>
{
console
.
log
(
res
,
'头部'
);
if
(
res
.
resultCode
==
1
)
{
this
.
headData
=
res
.
data
;
var
obj
=
{
Id
:
0
,
Name
:
'全部'
}
this
.
headData
.
unshift
(
obj
)
}
}
);
},
//点击头部切换
getChild
(
i
)
{
this
.
current
=
i
;
this
.
msg
.
OrderStatus
=
this
.
headData
[
this
.
current
].
Id
;
this
.
getContent
(
1
);
},
//获取内容
getContent
(
num
)
{
if
(
num
==
1
)
{
this
.
dataList
=
[];
}
uni
.
showLoading
({
title
:
'加载中'
});
this
.
request2
({
url
:
"/api/AppletGCOrder/GetAppletGoodsGuidecarOrderPageList"
,
data
:
this
.
msg
,
},
(
res
)
=>
{
uni
.
hideLoading
();
if
(
res
.
resultCode
==
1
)
{
console
.
log
(
res
,
'数据'
);
this
.
dataList
=
this
.
dataList
.
concat
(
res
.
data
.
pageData
);
this
.
pageCount
=
res
.
data
.
pageCount
;
}
}
);
},
//滚动加载
lower
(
e
)
{
if
(
this
.
msg
.
pageIndex
<
this
.
pageCount
)
{
this
.
conMsg
.
pageIndex
++
;
this
.
status
=
"loading"
;
this
.
getContent
();
}
else
{
this
.
status
=
"nomore"
;
}
},
//跳转
goUrl
(
item
)
{
if
(
item
.
LinkUrl
&&
item
.
LinkUrl
.
length
>
0
)
{
uni
.
navigateTo
({
url
:
item
.
LinkUrl
,
});
}
},
//取消订单
cancel
(
e
,
index
)
{
console
.
log
(
e
,
'eee'
);
this
.
showModal
=
true
;
this
.
Cancelmsg
.
Remark
=
''
,
this
.
index
=
index
;
this
.
subItem
=
e
;
this
.
Cancelmsg
.
OrderId
=
e
.
OrderId
;
this
.
Cancelmsg
.
Type
=
e
.
OrderStatus
==
1
?
1
:
2
;
},
//取消订单
confirm
()
{
let
that
=
this
// that.showModal = false;
if
(
that
.
Cancelmsg
.
Type
==
2
&&
that
.
Cancelmsg
.
Remark
==
''
)
{
uni
.
showToast
({
title
:
'备注不能为空'
,
icon
:
'none'
})
return
}
uni
.
requestSubscribeMessage
({
tmplIds
:
that
.
dataList
[
0
].
template_message_list
,
complete
(
res
)
{
that
.
request2
({
url
:
'/api/AppletOrder/CancelAppletGoodsOrderInfo'
,
data
:
that
.
Cancelmsg
},
(
res
)
=>
{
that
.
showModal
=
false
;
if
(
that
.
Cancelmsg
.
Type
==
1
)
{
uni
.
showToast
({
title
:
res
.
message
,
icon
:
'none'
})
that
.
dataList
.
splice
(
that
.
index
,
1
);
}
else
{
uni
.
showToast
({
title
:
"取消成功,请等待审核"
,
position
:
"bottom"
,
icon
:
"none"
,
duration
:
2000
,
});
that
.
msg
.
pageIndex
=
1
;
that
.
dataList
=
[];
that
.
getContent
();
}
}
);
}
})
},
},
};
</
script
>
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