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
jinhui.wang
2022-12-07 13:24:58 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
038ce5bb2b802118dc5bbf3da5f67af12ff8deb8
038ce5bb
1 parent
322be1c4
增加loading状态
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
src/views/basicInformation/flightInformationMaintenance/index.vue
src/views/basicInformation/flightInformationMaintenance/index.vue
View file @
038ce5b
...
...
@@ -136,8 +136,8 @@
</div>
</template>
<el-select ref="routeSelect" class="wid80" v-model="form.route" :disabled="formdisabled.route"
placeholder="请选择航线" no-data-text="未查询到航线" @change="routeChange" :
multiple='routeMultiple'
:key="routeMultiple">
placeholder="请选择航线" no-data-text="未查询到航线" @change="routeChange" :
laoding="routeLoading"
:
multiple='routeMultiple' :
key="routeMultiple">
<el-option v-for="item in routeList" :key="item.id" :label="item.route" :value="item.route">
</el-option>
</el-select>
...
...
@@ -446,6 +446,7 @@ export default {
ishighPriceWeightPercent: true,
//遮罩层
loading: false,
routeLoading: false,
//遮罩层
loadingFlightDate: false,
//删除失败弹框
...
...
@@ -562,14 +563,17 @@ export default {
this.msgError(response.msg);
}
});
this.routeLoading = true
//获取航线
queryRouteByFltNo({ fltNo: this.form.fltNo }).then(res => {
this.routeLoading = false
if (res.code === 200) {
this.routeList = res.data.list
} else {
this.msgWarning(res.msg)
}
}).catch(err => {
this.routeLoading = false
console.log(err)
})
}
...
...
@@ -902,6 +906,7 @@ export default {
this.routeList = []
this.ishighPriceWeightPercent = true
this.routeMultiple = false
this.routeLoading = false
this.open = false;
this.findAllFltData();
this.findFltConditionData();
...
...
Please
register
or
login
to post a comment