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
shanyunduo.cheng
2021-12-06 14:09:15 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
55493aea79d5ef4f2105bcff667f8b81c079b876
55493aea
1 parent
ad09441f
前后去空格,servercode排序
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
src/views/allocationConfig/flightAllocConfig/index.vue
src/views/allocationConfig/flightAllocConfig/info.vue
src/views/allocationConfig/flightAllocConfig/index.vue
View file @
55493ae
...
...
@@ -8,7 +8,7 @@
>
<el-form-item label="航班号">
<el-input
v-model="queryParams.purposeOfFlightNo"
v-model
.trim
="queryParams.purposeOfFlightNo"
placeholder="航班号"
@keyup.enter.native="getList"
></el-input>
...
...
src/views/allocationConfig/flightAllocConfig/info.vue
View file @
55493ae
...
...
@@ -10,7 +10,7 @@
>
<el-form-item label="航班号" prop="purposeOfFlightNo">
<el-input
v-model="form.purposeOfFlightNo"
v-model
.trim
="form.purposeOfFlightNo"
style="width: 30%"
></el-input>
</el-form-item>
...
...
@@ -32,7 +32,7 @@
<!-- <el-alert title="提示:站点之间用回车符分隔" type="info" show-icon size="small" :closable="false" style="height:30px; margin-buttom"> </el-alert> -->
<el-input
type="textarea"
v-model="form.location"
v-model
.trim
="form.location"
:rows="6"
resize="none"
></el-input>
...
...
@@ -42,7 +42,7 @@
<el-form-item label="站点不包含">
<el-input
type="textarea"
v-model="form.notLocation"
v-model
.trim
="form.notLocation"
:rows="6"
resize="none"
></el-input>
...
...
@@ -66,7 +66,7 @@
<el-form-item label="URSA包含">
<el-input
type="textarea"
v-model="form.includeUrsa"
v-model
.trim
="form.includeUrsa"
:rows="6"
resize="none"
></el-input>
...
...
@@ -76,7 +76,7 @@
<el-form-item label="URSA不包含">
<el-input
type="textarea"
v-model="form.notIncludeUrsa"
v-model
.trim
="form.notIncludeUrsa"
:rows="6"
resize="none"
></el-input>
...
...
@@ -322,7 +322,7 @@ export default {
let dict = response.data;
this.cargoType = dict.cargoType;
this.cargoStatus = dict.cargoStatus;
this.serviceCode = dict.serviceCode;
this.serviceCode = dict.serviceCode
.sort((a, b) => a.englishName.localeCompare(b.englishName))
;
this.subCategory = dict.subCategory;
});
if (handle === "detail") {
...
...
@@ -331,7 +331,7 @@ export default {
if (handle != "add") {
let id = this.$route.params.id;
if (isNaN(Number(id))) {
findDestinationFltRuleByActualFlight(id).then((response) => {
if (response.code != 200) {
...
...
Please
register
or
login
to post a comment