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
ab506b18
Commit
ab506b18
authored
Apr 03, 2025
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
11
parent
7a0ad137
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
33 additions
and
4 deletions
+33
-4
seatStatistics.vue
src/components/Ticketing/seatStatistics.vue
+33
-4
No files found.
src/components/Ticketing/seatStatistics.vue
View file @
ab506b18
...
@@ -242,6 +242,19 @@
...
@@ -242,6 +242,19 @@
</el-select>
</el-select>
</span>
</span>
</li>
</li>
<li>
<span>
<em>
{{
$t
(
"system.query_airCompanyName"
)
}}
</em>
</span>
<el-select
v-model=
"msg.QAirlineId"
filterable
:placeholder=
"$t('system.ph_buxian')"
class=
"w150"
>
<el-option
:label=
"$t('system.ph_buxian')"
:value=
"0"
>
</el-option>
<el-option
v-for=
"item in AirlineList"
:key=
"item.AirLineId"
:label=
"item.AlName"
:value=
"item.AirLineId"
>
</el-option>
</el-select>
</li>
<li>
<li>
<span>
<span>
<em>
{{
$t
(
'admin.admin_czPerson'
)
}}
</em>
<em>
{{
$t
(
'admin.admin_czPerson'
)
}}
</em>
...
@@ -320,7 +333,8 @@
...
@@ -320,7 +333,8 @@
QCityId
:
0
,
QCityId
:
0
,
//操作人
//操作人
QCreateBy
:
""
,
QCreateBy
:
""
,
FlightDate
:
""
FlightDate
:
""
,
QAirlineId
:
""
,
//航空公司
},
},
//线路列表
//线路列表
LineList
:
[],
LineList
:
[],
...
@@ -338,10 +352,24 @@
...
@@ -338,10 +352,24 @@
EmployeeList
:
[],
EmployeeList
:
[],
TotalCount
:
0
,
TotalCount
:
0
,
TotalSeat
:
0
,
TotalSeat
:
0
,
loading
:
false
loading
:
false
,
//航空公司
AirlineList
:
[],
};
};
},
},
methods
:
{
methods
:
{
//获取航空公司
getAirlineList
()
{
this
.
apipost
(
"airline_post_GetList"
,
{},
(
res
)
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
AirlineList
=
res
.
data
.
data
;
}
},
(
err
)
=>
{}
);
},
//获取线路列表
//获取线路列表
GetLineList
()
{
GetLineList
()
{
this
.
apipost
(
this
.
apipost
(
...
@@ -410,13 +438,13 @@
...
@@ -410,13 +438,13 @@
},
},
//点击获取机票库存数据
//点击获取机票库存数据
GetHoltelInventory
()
{
GetHoltelInventory
()
{
this
.
loading
=
true
;
this
.
loading
=
true
;
this
.
msg
.
FlightDate
=
this
.
currentYear
+
"-"
+
this
.
currentMonth
+
"-01"
;
this
.
msg
.
FlightDate
=
this
.
currentYear
+
"-"
+
this
.
currentMonth
+
"-01"
;
this
.
apipost
(
this
.
apipost
(
"AirTicket_get_GetMonthAirticketFlight"
,
"AirTicket_get_GetMonthAirticketFlight"
,
this
.
msg
,
this
.
msg
,
res
=>
{
res
=>
{
this
.
loading
=
false
;
this
.
loading
=
false
;
this
.
DayData
=
res
.
data
.
data
;
this
.
DayData
=
res
.
data
.
data
;
this
.
TotalCount
=
0
;
this
.
TotalCount
=
0
;
this
.
TotalSeat
=
0
;
this
.
TotalSeat
=
0
;
...
@@ -488,6 +516,7 @@
...
@@ -488,6 +516,7 @@
let
myDate
=
new
Date
();
let
myDate
=
new
Date
();
this
.
currentYear
=
myDate
.
getFullYear
();
this
.
currentYear
=
myDate
.
getFullYear
();
this
.
currentMonth
=
myDate
.
getMonth
()
+
1
;
this
.
currentMonth
=
myDate
.
getMonth
()
+
1
;
this
.
getAirlineList
();
this
.
getEmployeeList
();
this
.
getEmployeeList
();
this
.
getCityList
();
this
.
getCityList
();
this
.
GetLineList
();
this
.
GetLineList
();
...
...
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