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
Elements-SY
2023-09-07 17:33:44 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
82ad6c523999c458b9509d75b849c27aba8054df
82ad6c52
1 parent
fd563e80
【数据字典】-航班是否为ET86接口字段更新
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
7 deletions
src/api/system/dictionary.js
src/views/systemConfig/dictionaryConfig/index.vue
src/api/system/dictionary.js
View file @
82ad6c5
...
...
@@ -206,13 +206,10 @@ export function checkFlightRoute(data) {
}
//更新航线
/**
* @param id *
*/
export
function
updateRoute
(
id
)
{
export
function
updateRoute
(
data
)
{
return
request
({
url
:
`/dictionary/updateRoute
/
${
id
}
`
,
url
:
`/dictionary/updateRoute`
,
method
:
"post"
,
data
:
{}
,
data
:
data
,
});
}
...
...
src/views/systemConfig/dictionaryConfig/index.vue
View file @
82ad6c5
...
...
@@ -562,7 +562,13 @@ export default {
center: true,
})
.then(() => {
this.updateRouteSubmit(row.id);
let params = {
id: row.id,
fltNo: row.fltNo,
route: row.route,
isEtesRoute: row.isEtesRoute ? "Y" : "N"
}
this.updateRouteSubmit(params);
})
.catch(() => {
this.tableData[$index].isEtesRoute = !this.tableData[$index].isEtesRoute;
...
...
Please
register
or
login
to post a comment