...
|
...
|
@@ -8,17 +8,17 @@ |
|
|
<el-row style="display: block;background-color: white">
|
|
|
<el-row>
|
|
|
<el-col :span="6">
|
|
|
<el-input placeholder="" v-model="defaultQuery.awba" style="width: 200px">
|
|
|
<el-input placeholder="" v-model="defaultQuery.awba" style="width: 90%" clearable>
|
|
|
<template slot="prepend">主单号</template>
|
|
|
</el-input>
|
|
|
</el-col>
|
|
|
<el-col :span="6">
|
|
|
<el-input placeholder="" v-model="vcarrier" style="width: 200px">
|
|
|
<el-input placeholder="" v-model="vcarrier" style="width: 90%" clearable>
|
|
|
<template slot="prepend">承运人</template>
|
|
|
</el-input>
|
|
|
</el-col>
|
|
|
<el-col :span="6">
|
|
|
<el-input placeholder="" v-model="defaultQuery.flightno" style="width: 200px">
|
|
|
<el-input placeholder="" v-model="defaultQuery.flightno" style="width: 90%" clearable>
|
|
|
<template slot="prepend">航班号</template>
|
|
|
</el-input>
|
|
|
</el-col>
|
...
|
...
|
@@ -29,7 +29,7 @@ |
|
|
<el-date-picker
|
|
|
v-model="defaultQuery.flightdate"
|
|
|
type="date"
|
|
|
value-format="yyyy-MM-dd" style="width: 120px"
|
|
|
value-format="yyyy-MM-dd" style="width: 140px"
|
|
|
placeholder="航班日期">
|
|
|
</el-date-picker>
|
|
|
</el-col>
|
...
|
...
|
@@ -39,7 +39,7 @@ |
|
|
<div class="ip">
|
|
|
业务状态
|
|
|
</div>
|
|
|
<el-select v-model="defaultQuery.status" placeholder="选择状态" style="width: 115px">
|
|
|
<el-select v-model="defaultQuery.status" placeholder="选择状态" style="width: 125px">
|
|
|
<el-option
|
|
|
v-for="item in options"
|
|
|
:key="item.value"
|
...
|
...
|
@@ -52,7 +52,7 @@ |
|
|
<div class="ip">
|
|
|
报文类型
|
|
|
</div>
|
|
|
<el-select v-model="defaultQuery.messageType" placeholder="报文类型" style="width: 115px">
|
|
|
<el-select v-model="defaultQuery.messageType" placeholder="报文类型" style="width: 125px">
|
|
|
<el-option
|
|
|
v-for="item in options2"
|
|
|
:key="item.value"
|
...
|
...
|
@@ -63,7 +63,7 @@ |
|
|
</el-col>
|
|
|
<el-col :span="6">
|
|
|
<el-col :span="8" style="margin-right: 0px">
|
|
|
<el-button type="primary" v-on:click="QueryData">查询</el-button>
|
|
|
<el-button type="primary" v-on:click="QueryData" icon="el-icon-search">查 询</el-button>
|
|
|
</el-col>
|
|
|
<!--<el-col :span="16" style="margin-right: 0px">
|
|
|
<el-button type="primary">批量修改状态</el-button>
|
...
|
...
|
@@ -134,16 +134,16 @@ |
|
|
width="115"
|
|
|
>
|
|
|
<template slot-scope="scope">
|
|
|
<span v-if="scope.row.stype=='MT1201'&&scope.row.awbh==''" style="background-color:#63cdda;width: 100%;height:100%;display:block">
|
|
|
<span v-if="scope.row.stype=='MT1201'&&scope.row.awbh==''" style="background-color:#63cdda;width: 100%;height:100%;display:block;color: black">
|
|
|
{{scope.row.awba}}
|
|
|
</span>
|
|
|
<span v-else-if="scope.row.stype=='MT1201'&&scope.row.awbh!=''" style="background-color:#778beb;width: 100%;height:100%;display:block;">
|
|
|
<span v-else-if="scope.row.stype=='MT1201'&&scope.row.awbh!=''" style="background-color:#778beb;width: 100%;height:100%;display:block;color: black">
|
|
|
{{scope.row.awba}}
|
|
|
</span>
|
|
|
<span v-else-if="scope.row.stype=='MT5201'&&scope.row.awbh==''" style="background-color:#f3a683;width: 100%;height:100%;display:block;">
|
|
|
<span v-else-if="scope.row.stype=='MT5201'&&scope.row.awbh==''" style="background-color:#f3a683;width: 100%;height:100%;display:block;color: black">
|
|
|
{{scope.row.awba}}
|
|
|
</span>
|
|
|
<span v-else-if="scope.row.stype=='MT5201'&&scope.row.awbh!=''" style="background-color:#f7d794;width: 100%;height:100%;display:block;">
|
|
|
<span v-else-if="scope.row.stype=='MT5201'&&scope.row.awbh!=''" style="background-color:#f7d794;width: 100%;height:100%;display:block;color: black">
|
|
|
{{scope.row.awba}}
|
|
|
</span>
|
|
|
</template>
|
...
|
...
|
|