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
e2d9d384
Commit
e2d9d384
authored
Jun 09, 2025
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增车查询条件
parent
f24ce74e
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
0 deletions
+20
-0
HPTripPlan.vue
src/components/busManagement/HPTripPlan.vue
+20
-0
No files found.
src/components/busManagement/HPTripPlan.vue
View file @
e2d9d384
...
@@ -33,6 +33,15 @@
...
@@ -33,6 +33,15 @@
</el-date-picker>
</el-date-picker>
</span>
</span>
</li>
</li>
<li>
<span><em>
车
</em>
<el-select
v-model=
"msg.CarId"
filterable
:placeholder=
"$t('pub.pleaseSel')"
clearable
@
clear=
"getList()"
@
change=
"getList()"
>
<el-option
v-for=
"item in carList"
:label=
"item.CarName+`(`+item.CarNo+`)`"
:value=
"item.Id"
:key=
"item.Id"
>
</el-option>
</el-select>
</span>
</li>
<li>
<li>
<input
type=
"button"
class=
"normalBtn"
:value=
"$t('pub.searchBtn')"
@
click=
"getList()"
/>
<input
type=
"button"
class=
"normalBtn"
:value=
"$t('pub.searchBtn')"
@
click=
"getList()"
/>
<button
class=
"hollowFixedBtn"
@
click=
"editPlan(null)"
>
{{
$t
(
'pub.addBtn'
)
}}
</button>
<button
class=
"hollowFixedBtn"
@
click=
"editPlan(null)"
>
{{
$t
(
'pub.addBtn'
)
}}
</button>
...
@@ -133,6 +142,7 @@
...
@@ -133,6 +142,7 @@
loading
:
false
,
loading
:
false
,
msg
:
{
msg
:
{
MonthStr
:
""
,
MonthStr
:
""
,
CarId
:
""
,
},
},
headerList
:
[],
//表头
headerList
:
[],
//表头
dataList
:
[],
dataList
:
[],
...
@@ -143,12 +153,21 @@
...
@@ -143,12 +153,21 @@
},
},
isShowEditPlanDialog
:
false
,
//是否显示新增修改
isShowEditPlanDialog
:
false
,
//是否显示新增修改
dialogTitle
:
""
,
dialogTitle
:
""
,
carList
:
[],
}
}
},
},
components
:
{
components
:
{
editTripPlan
editTripPlan
},
},
methods
:
{
methods
:
{
//获取车辆列表
getCarList
()
{
this
.
apipost
(
"travel_post_GetJapanCarList"
,
{},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
carList
=
res
.
data
.
data
;
}
});
},
//机票导出
//机票导出
downLoadPlan
()
{
downLoadPlan
()
{
this
.
loading
=
true
;
this
.
loading
=
true
;
...
@@ -238,6 +257,7 @@
...
@@ -238,6 +257,7 @@
let
yearStr
=
myDate
.
getFullYear
();
let
yearStr
=
myDate
.
getFullYear
();
let
monthStr
=
parseInt
(
myDate
.
getMonth
()
+
1
);
let
monthStr
=
parseInt
(
myDate
.
getMonth
()
+
1
);
this
.
msg
.
MonthStr
=
yearStr
+
"-"
+
(
monthStr
<
10
?
'0'
+
monthStr
:
monthStr
);
this
.
msg
.
MonthStr
=
yearStr
+
"-"
+
(
monthStr
<
10
?
'0'
+
monthStr
:
monthStr
);
this
.
getCarList
();
this
.
getList
();
this
.
getList
();
},
},
}
}
...
...
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