作者 xudada

运输工具通用查询

@@ -6,7 +6,7 @@ @@ -6,7 +6,7 @@
6 <div class="grid-content content">航班查询</div> 6 <div class="grid-content content">航班查询</div>
7 </el-col> 7 </el-col>
8 </el-row> 8 </el-row>
9 - <!-- 搜索区域--> 9 + <!--搜索区域-->
10 <el-row> 10 <el-row>
11 <el-form :label-position="labelPosition" :model="queryFlight" :rules="rules" ref="queryFlight" 11 <el-form :label-position="labelPosition" :model="queryFlight" :rules="rules" ref="queryFlight"
12 label-width="130px" class="demo-ruleForm"> 12 label-width="130px" class="demo-ruleForm">
@@ -25,7 +25,7 @@ @@ -25,7 +25,7 @@
25 </el-col> 25 </el-col>
26 </el-form> 26 </el-form>
27 </el-row> 27 </el-row>
28 - <!-- 表单区域--> 28 + <!--表单区域-->
29 <el-row> 29 <el-row>
30 <el-table 30 <el-table
31 :data="tableData" 31 :data="tableData"
@@ -45,60 +45,50 @@ @@ -45,60 +45,50 @@
45 </el-table-column> 45 </el-table-column>
46 <el-table-column 46 <el-table-column
47 prop="flightNo" 47 prop="flightNo"
48 - label="航班号"  
49 - width="80"> 48 + label="航班号">
50 </el-table-column> 49 </el-table-column>
51 <el-table-column 50 <el-table-column
52 prop="airwayCode" 51 prop="airwayCode"
53 - label="航空公司代码"  
54 - width="120"> 52 + label="航空公司代码">
55 </el-table-column> 53 </el-table-column>
56 <el-table-column 54 <el-table-column
57 prop="flightDate" 55 prop="flightDate"
58 - label="航空公司中文"  
59 - width="150"> 56 + label="航空公司中文">
60 </el-table-column> 57 </el-table-column>
61 <el-table-column 58 <el-table-column
62 prop="transportAgentCode" 59 prop="transportAgentCode"
63 - label="传输代理人"  
64 - width="120"> 60 + label="传输代理人">
65 </el-table-column> 61 </el-table-column>
66 <el-table-column 62 <el-table-column
67 prop="groundAgentCode" 63 prop="groundAgentCode"
68 - label="地面代理人"  
69 - width="120"> 64 + label="地面代理人">
70 </el-table-column> 65 </el-table-column>
71 <el-table-column 66 <el-table-column
72 prop="linesType" 67 prop="linesType"
73 - label="运输计划"  
74 - width="150"> 68 + label="运输计划">
75 </el-table-column> 69 </el-table-column>
76 <el-table-column 70 <el-table-column
77 prop="flightType" 71 prop="flightType"
78 - label="航班性质"  
79 - width="80"> 72 + label="航班性质">
80 </el-table-column> 73 </el-table-column>
81 <el-table-column 74 <el-table-column
82 prop="shareFlightNo" 75 prop="shareFlightNo"
83 - label="共享航班号"  
84 - width="150"> 76 + label="共享航班号">
85 </el-table-column> 77 </el-table-column>
86 <el-table-column 78 <el-table-column
87 prop="statusMsg" 79 prop="statusMsg"
88 label="海关回执" 80 label="海关回执"
89 - width="150"> 81 + width="180">
90 </el-table-column> 82 </el-table-column>
91 <el-table-column 83 <el-table-column
92 - prop="" 84 + fixed="right"
93 label="报文操作" 85 label="报文操作"
94 - width="150"> 86 + width="200">
95 <template slot-scope="scope"> 87 <template slot-scope="scope">
96 <el-button 88 <el-button
97 size="mini" 89 size="mini"
98 type="success" 90 type="success"
99 @click="handleEdit(scope.$index, scope.row)">查看</el-button> 91 @click="handleEdit(scope.$index, scope.row)">查看</el-button>
100 - </template>  
101 - <template slot-scope="scope">  
102 <el-button 92 <el-button
103 size="mini" 93 size="mini"
104 type="danger" 94 type="danger"
@@ -170,6 +160,7 @@ @@ -170,6 +160,7 @@
170 }, 160 },
171 handleCurrentChange(val) { 161 handleCurrentChange(val) {
172 this.currentPage=val; 162 this.currentPage=val;
  163 + this.submitForm();
173 }, 164 },
174 //获取航班列表 165 //获取航班列表
175 submitForm(){ 166 submitForm(){