Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SuperMan
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
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
罗超
SuperMan
Commits
03ca6959
Commit
03ca6959
authored
Mar 06, 2019
by
huangyuanyuan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
散客机票
parent
db032f76
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
9 deletions
+12
-9
IndividualTicketOrder.vue
src/components/Ticketing/IndividualTicketOrder.vue
+10
-8
individualTicket.vue
src/components/Ticketing/individualTicket.vue
+1
-1
index.js
src/plug/index.js
+1
-0
No files found.
src/components/Ticketing/IndividualTicketOrder.vue
View file @
03ca6959
...
...
@@ -46,6 +46,7 @@
<table
class=
"groupTourOrderSearchTable"
border=
"0"
cellspacing=
"0"
cellpadding=
"0"
v-loading=
'loading'
>
<tr
class=
"title_tr"
>
<th>
单号
</th>
<th>
机票编码
</th>
<th>
客户信息
</th>
<th>
客人数量
</th>
<th>
单价
</th>
...
...
@@ -64,10 +65,12 @@
<tbody
v-for=
"(item,index) in dataList"
:key=
"index"
>
<tr>
<td>
{{
item
.
Id
}}
</td>
<td>
{{
item
.
Id
}}
</td>
<!-- 机票编码 -->
<td><p
class=
"fz12 over_ellipsis"
style=
"width: 120px;"
>
{{
item
.
ContactName
}}
</p>
<!--
<p
class=
"fz12"
>
123456
</p>
-->
</td>
<td>
{{
item
.
GuestNum
}}
</td>
<td>
{{
item
.
GuestNum
}}
/
{{
item
.
SeatNum
}}
/
{{
item
.
FreightSpace
}}
</td>
<td
class=
"fz12"
>
{{
item
.
TC_Price
}}
</td>
<td
class=
"fz12"
>
{{
item
.
Unit_Price
}}
</td>
<td
style=
"color:#E95252"
>
{{
item
.
PreferPrice
}}
</td>
...
...
@@ -75,9 +78,9 @@
<td>
{{
item
.
Refund
}}
</td>
<td>
{{
item
.
PlatformTax
}}
</td>
<td>
<
el-tag
v-if=
"item.Status==1"
type=
"success"
>
正常
</el-tag
>
<
el-tag
v-if=
"item.Status==2"
>
取消
</el-tag
>
<
el-tag
v-if=
"item.Status==3"
type=
"danger"
>
待付款
</el-tag
>
<
span
v-if=
"item.Status==1"
>
正常
</span
>
<
span
v-if=
"item.Status==2"
>
取消
</span
>
<
span
v-if=
"item.Status==3"
>
待付款
</span
>
</td>
</tr>
...
...
@@ -93,7 +96,6 @@
<el-table
:data=
"item.GuestList"
>
<el-table-column
property=
"Id"
label=
"排号"
></el-table-column>
<el-table-column
property=
"Name"
label=
"姓名"
></el-table-column>
<el-table-column
property=
"EName"
label=
"英文姓名"
></el-table-column>
<el-table-column
property=
"Sex"
label=
"性别"
>
<template
slot-scope=
"scope"
>
<span
v-if=
"scope.row.Sex=='1'"
>
男
</span>
...
...
@@ -198,7 +200,7 @@ export default {
res
=>
{
this
.
loading
=
false
;
if
(
res
.
data
.
resultCode
==
1
)
{
console
.
log
(
res
);
//
console.log(res);
this
.
total
=
res
.
data
.
data
.
count
;
this
.
dataList
=
res
.
data
.
data
.
pageData
;
}
else
{
...
...
@@ -224,7 +226,7 @@ export default {
<
style
scoped
>
@import
"../../assets/css/newTravelManager.css"
;
.title_tr
th
{
width
:
10
%
;
width
:
9
%
;
}
.color_red_order
{
color
:
#e95252
!important
;
...
...
@@ -304,7 +306,7 @@ export default {
}
.groupTourOrderSearchTable
tr
td
{
padding
:
10
px
;
padding
:
8
px
;
border-top
:
1px
solid
#cccccc
;
border-left
:
1px
solid
#cccccc
;
}
...
...
src/components/Ticketing/individualTicket.vue
View file @
03ca6959
...
...
@@ -507,7 +507,7 @@
TicketType
:
2
,
//定金类型(1定,2定等)
LineId
:
0
,
//线路编号
IsPayOrder
:
0
,
FlyState
:
1
,
FlyState
:
0
,
CreateBy
:
0
,
//操作人
},
//员工列表
...
...
src/plug/index.js
View file @
03ca6959
...
...
@@ -116,6 +116,7 @@ export default {
let
domainUrl
=
''
;
let
locationName
=
window
.
location
.
hostname
;
domainUrl
=
"http://127.0.0.1"
;
//214主域名
// domainUrl = "http://192.168.2.16:8083";
if
(
locationName
.
indexOf
(
'oytour'
)
!==-
1
)
{
domainUrl
=
"https://reborn.oytour.com"
;
}
else
if
(
locationName
.
indexOf
(
'viitto'
)
!==-
1
)
{
...
...
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