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
bf48a40d
Commit
bf48a40d
authored
Jan 15, 2020
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
d895253b
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
44 additions
and
16 deletions
+44
-16
ticketSearch.vue
src/components/FinancialModule/ticketSearch.vue
+44
-16
No files found.
src/components/FinancialModule/ticketSearch.vue
View file @
bf48a40d
...
...
@@ -14,8 +14,10 @@
<li>
<span>
<em>
日期
</em>
<el-date-picker
class=
"w150"
type=
"date"
v-model=
"msg.QStartDate"
:picker-options=
"pickerBeginDateBefore"
value-format=
"yyyy-MM-dd"
placeholder
></el-date-picker>
<el-date-picker
class=
"w150"
type=
"date"
v-model=
"msg.QEndDate"
:picker-options=
"pickerBeginDateAfter"
value-format=
"yyyy-MM-dd"
placeholder
></el-date-picker>
<el-date-picker
class=
"w150"
type=
"date"
v-model=
"msg.QStartDate"
:picker-options=
"pickerBeginDateBefore"
value-format=
"yyyy-MM-dd"
placeholder
></el-date-picker>
<el-date-picker
class=
"w150"
type=
"date"
v-model=
"msg.QEndDate"
:picker-options=
"pickerBeginDateAfter"
value-format=
"yyyy-MM-dd"
placeholder
></el-date-picker>
</span>
</li>
<li>
...
...
@@ -27,7 +29,18 @@
<li>
<span>
<em>
团队编号
</em>
<el-input
v-model=
"msg.TCID"
type=
"text"
@
keyup
.
native=
"checkInteger(msg,'TCID')"
></el-input>
<el-input
v-model=
"msg.TCID"
type=
"text"
@
keyup
.
native=
"checkInteger(msg,'TCID')"
></el-input>
</span>
</li>
<li>
<span>
<em>
航空公司
</em>
<el-select
v-model=
"msg.AirTicketId"
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>
</span>
</li>
<li>
...
...
@@ -80,10 +93,12 @@
QEndDate
:
''
,
TCNUM
:
''
,
TCID
:
''
,
AirTicketId
:
0
,
//航空公司
pageIndex
:
1
,
pageSize
:
15
},
dataList
:
[],
AirlineList
:
[],
//航空公司
currentPage
:
1
,
total
:
0
,
pickerBeginDateBefore
:
{
...
...
@@ -105,10 +120,10 @@
}
},
created
()
{
},
components
:
{},
mounted
()
{
this
.
getAirlineList
();
this
.
getList
();
},
methods
:
{
...
...
@@ -124,6 +139,18 @@
}
},
err
=>
{})
},
//获取航空公司
getAirlineList
()
{
this
.
apipost
(
"airline_post_GetList"
,
{},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
AirlineList
=
res
.
data
.
data
;
}
},
err
=>
{}
);
},
//翻页
handleCurrentChange
(
val
)
{
this
.
msg
.
pageIndex
=
val
;
...
...
@@ -145,4 +172,5 @@
},
}
}
</
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