Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
CRM
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
华国豪
CRM
Commits
86ae5328
Commit
86ae5328
authored
May 09, 2022
by
zhengke
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.oytour.com/huaguohao/crm
parents
68414f37
0e68134a
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
536 additions
and
5 deletions
+536
-5
customerOrder.vue
src/components/customerManage/customerOrder.vue
+4
-0
orderList.vue
src/components/customerManage/orderList.vue
+2
-3
ticketOrder.vue
src/components/guestManagement/ticketOrder.vue
+2
-2
index.vue
src/components/planeTicketOrder/index.vue
+519
-0
router.js
src/router.js
+9
-0
No files found.
src/components/customerManage/customerOrder.vue
View file @
86ae5328
...
...
@@ -259,6 +259,10 @@
let
data
=
JSON
.
parse
(
this
.
$route
.
query
.
erpOrderObj
)
this
.
msg
.
OrderId
=
data
.
OrderId
}
//接收订单统计传过来的参数
if
(
this
.
$route
.
query
.
OrderId
){
this
.
msg
.
OrderId
=
this
.
$route
.
query
.
OrderId
}
this
.
Employee
()
//业务员
this
.
GetTicketStatusEnumList
()
//出票枚举
let
$this
=
this
...
...
src/components/customerManage/orderList.vue
View file @
86ae5328
...
...
@@ -23,7 +23,7 @@
<th
width=
"12%"
>
单号
</th>
<th
width=
"8.5%"
>
客人
</th>
<th
width=
"6.5%"
>
人数
</th>
<th
width=
"8.5%"
>
起始城市
</th>
<th
width=
"8.5%"
>
出行概述
</th>
<th
width=
"6.5%"
>
应收
</th>
<th
width=
"6.5%"
>
实收
</th>
<th
width=
"6.5%"
>
退款
</th>
...
...
@@ -70,8 +70,7 @@
</td>
<td
style=
"border:none"
>
{{
item
.
GuestCount
}}
人
</td>
<td
style=
"border:none"
>
{{
item
.
StartCityName
}}
->
{{
item
.
EndCityName
}}
{{
item
.
StartCityName
}}
</td>
<td
style=
"border:none"
>
<p
@
click=
"editOrderAmount(item)"
class=
"cp"
...
...
src/components/guestManagement/ticketOrder.vue
View file @
86ae5328
...
...
@@ -631,7 +631,7 @@
<div
v-if=
"name=='凭证图'"
class=
"Credentials-box"
>
<div
class=
"Credentials-text"
>
<div
class=
"Credentialstext-box"
>
<p>
熔断凭证
</p>
<p>
熔断
/取消
凭证
</p>
<div
class=
"Credentialsimg-box"
>
<el-image
v-for=
"(items,index) in obj.CancelVoucherList"
:key=
"index"
:src=
"domainManager().ViittoFileUrl+items"
></el-image>
...
...
@@ -639,7 +639,7 @@
</div>
<div
class=
"Credentialstext-box"
>
<p>
取消
凭证
</p>
<p>
出票
凭证
</p>
<div
class=
"Credentialsimg-box"
>
<el-image
v-for=
"(items,index) in obj.TicketVoucherList"
:key=
"index"
:src=
"domainManager().ViittoFileUrl+items"
>
...
...
src/components/planeTicketOrder/index.vue
0 → 100644
View file @
86ae5328
This diff is collapsed.
Click to expand it.
src/router.js
View file @
86ae5328
...
...
@@ -19,6 +19,7 @@ import customerConfiguration from "./components/customerManage/customerConfigura
import
customerOrder
from
"./components/customerManage/customerOrder"
import
myCustomerOrder
from
"./components/customerManage/myCustomerOrder"
import
automaticLogin
from
'./views/automaticLogin'
import
planeTicketOrder
from
'./components/planeTicketOrder/index'
Vue
.
use
(
Router
);
export
default
new
Router
({
...
...
@@ -455,6 +456,14 @@ export default new Router({
meta
:
{
title
:
"我的订单"
}
},
{
path
:
"/planeTicketOrder"
,
name
:
"planeTicketOrder"
,
component
:
planeTicketOrder
,
meta
:
{
title
:
"订单核算统计"
}
}
]
},
...
...
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