|
|
<template>
|
|
|
<div class="bg">
|
|
|
<el-container>
|
|
|
<!-- 顶栏区域-->
|
|
|
<el-header style="height: 120px">
|
|
|
<el-row class="header">
|
|
|
<el-col :span="9">
|
|
|
<span style="font-size: 50px">KT际通</span>
|
|
|
<span>在线订舱平台</span>
|
|
|
</el-col>
|
|
|
<el-col :span="13" style="margin-left: 30px;margin-top: 30px;width: 300px ">
|
|
|
<el-menu :default-active="activeIndex"
|
|
|
class="el-menu-demo"
|
|
|
mode="horizontal"
|
|
|
@select="handleSelect"
|
|
|
style="text-color:#303133;active-text-color:#FFF">
|
|
|
<el-menu-item index="1">首 页</el-menu-item>
|
|
|
<el-menu-item index="2">行业方案</el-menu-item>
|
|
|
<el-menu-item index="3">关于我们</el-menu-item>
|
|
|
</el-menu>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
</el-header>
|
|
|
<!-- 主要区域-->
|
|
|
<el-main>
|
|
|
<!-- 空运查询内容-->
|
|
|
<el-row style="margin-top: 30px">
|
|
|
<el-col :span="10" style="margin-right: 10px;background-color: #FFF;">
|
|
|
<div style="height: 600px;">
|
|
|
<div style="width: 100%;height: 80px;border-bottom: solid 2px #29A1F7;">
|
|
|
<el-col :span="15" style="margin-left: 0px;margin-top: 20px;">
|
|
|
<span style="font-size: 25px;margin-left: 50px">空运查询</span>
|
|
|
</el-col>
|
|
|
<el-col :span="8" style="margin-top: 23px;">
|
|
|
<span style="font-size: 17px">约计3000条航线数据</span>
|
|
|
</el-col>
|
|
|
</div>
|
|
|
<el-row>
|
|
|
<el-form ref="form" :model="form" label-width="80px" style="font-size: 50px;" >
|
|
|
<el-form-item label="航程方向" >
|
|
|
<el-radio-group v-model="form.resource">
|
|
|
<el-radio style="padding-left: 20px" label="出口"></el-radio>
|
|
|
<el-radio label="进口"></el-radio>
|
|
|
</el-radio-group>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="起运地">
|
|
|
<el-select style="width: 320px" v-model="form.region" placeholder="起运地">
|
|
|
<el-option label="上海" value="shanghai"></el-option>
|
|
|
<el-option label="北京" value="beijing"></el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="目的地">
|
|
|
<el-select style="width: 320px" v-model="form.region" placeholder="目的地">
|
|
|
<el-option label="上海" value="shanghai"></el-option>
|
|
|
<el-option label="北京" value="beijing"></el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="货物重量">
|
|
|
<el-input style="width: 320px" v-model="form.name" placeholder="单位:KG"></el-input>
|
|
|
</el-form-item>
|
|
|
<div style="padding-left: 150px">
|
|
|
<el-button style="background-color: #F18F4C;color: #FFF">查价下单</el-button>
|
|
|
</div>
|
|
|
|
|
|
</el-form>
|
|
|
<div style="width: 100%;height: 200px;margin-top: 30px;padding-left: 50px;border-top: dashed 2px #D5D5D5;">
|
|
|
<p>
|
|
|
<span><i class="el-icon-phone" style="color: #29A1F7;padding-right: 5px"></i>一键订舱,方便快捷</span>
|
|
|
</p>
|
|
|
<p>
|
|
|
<span><i class="el-icon-edit-outline" style="color: #29A1F7;padding-right: 5px"></i>数据准确,专有团队维护</span>
|
|
|
</p>
|
|
|
<span><i class="el-icon-location-information" style="color: #29A1F7;padding-right: 5px"></i>货物在线跟踪</span>
|
|
|
</div>
|
|
|
</el-row>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
<!-- 广告位-->
|
|
|
<el-col :span="13" style="margin-right: 0px;background-color: rgba(41,161,247,0.1);float: right;">
|
|
|
<div style="height: 600px;">
|
|
|
</div>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
<!-- 优价航线标题栏-->
|
|
|
<el-row style="margin-top: 30px">
|
|
|
<span style="font-size: 25px">优价航线</span>
|
|
|
</el-row>
|
|
|
<!-- 优价航线内容-->
|
|
|
<el-row style="background-color: #FFF;height: 300px;">
|
|
|
<el-table
|
|
|
:data="tableData"
|
|
|
style="width: 100%">
|
|
|
<el-table-column
|
|
|
prop="a"
|
|
|
label="航行路线">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="b"
|
|
|
label="运输时效">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="c"
|
|
|
label="交货地">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="d"
|
|
|
label="航班周期">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="e"
|
|
|
label="最低价格">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
fixed="right"
|
|
|
label=""
|
|
|
width="120">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button
|
|
|
size="small" plain
|
|
|
type="warning"
|
|
|
@click="">订舱</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
</el-row>
|
|
|
<!-- 热门航线标题栏-->
|
|
|
<el-row style="margin-top: 30px">
|
|
|
<span style="font-size: 25px">热门航线</span>
|
|
|
</el-row>
|
|
|
<!-- 热门航线内容-->
|
|
|
<el-row style="background-color: #FFF;height: 680px;">
|
|
|
<el-col :span="24">
|
|
|
<el-tabs type="border-card" style="width: 100%;height: 680px" stretch="true">
|
|
|
<el-tab-pane>
|
|
|
<span slot="label"><i class="el-icon-right"></i>出口航线</span>
|
|
|
<el-row style="height: 300px;margin-top: 0px">
|
|
|
<el-col :span="8"
|
|
|
style="border-right:solid 1px #F5F5F5;border-bottom:solid 1px #F5F5F5;height: 300px;width: 32%;margin-right: 15px">
|
|
|
<h2>CZ</h2>
|
|
|
<el-table
|
|
|
:data="tableData1"
|
|
|
:header-cell-style="headClass"
|
|
|
:cell-style="rowClass"
|
|
|
style="width: 100%;background-color: #F5F5F5">
|
|
|
<el-table-column
|
|
|
prop="a"
|
|
|
label="航段">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="b"
|
|
|
label="时效">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="c"
|
|
|
label="周期">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="d"
|
|
|
label="航运价">
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
<div style="text-align: center;margin-top: 6px">交货地:GUANGZHOU AIRPORT 广州</div>
|
|
|
<div style="text-align: center;margin-top: 6px">
|
|
|
<el-button type="warning" plain style="width: 120px" >订舱</el-button>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
<el-col :span="8"
|
|
|
style="border-right:solid 1px #F5F5F5;border-bottom:solid 1px #F5F5F5;height: 300px;width: 32%;margin-right: 15px">
|
|
|
<h2>CZ</h2>
|
|
|
<el-table
|
|
|
:data="tableData1"
|
|
|
:header-cell-style="headClass"
|
|
|
:cell-style="rowClass"
|
|
|
style="width: 100%;background-color: #F5F5F5">
|
|
|
<el-table-column
|
|
|
prop="a"
|
|
|
label="航段">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="b"
|
|
|
label="时效">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="c"
|
|
|
label="周期">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="d"
|
|
|
label="航运价">
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
<div style="text-align: center;margin-top: 6px">交货地:GUANGZHOU AIRPORT 广州</div>
|
|
|
<div style="text-align: center;margin-top: 6px">
|
|
|
<el-button type="warning" plain style="width: 120px" >订舱</el-button>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
<el-col :span="8"
|
|
|
style="border-bottom:solid 1px #F5F5F5;height: 300px;width: 32%">
|
|
|
<h2>CZ</h2>
|
|
|
<el-table
|
|
|
:data="tableData1"
|
|
|
:header-cell-style="headClass"
|
|
|
:cell-style="rowClass"
|
|
|
style="width: 100%;background-color: #F5F5F5">
|
|
|
<el-table-column
|
|
|
prop="a"
|
|
|
label="航段">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="b"
|
|
|
label="时效">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="c"
|
|
|
label="周期">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="d"
|
|
|
label="航运价">
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
<div style="text-align: center;margin-top: 6px">交货地:GUANGZHOU AIRPORT 广州</div>
|
|
|
<div style="text-align: center;margin-top: 6px">
|
|
|
<el-button type="warning" plain style="width: 120px" >订舱</el-button>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
<el-row style="height: 300px;margin-top: 0px">
|
|
|
<el-col :span="8"
|
|
|
style="border-right:solid 1px #F5F5F5;height: 300px;width: 32%;margin-right: 15px">
|
|
|
<h2>CZ</h2>
|
|
|
<el-table
|
|
|
:data="tableData1"
|
|
|
:header-cell-style="headClass"
|
|
|
:cell-style="rowClass"
|
|
|
style="width: 100%;background-color: #F5F5F5">
|
|
|
<el-table-column
|
|
|
prop="a"
|
|
|
label="航段">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="b"
|
|
|
label="时效">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="c"
|
|
|
label="周期">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="d"
|
|
|
label="航运价">
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
<div style="text-align: center;margin-top: 6px">交货地:GUANGZHOU AIRPORT 广州</div>
|
|
|
<div style="text-align: center;margin-top: 6px">
|
|
|
<el-button type="warning" plain style="width: 120px" >订舱</el-button>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
<el-col :span="8"
|
|
|
style="border-right:solid 1px #F5F5F5;height: 300px;width: 32%;margin-right: 15px">
|
|
|
<h2>CZ</h2>
|
|
|
<el-table
|
|
|
:data="tableData1"
|
|
|
:header-cell-style="headClass"
|
|
|
:cell-style="rowClass"
|
|
|
style="width: 100%;background-color: #F5F5F5">
|
|
|
<el-table-column
|
|
|
prop="a"
|
|
|
label="航段">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="b"
|
|
|
label="时效">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="c"
|
|
|
label="周期">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="d"
|
|
|
label="航运价">
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
<div style="text-align: center;margin-top: 6px">交货地:GUANGZHOU AIRPORT 广州</div>
|
|
|
<div style="text-align: center;margin-top: 6px">
|
|
|
<el-button type="warning" plain style="width: 120px" >订舱</el-button>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
<el-col :span="8"
|
|
|
style="height: 300px;width: 32%">
|
|
|
<h2>CZ</h2>
|
|
|
<el-table
|
|
|
:data="tableData1"
|
|
|
:header-cell-style="headClass"
|
|
|
:cell-style="rowClass"
|
|
|
style="width: 100%;background-color: #F5F5F5">
|
|
|
<el-table-column
|
|
|
prop="a"
|
|
|
label="航段">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="b"
|
|
|
label="时效">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="c"
|
|
|
label="周期">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="d"
|
|
|
label="航运价">
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
<div style="text-align: center;margin-top: 6px">交货地:GUANGZHOU AIRPORT 广州</div>
|
|
|
<div style="text-align: center;margin-top: 6px">
|
|
|
<el-button type="warning" plain style="width: 120px" >订舱</el-button>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
</el-tab-pane>
|
|
|
<el-tab-pane label="进口航线">
|
|
|
<span slot="label"><i class="el-icon-back"></i>进口航线</span>
|
|
|
</el-tab-pane>
|
|
|
<el-tab-pane label="空运专线">
|
|
|
<span slot="label"><i class="el-icon-star-off"></i>空运专线</span>
|
|
|
</el-tab-pane>
|
|
|
</el-tabs>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
<!-- 热门港口标题栏-->
|
|
|
<el-row style="margin-top: 30px">
|
|
|
<span style="font-size: 25px">热门港口</span>
|
|
|
</el-row>
|
|
|
<!-- 热门港口内容-->
|
|
|
<el-row style="background-color: #FFF;height: 300px;padding: 25px">
|
|
|
<el-col :span="24">
|
|
|
<el-tabs :tab-position="tabPosition" style="width: 100%;height: 280px;">
|
|
|
<el-tab-pane label="北京">
|
|
|
<el-table
|
|
|
:data="tableData"
|
|
|
style="width: 100%">
|
|
|
<el-table-column
|
|
|
prop="a"
|
|
|
label="航行路线">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="b"
|
|
|
label="运输时效">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="c"
|
|
|
label="交货地">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="d"
|
|
|
label="航班周期">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
fixed="right"
|
|
|
label=""
|
|
|
width="120">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button
|
|
|
size="small" plain
|
|
|
type="warning"
|
|
|
@click="">订舱</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
</el-tab-pane>
|
|
|
<el-tab-pane label="上海">上海</el-tab-pane>
|
|
|
<el-tab-pane label="深圳">深圳</el-tab-pane>
|
|
|
<el-tab-pane label="广州">广州</el-tab-pane>
|
|
|
<el-tab-pane label="宁波">宁波</el-tab-pane>
|
|
|
</el-tabs>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
<!-- 查询工具-->
|
|
|
<el-row style="background-color: #FFF;height: 180px;margin-top: 60px">
|
|
|
<el-col :span="24">
|
|
|
<el-tabs :tab-position="tabPositions" style="width: 80%;height: 280px;margin: 20px">
|
|
|
<el-tab-pane label="机场代码查询">
|
|
|
<span style="font-size: 25px">机场代码查询</span>
|
|
|
<span style="font-size: 15px">(收录2016年IATA最新机场三字代码、城市三字代码。)</span>
|
|
|
<el-input v-model="input" placeholder="请输入内容"></el-input>
|
|
|
</el-tab-pane>
|
|
|
<el-tab-pane label="商品编码查询">
|
|
|
<span style="font-size: 25px">商品编码查询</span>
|
|
|
<span style="font-size: 15px">(提供海关HScode编码、对应税率、申报要素查询服务,根据海关最新政策实时更新。)</span>
|
|
|
<el-input v-model="input" placeholder="请输入内容"></el-input>
|
|
|
</el-tab-pane>
|
|
|
<el-tab-pane label="全球港口查询">
|
|
|
<span style="font-size: 25px">全球港口查询</span>
|
|
|
<span style="font-size: 15px">(收录2016年IATA最新机场三字代码、城市三字代码。)</span>
|
|
|
<el-input v-model="input" placeholder="请输入内容"></el-input>
|
|
|
</el-tab-pane>
|
|
|
<el-tab-pane label="空运货物查询">
|
|
|
<span style="font-size: 25px">空运货物查询</span>
|
|
|
<span style="font-size: 15px">(提供世界各国航空公司货物追踪、货物查询服务,实时追踪最新货况。)</span>
|
|
|
<el-input v-model="input" placeholder="请输入内容"></el-input>
|
|
|
</el-tab-pane>
|
|
|
<el-tab-pane label="快件跟踪查询">
|
|
|
<span style="font-size: 25px">快件跟踪查询</span>
|
|
|
<span style="font-size: 15px"></span>
|
|
|
<el-input v-model="input" placeholder="请输入内容"></el-input>
|
|
|
</el-tab-pane>
|
|
|
</el-tabs>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
</el-main>
|
|
|
</el-container>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
export default {
|
|
|
data() {
|
|
|
return {
|
|
|
form: {},
|
|
|
tableData:[
|
|
|
{
|
|
|
a: 'PEK- FRA',
|
|
|
b: '2-3 天',
|
|
|
c: 'BEIJING AIRPORT',
|
|
|
d: '1234567',
|
|
|
e: '¥ 23.50/kg 起',
|
|
|
},
|
|
|
{
|
|
|
a: 'PEK- FRA',
|
|
|
b: '2-3 天',
|
|
|
c: 'BEIJING AIRPORT',
|
|
|
d: '1234567',
|
|
|
e: '¥ 23.50/kg 起',
|
|
|
},
|
|
|
{
|
|
|
a: 'PEK- FRA',
|
|
|
b: '2-3 天',
|
|
|
c: 'BEIJING AIRPORT',
|
|
|
d: '1234567',
|
|
|
e: '¥ 23.50/kg 起',
|
|
|
},
|
|
|
],
|
|
|
tableData1:[
|
|
|
{
|
|
|
a: 'PEK- FRA',
|
|
|
b: '2-3 天',
|
|
|
c: '1234567',
|
|
|
d: '$34.00/kg起',
|
|
|
},
|
|
|
],
|
|
|
tabPosition: 'left',
|
|
|
tabPositions: 'bottom',
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
|
headClass () {
|
|
|
return 'text-align: center;background:#F5F5F5;'
|
|
|
},
|
|
|
rowClass () {
|
|
|
return 'text-align: center;background:#F5F5F5;'
|
|
|
}
|
|
|
},
|
|
|
}
|
|
|
</script>
|
|
|
|
|
|
<style scoped>
|
|
|
.bg{
|
|
|
background-color: #F2F2F2;
|
|
|
}
|
|
|
.header{
|
|
|
font-size: 20px;
|
|
|
line-height: 120px;
|
|
|
color:#FFF;
|
|
|
}
|
|
|
.el-header{
|
|
|
background-color: #29A1F7;
|
|
|
}
|
|
|
.el-tabs{
|
|
|
width: 250px;
|
|
|
}
|
|
|
.el-menu{
|
|
|
background-color: #29A1F7;
|
|
|
font-size: 20px;
|
|
|
border-bottom-color: #29A1F7;
|
|
|
}
|
|
|
</style> |
|
|
\ No newline at end of file |
...
|
...
|
|