|
|
<template>
|
|
|
<el-container>
|
|
|
<div style="height: 850px;overflow: scroll;margin-left: 25px;background-color: rgb(255,255,255)">
|
|
|
<el-main>
|
|
|
<el-row class="row-bg">
|
|
|
<el-col :span="24">
|
...
|
...
|
@@ -7,21 +7,21 @@ |
|
|
</el-col>
|
|
|
</el-row>
|
|
|
<!-- 搜索区域-->
|
|
|
<el-row>
|
|
|
<el-row style="padding-top: 10px">
|
|
|
<el-form :label-position="labelPosition" :model="queryConfigure" :rules="rules" ref="queryFlight"
|
|
|
label-width="130px" class="demo-ruleForm">
|
|
|
<el-row>
|
|
|
<el-col :span="4" >
|
|
|
<el-col :span="5" style="margin-right: 70px">
|
|
|
<el-form-item label="承运人" prop="carrier" label-width="70px">
|
|
|
<el-input v-model="queryConfigure.carrier" style="width:120px"></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="4" >
|
|
|
<el-col :span="5" style="margin-right: 70px">
|
|
|
<el-form-item label="航班号" prop="flightno" label-width="70px">
|
|
|
<el-input v-model="queryConfigure.flightno" style="width:120px"></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="5" >
|
|
|
<el-col :span="8" >
|
|
|
<el-button type="primary" icon="el-icon-search" @click="submitForm()">查询</el-button>
|
|
|
<el-button type="success" icon="el-icon-edit" @click="addForm()">新增</el-button>
|
|
|
|
...
|
...
|
@@ -35,7 +35,7 @@ |
|
|
<el-table
|
|
|
:data="tableData"
|
|
|
border
|
|
|
v-loading="tableloading">
|
|
|
v-loading="tableloading" style="margin-bottom: 20px;margin-top: 20px">
|
|
|
<el-table-column
|
|
|
prop="carrier"
|
|
|
label="承运人">
|
...
|
...
|
@@ -231,7 +231,7 @@ |
|
|
</el-col>
|
|
|
<el-col :span="6">
|
|
|
<el-form-item label="配置状态" prop="configstatus" label-width="130px">
|
|
|
<!-- <el-input v-model="configure_editForm.configstatus"></el-input>-->
|
|
|
<!-- <el-input v-model="configure_editForm.configstatus"></el-input>-->
|
|
|
<el-select v-model="configure_editForm.configstatus" placeholder="请选择" size="mini">
|
|
|
<el-option label="0-禁用" value="0"></el-option>
|
|
|
<el-option label="1-生效" value="1"></el-option>
|
...
|
...
|
@@ -240,7 +240,7 @@ |
|
|
</el-col>
|
|
|
<el-col :span="6">
|
|
|
<el-form-item label="配置类型" prop="type" label-width="130px">
|
|
|
<!-- <el-input v-model="configure_editForm.type"></el-input>-->
|
|
|
<!-- <el-input v-model="configure_editForm.type"></el-input>-->
|
|
|
<el-select v-model="configure_editForm.type" placeholder="请选择" size="mini">
|
|
|
<el-option label="2-入境" value="2"></el-option>
|
|
|
<el-option label="1-出境" value="1"></el-option>
|
...
|
...
|
@@ -331,7 +331,8 @@ |
|
|
</el-dialog>
|
|
|
</el-row>
|
|
|
</el-main>
|
|
|
</el-container>
|
|
|
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
|
...
|
...
|
@@ -414,7 +415,7 @@ |
|
|
},
|
|
|
rules: {
|
|
|
carrier: [
|
|
|
{ required: true, message: '请输入', trigger: 'blur' },
|
|
|
{ required: true, message: '', trigger: 'blur' },
|
|
|
// { min: 3, max: 5, message: '长度在 3 到 5 个字符', trigger: 'blur' }
|
|
|
],
|
|
|
flightno: [
|
...
|
...
|
|