Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Fedex
/
imac-vue
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
1730532197@qq.com
2021-12-10 14:54:47 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
5463bd424477380ee34bc614cc4581e6ae66e806
5463bd42
1 parent
628a5078
lwj
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
21 additions
and
1 deletions
src/api/findAllFltData.js
src/utils/FedEx.js
src/views/allocationConfig/flightRandConfig/index.vue
src/views/systemConfig/userConfig/index.vue
src/api/findAllFltData.js
0 → 100644
View file @
5463bd4
import
request
from
'@/utils/request'
// 航班信息维护查询条件
export
function
findFltConditionDataApi
()
{
return
request
({
url
:
'/FlightPreserveController/findFltConditionData'
,
method
:
'post'
})
}
// 航班信息维护查询
export
function
findAllFltDataApi
(
data
)
{
return
request
({
url
:
'/FlightPreserveController/findAllFltData'
,
method
:
'post'
,
data
:
data
})
}
src/utils/FedEx.js
View file @
5463bd4
...
...
@@ -7,6 +7,7 @@ const baseURL = process.env.VUE_APP_BASE_API
// 日期格式化
export
function
parseTime
(
time
,
pattern
)
{
debugger
if
(
arguments
.
length
===
0
||
!
time
)
{
return
null
}
...
...
src/views/allocationConfig/flightRandConfig/index.vue
View file @
5463bd4
...
...
@@ -236,7 +236,7 @@
},
/** 查询原航班顺位规则*/
findSourceFlightRules() {
//
this.loading = true;
this.loading = true;
if (this.queryParams.pageNum > 1) {
this.queryParams.start = (this.queryParams.pageNum - 1) * this.queryParams.limit
} else {
...
...
src/views/systemConfig/userConfig/index.vue
View file @
5463bd4
This diff is collapsed. Click to expand it.
Please
register
or
login
to post a comment