...
|
...
|
@@ -303,8 +303,9 @@ background-color: white; |
|
|
.el-col{margin-right: 0px;}
|
|
|
</style>
|
|
|
<script>
|
|
|
|
|
|
import {addBill} from '../../api/transport'
|
|
|
const fecha = require('fecha');
|
|
|
import loginUserInfo from '../../api/base'
|
|
|
export default {
|
|
|
data(){
|
|
|
return{
|
...
|
...
|
@@ -338,9 +339,9 @@ background-color: white; |
|
|
statusMsg:undefined,
|
|
|
meno:undefined,
|
|
|
createTime:undefined,
|
|
|
createBy:undefined,
|
|
|
createBy:loginUserInfo.username,
|
|
|
updateTime:undefined,
|
|
|
updateBy:undefined,
|
|
|
updateBy:loginUserInfo.username,
|
|
|
isDelete:undefined,
|
|
|
remark:undefined,
|
|
|
remark1:undefined,
|
...
|
...
|
@@ -425,9 +426,9 @@ background-color: white; |
|
|
certType:undefined,
|
|
|
ceterNo:undefined,
|
|
|
createTime:undefined,
|
|
|
createBy:undefined,
|
|
|
createBy:loginUserInfo.username,
|
|
|
updateTime:undefined,
|
|
|
updateBy:undefined,
|
|
|
updateBy:loginUserInfo.username,
|
|
|
meno:undefined,
|
|
|
isDelete:undefined,
|
|
|
billsId:undefined
|
...
|
...
|
@@ -471,7 +472,8 @@ background-color: white; |
|
|
if(response.code=='200'){
|
|
|
this.centerDialogVisible=true;
|
|
|
this.msg=response.msg;
|
|
|
this.$router.push({path:'/queryBill',query:{serialNo:JSON.stringify(this.bill.serialNo)}});
|
|
|
this.$router.push({path:'/queryBill',query:{aircraftNo:JSON.stringify(this.bill.aircraftNo),flightNo:JSON.stringify(this.bill.flightNo),
|
|
|
flightDate:JSON.stringify(this.bill.flightDate)}});
|
|
|
}else{
|
|
|
this.msg=response.msg;
|
|
|
}
|
...
|
...
|
|