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-10-16 18:12:04 +0800
Browse Files
Options
Browse Files
Download
Plain Diff
Commit
9861ccad268422098a5d4bb62e7d56c8b76f1ddc
9861ccad
2 parents
d230350d
09894e95
Merge branch 'et86' into uat
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
17 additions
and
11 deletions
src/views/allocationConfig/flightAllocConfig/flightRouteInfo/index.vue
src/views/allocationConfig/flightAllocConfig/index.vue
src/views/allocationConfig/flightAllocConfig/mixins/index.js
src/views/basicInformation/flightInformationMaintenance/index.vue
src/views/basicInformation/queryCargo/info.vue
src/views/allocationConfig/flightAllocConfig/flightRouteInfo/index.vue
View file @
9861cca
...
...
@@ -125,14 +125,18 @@ export default {
(item) => item.isEtesRoute == "N"
); // 过滤ET86航线
const routes = [];
isEtesRoute.map((item) => {
routes.push({ config: false, route: item.route });
});
if (isEtesRoute.length) {
isEtesRoute.map((item) => {
routes.push({ config: false, route: item.route });
});
} else {
this.msgWarning("暂无航线");
}
this.routeList = isEtesRoute;
this.routesInfo = routes;
} else {
this.routeList = [];
this.msg
Error
("暂无航线");
this.msg
Warning
("暂无航线");
}
}
})
...
...
src/views/allocationConfig/flightAllocConfig/index.vue
View file @
9861cca
...
...
@@ -231,7 +231,7 @@ export default {
flightDate: ruleDate,
purposeOfFlightNo: purposeOfFlightNo,
flightRouteListStr: flightRoute,
status: status,
status: status
== "1" ? "" : status == "3" ? status : ""
,
pageName: "flightAllocConfig",
dataStatus: name,
querySpecifyData: this.queryParams.querySpecifyData,
...
...
src/views/allocationConfig/flightAllocConfig/mixins/index.js
View file @
9861cca
...
...
@@ -82,14 +82,14 @@ export default {
flightDate
:
""
,
flightRoute
:
""
,
purposeOfFlightNo
:
parmas
.
purposeOfFlightNo
,
status
:
""
,
status
:
parmas
.
status
,
},
dateParmas
:
{
flightDate
:
parmas
.
flightDate
,
flightRoute
:
""
,
flightRouteListStr
:
""
,
purposeOfFlightNo
:
parmas
.
purposeOfFlightNo
,
status
:
""
,
status
:
parmas
.
status
,
},
queryParmas
:
function
()
{
// 非日期级别
...
...
src/views/basicInformation/flightInformationMaintenance/index.vue
View file @
9861cca
...
...
@@ -358,7 +358,7 @@
</div>
</template>
<el-select
v-
if="routeMultipl
e"
v-
show="routeMultiple == tru
e"
ref="routeSelect"
class="wid80"
v-model="form.route"
...
...
@@ -389,7 +389,7 @@
</el-option>
</el-select>
<el-select
v-
if
="routeMultiple == false"
v-
show
="routeMultiple == false"
ref="routeSelect"
class="wid80"
v-model="form.route"
...
...
@@ -1005,7 +1005,7 @@ export default {
this.form.route = "";
} else if (item.chineseName.indexOf("Purple") >= 0) {
this.routeMultiple = true;
this.
form.route = []
;
this.
$set(this.form, "route", [])
;
}
this.routeError = true;
}
...
...
src/views/basicInformation/queryCargo/info.vue
View file @
9861cca
...
...
@@ -258,11 +258,13 @@ export default {
}
findFlightRoute(obj).then(res => {
if (res.code === 200) {
res.data[0].route.indexOf(';') <= 0 ?
if(res.data.length){
res.data[0].route.indexOf(';') <= 0 ?
this.routeList = res.data :
res.data[0].route.split(';').forEach(item => {
this.routeList.push({ id: res.data[0].id, route: item })
})
}
} else {
this.msgWarning(res.msg)
}
...
...
Please
register
or
login
to post a comment