切换导航条
此项目
正在载入...
登录
朱兆平
/
vue_cli
·
提交
转到一个项目
GitLab
转到仪表盘
项目
活动
文件
提交
管道
0
构建
0
图表
里程碑
问题
0
合并请求
0
成员
标记
维基
派生
网络
创建新的问题
下载为
邮件补丁
差异文件
浏览文件
作者
xudada
5 years ago
提交
31d98e3772d59f5ad38828c5d49f4f3f60901f5e
1 个父辈
7b46f779
运输工具通用查询
隐藏空白字符变更
内嵌
并排对比
正在显示
1 个修改的文件
包含
14 行增加
和
23 行删除
src/views/airtransport/queryFlight.vue
src/views/airtransport/queryFlight.vue
查看文件 @
31d98e3
...
...
@@ -6,7 +6,7 @@
<div class="grid-content content">航班查询</div>
</el-col>
</el-row>
<!--
搜索区域-->
<!--搜索区域-->
<el-row>
<el-form :label-position="labelPosition" :model="queryFlight" :rules="rules" ref="queryFlight"
label-width="130px" class="demo-ruleForm">
...
...
@@ -25,7 +25,7 @@
</el-col>
</el-form>
</el-row>
<!--
表单区域-->
<!--表单区域-->
<el-row>
<el-table
:data="tableData"
...
...
@@ -45,60 +45,50 @@
</el-table-column>
<el-table-column
prop="flightNo"
label="航班号"
width="80">
label="航班号">
</el-table-column>
<el-table-column
prop="airwayCode"
label="航空公司代码"
width="120">
label="航空公司代码">
</el-table-column>
<el-table-column
prop="flightDate"
label="航空公司中文"
width="150">
label="航空公司中文">
</el-table-column>
<el-table-column
prop="transportAgentCode"
label="传输代理人"
width="120">
label="传输代理人">
</el-table-column>
<el-table-column
prop="groundAgentCode"
label="地面代理人"
width="120">
label="地面代理人">
</el-table-column>
<el-table-column
prop="linesType"
label="运输计划"
width="150">
label="运输计划">
</el-table-column>
<el-table-column
prop="flightType"
label="航班性质"
width="80">
label="航班性质">
</el-table-column>
<el-table-column
prop="shareFlightNo"
label="共享航班号"
width="150">
label="共享航班号">
</el-table-column>
<el-table-column
prop="statusMsg"
label="海关回执"
width="1
5
0">
width="1
8
0">
</el-table-column>
<el-table-column
prop="
"
fixed="right
"
label="报文操作"
width="
15
0">
width="
20
0">
<template slot-scope="scope">
<el-button
size="mini"
type="success"
@click="handleEdit(scope.$index, scope.row)">查看</el-button>
</template>
<template slot-scope="scope">
<el-button
size="mini"
type="danger"
...
...
@@ -170,6 +160,7 @@
},
handleCurrentChange(val) {
this.currentPage=val;
this.submitForm();
},
//获取航班列表
submitForm(){
...
...
请
注册
或
登录
后发表评论