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
c73e5b5e
Commit
c73e5b5e
authored
Mar 20, 2019
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改机票
parent
f7d0c3b8
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
8 deletions
+24
-8
TicketManager.vue
src/components/Ticketing/TicketManager.vue
+14
-0
BusInfo.vue
src/components/busManagement/BusInfo.vue
+7
-5
dmcTotalTable.vue
src/components/dmc/manager/dmcTotalTable.vue
+3
-3
No files found.
src/components/Ticketing/TicketManager.vue
View file @
c73e5b5e
...
...
@@ -1730,6 +1730,12 @@
<span>
{{
$t
(
'system.query_arrivalAir'
)
}}
:
{{
item
.
aName
}}
</span>
</p>
</el-tooltip>
<div
style=
"margin:10px 0 0 12px;"
>
<el-input
type=
"text"
class=
"w80"
v-model=
"item.TicketDepartureTime"
maxlength=
"5"
:placeholder=
"$t('system.ph_time')"
></el-input>
-
<el-input
type=
"text"
class=
"w80"
v-model=
"item.TicketArrivalTime"
maxlength=
"5"
:placeholder=
"$t('system.ph_time')"
></el-input>
</div>
</div>
</div>
<div
class=
"_add_go _new_go"
>
...
...
@@ -1792,6 +1798,12 @@
<span>
{{
$t
(
'system.query_arrivalAir'
)
}}
:
{{
item
.
aName
}}
</span>
</p>
</el-tooltip>
<div
style=
"margin:10px 0 0 12px;"
>
<el-input
type=
"text"
class=
"w80"
v-model=
"item.TicketDepartureTime"
maxlength=
"5"
:placeholder=
"$t('system.ph_time')"
></el-input>
-
<el-input
type=
"text"
class=
"w80"
v-model=
"item.TicketArrivalTime"
maxlength=
"5"
:placeholder=
"$t('system.ph_time')"
></el-input>
</div>
</div>
</div>
<div
class=
"_add_go _new_go"
>
...
...
@@ -2735,6 +2747,8 @@
res
.
data
.
data
.
flightList
.
forEach
((
x
,
index
)
=>
{
this
.
chengeDelIdList
.
push
(
x
.
ID
);
});
console
.
log
(
this
.
addMsg
,
'addmsg'
);
}
else
{
this
.
Warning
(
res
.
data
.
message
);
}
...
...
src/components/busManagement/BusInfo.vue
View file @
c73e5b5e
...
...
@@ -86,8 +86,8 @@
<th
width=
"150"
>
日期
</th>
<th
width=
"300"
>
酒店名称
</th>
<th
width=
"120"
>
停车场
</th>
<th
width=
"
30
0"
>
用车计划
</th>
<th
width=
"
15
0"
>
订团号
</th>
<th
width=
"
28
0"
>
用车计划
</th>
<th
width=
"
20
0"
>
订团号
</th>
<th
width=
"120"
>
司机姓名
</th>
<th
width=
"120"
>
联系电话
</th>
<th
width=
"250"
>
司机住宿
</th>
...
...
@@ -141,8 +141,8 @@
</div>
</td>
<td>
<div
class=
"w1
0
0"
>
<el-input
class=
'w1
0
0'
type=
"text"
v-model=
"item.BookGroup"
></el-input>
<div
class=
"w1
2
0"
>
<el-input
class=
'w1
2
0'
type=
"text"
v-model=
"item.BookGroup"
></el-input>
</div>
</td>
<td>
...
...
@@ -469,7 +469,9 @@ export default {
response
=>
{
if
(
response
.
data
.
resultCode
==
1
)
{
this
.
PlanTableData
=
response
.
data
.
data
;
console
.
log
(
this
.
PlanTableData
)
this
.
PlanTableData
.
forEach
(
x
=>
{
x
.
BookGroup
=
this
.
$route
.
query
.
NewCombinationNum
;
})
}
},
null
...
...
src/components/dmc/manager/dmcTotalTable.vue
View file @
c73e5b5e
...
...
@@ -215,7 +215,7 @@
</div>
</td>
<td>
<div
class=
"fz16 fbold linkspan"
@
click=
"goUrlBus('BusInfo',item,'车配信息')"
>
<div
class=
"fz16 fbold linkspan"
@
click=
"goUrlBus('BusInfo',item,
outItem,
'车配信息')"
>
<span
style=
"color: #4BCA81;"
v-if=
"item.ResultReport.BusResult==1"
>
√
</span>
<span
class=
"colorE95252"
v-else
>
{{
item
.
ResultReport
.
BusResult
==
'-1'
?
"x"
:
"O"
}}
</span>
</div>
...
...
@@ -414,7 +414,7 @@
}
})
},
goUrlBus
(
path
,
obj
,
title
)
{
goUrlBus
(
path
,
obj
,
outItem
,
title
)
{
this
.
$router
.
push
({
name
:
path
,
query
:
{
...
...
@@ -422,13 +422,13 @@
StartDate
:
obj
.
StartDateStr
,
DayNum
:
obj
.
DayNum
,
TotalNumber
:
obj
.
TotalSeat
,
NewCombinationNum
:
outItem
.
NewCombinationNum
,
blank
:
'y'
,
tab
:
title
}
})
},
goUrlLeaderIsApply
(
path
,
obj
,
outItem
,
title
)
{
console
.
log
(
outItem
,
'outItem'
);
this
.
$router
.
push
({
name
:
path
,
query
:
{
...
...
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