...
|
...
|
@@ -309,8 +309,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{
|
...
|
...
|
@@ -344,9 +345,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,
|
...
|
...
|
@@ -431,9 +432,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
|
...
|
...
|
@@ -481,7 +482,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;
|
|
|
}
|
...
|
...
|
|