...
|
...
|
@@ -21,6 +21,16 @@ |
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<!-- <el-col :span="8">-->
|
|
|
<!-- <el-form-item label="国籍" prop="country" label-width="120px">-->
|
|
|
<!-- <Nationality v-on:tellFarther="fromCountry"></Nationality>-->
|
|
|
<!-- </el-form-item>-->
|
|
|
<!-- </el-col>-->
|
|
|
<!-- <el-col :span="8">-->
|
|
|
<!-- <el-form-item label="证件" prop="certType" label-width="120px">-->
|
|
|
<!-- <Document v-on:tellFa="fromDocument"></Document>-->
|
|
|
<!-- </el-form-item>-->
|
|
|
<!-- </el-col>-->
|
|
|
<el-col :span="24">
|
|
|
<el-form-item label="备注" prop="reamrk" label-width="120px">
|
|
|
<el-input v-model="configure.reamrk"></el-input>
|
...
|
...
|
@@ -69,18 +79,25 @@ |
|
|
</style>
|
|
|
<script>
|
|
|
import { addSchedule} from "../../api/transport";
|
|
|
import loginUserInfo from '../../api/base'
|
|
|
|
|
|
import loginUserInfo from '../../api/base';
|
|
|
import Nationality from './Nationality'
|
|
|
import Document from './Document'
|
|
|
|
|
|
export default {
|
|
|
components: { Nationality, Document },
|
|
|
|
|
|
data(){
|
|
|
return{
|
|
|
//国籍数据
|
|
|
// countryOptions:[],
|
|
|
configure:{
|
|
|
username:loginUserInfo.username,
|
|
|
flightNo:undefined,
|
|
|
ietype:undefined,
|
|
|
ietype:'0',
|
|
|
reamrk:undefined,
|
|
|
accessFlag:'1',
|
|
|
// accessFlag:'1',
|
|
|
country:'',
|
|
|
certType:'',
|
|
|
createBy:loginUserInfo.username,
|
|
|
updateBy:loginUserInfo.username,
|
|
|
},
|
...
|
...
|
@@ -104,6 +121,16 @@ |
|
|
}
|
|
|
},
|
|
|
methods:{
|
|
|
//从子组件获取国籍数据
|
|
|
fromCountry:function(val){
|
|
|
console.log("来自子组件的值:"+val)
|
|
|
this.configure.country = val;
|
|
|
},
|
|
|
//从子组件获取证件数据
|
|
|
fromDocument:function(val){
|
|
|
console.log("来自子组件的值:"+val)
|
|
|
this.configure.certType = val;
|
|
|
},
|
|
|
//新增进港确报申报(保存按钮)
|
|
|
submitForm(formName) {
|
|
|
let _this = this;
|
...
|
...
|
|