作者 小范

进港运单申报界面优化

@@ -75,10 +75,10 @@ @@ -75,10 +75,10 @@
75 <!--查询结果样式--> 75 <!--查询结果样式-->
76 <el-row style="font-size: xx-small"> 76 <el-row style="font-size: xx-small">
77 <el-col :span="1" class="mark"><div class="grid-content bg" style="color: red"><span>注:</span></div></el-col> 77 <el-col :span="1" class="mark"><div class="grid-content bg" style="color: red"><span>注:</span></div></el-col>
78 - <el-col :span="3" class="mark"><div class="grid-content bg mainse" style="border-radius: 5px;margin-right: 5px;background-color: #63cdda" ><span>主单原始舱单</span></div></el-col>  
79 - <el-col :span="3" class="mark"><div class="grid-content bg fense" style="border-radius: 5px;margin-right: 5px;background-color: #778beb"><span>分单原始舱单</span></div></el-col>  
80 - <el-col :span="3" class="mark"><div class="grid-content bg tallse" style="border-radius: 5px;margin-right: 5px;background-color: #f3a683"><span>主单理货报告</span></div></el-col>  
81 - <el-col :span="3" class="mark"><div class="grid-content bg tallfense" style="border-radius: 5px;margin-right: 5px;background-color: #f7d794"><span>分单理货报告</span></div></el-col> 78 + <el-col :span="3" class="mark"><div class="grid-content bg mainse" style="border-radius: 5px;margin-right: 5px;background-color: rgba(99,205,218,0.4)" ><span>主单原始舱单</span></div></el-col>
  79 + <el-col :span="3" class="mark"><div class="grid-content bg fense" style="border-radius: 5px;margin-right: 5px;background-color: rgba(119,139,235,0.3)"><span>分单原始舱单</span></div></el-col>
  80 + <el-col :span="3" class="mark"><div class="grid-content bg tallse" style="border-radius: 5px;margin-right: 5px;background-color: rgba(243,166,131,0.4)"><span>主单理货报告</span></div></el-col>
  81 + <el-col :span="3" class="mark"><div class="grid-content bg tallfense" style="border-radius: 5px;margin-right: 5px;background-color: rgba(247,215,148,0.4)"><span>分单理货报告</span></div></el-col>
82 </el-row> 82 </el-row>
83 <!--查询列表--> 83 <!--查询列表-->
84 <el-row> 84 <el-row>
@@ -134,16 +134,16 @@ @@ -134,16 +134,16 @@
134 width="115" 134 width="115"
135 > 135 >
136 <template slot-scope="scope"> 136 <template slot-scope="scope">
137 - <span v-if="scope.row.stype=='MT1201'&&scope.row.awbh==''" style="background-color:#63cdda;width: 100%;height:100%;display:block;color: black"> 137 + <span v-if="scope.row.stype=='MT1201'&&scope.row.awbh==''" style="background-color:rgba(99,205,218,0.4);width: 100%;height:100%;display:block;color: black">
138 {{scope.row.awba}} 138 {{scope.row.awba}}
139 </span> 139 </span>
140 - <span v-else-if="scope.row.stype=='MT1201'&&scope.row.awbh!=''" style="background-color:#778beb;width: 100%;height:100%;display:block;color: black"> 140 + <span v-else-if="scope.row.stype=='MT1201'&&scope.row.awbh!=''" style="background-color:rgba(119,139,235,0.3);width: 100%;height:100%;display:block;color: black">
141 {{scope.row.awba}} 141 {{scope.row.awba}}
142 </span> 142 </span>
143 - <span v-else-if="scope.row.stype=='MT5201'&&scope.row.awbh==''" style="background-color:#f3a683;width: 100%;height:100%;display:block;color: black"> 143 + <span v-else-if="scope.row.stype=='MT5201'&&scope.row.awbh==''" style="background-color:rgba(243,166,131,0.4);width: 100%;height:100%;display:block;color: black">
144 {{scope.row.awba}} 144 {{scope.row.awba}}
145 </span> 145 </span>
146 - <span v-else-if="scope.row.stype=='MT5201'&&scope.row.awbh!=''" style="background-color:#f7d794;width: 100%;height:100%;display:block;color: black"> 146 + <span v-else-if="scope.row.stype=='MT5201'&&scope.row.awbh!=''" style="background-color:rgba(247,215,148,0.4);width: 100%;height:100%;display:block;color: black">
147 {{scope.row.awba}} 147 {{scope.row.awba}}
148 </span> 148 </span>
149 </template> 149 </template>
@@ -209,7 +209,7 @@ @@ -209,7 +209,7 @@
209 @size-change="handleSizeChange" 209 @size-change="handleSizeChange"
210 @current-change="handleCurrentChange" 210 @current-change="handleCurrentChange"
211 :current-page="currentPage" 211 :current-page="currentPage"
212 - :page-sizes="[100, 200, 300, 400]" 212 + :page-sizes="[20, 50, 100, 200]"
213 :page-size="pageSize" 213 :page-size="pageSize"
214 layout="total, sizes, prev, pager, next, jumper" 214 layout="total, sizes, prev, pager, next, jumper"
215 :total="total"> 215 :total="total">
@@ -300,7 +300,7 @@ @@ -300,7 +300,7 @@
300 tableData: [], 300 tableData: [],
301 multipleSelection: [], 301 multipleSelection: [],
302 currentPage:1, 302 currentPage:1,
303 - pageSize:100, 303 + pageSize:20,
304 total:0, 304 total:0,
305 tableloading:false 305 tableloading:false
306 } 306 }