切换导航条
此项目
正在载入...
登录
朱兆平
/
vue_cli
·
提交
转到一个项目
GitLab
转到仪表盘
项目
活动
文件
提交
管道
0
构建
0
图表
里程碑
问题
0
合并请求
0
成员
标记
维基
派生
网络
创建新的问题
下载为
邮件补丁
差异文件
浏览文件
作者
xudada
5 years ago
提交
828c2512a2ef97c3ff2406689c6c3c4e61bfc8d9
1 个父辈
91bc3ea7
当日飞行计划
隐藏空白字符变更
内嵌
并排对比
正在显示
2 个修改的文件
包含
5 行增加
和
9 行删除
src/views/airtransport/flightplan.vue
src/views/airtransport/queryFlightplan.vue
src/views/airtransport/flightplan.vue
查看文件 @
828c251
...
...
@@ -208,7 +208,7 @@
if(response.code=='200'){
this.centerDialogVisible=true;
this.msg=response.msg;
this.$router.push({path:'/queryFlightplan',query:{flightNo:
JSON.stringify(this.flight.flightNo)
}});
this.$router.push({path:'/queryFlightplan',query:{flightNo:
this.flight.flightNo,flightDate:this.flight.flightDate,aircraftNo:this.flight.aircraftNo
}});
}else{
this.msg=response.msg;
}
...
...
@@ -223,8 +223,8 @@
defaultData(){
if(this.$route.query.uuid!=null){
let ob=Object.assign(this.flight, this.$route.query);
this.flight.currentLandingTime=fecha.parse(ob.currentLandingTime,'yyyyMMddHHmm');
this.flight.currentTakeoffTime=fecha.parse(ob.currentTakeoffTime,'yyyyMMddHHmm');
/*this.flight.currentLandingTime=fecha.parse(ob.currentLandingTime,'yyyyMMddHHmm');
this.flight.currentTakeoffTime=fecha.parse(ob.currentTakeoffTime,'yyyyMMddHHmm');*/
}
},
},
...
...
src/views/airtransport/queryFlightplan.vue
查看文件 @
828c251
...
...
@@ -27,6 +27,7 @@
v-model="queryFlightplan.flightDate"
type="date"
format="yyyyMMdd"
value-format="yyyyMMdd"
style="width:190px"
placeholder="选择日期">
</el-date-picker>
...
...
@@ -227,12 +228,7 @@
},
//获取默认值
defaultData() {
if(this.$route.query.flightNo!=null){
this.queryFlightplan.flightNo = JSON.parse(this.$route.query.flightNo);
this.queryFlightplan.flightDate = JSON.parse(this.$route.query.flightDate);
this.queryFlightplan.aircraftNo = JSON.parse(this.$route.query.aircraftNo);
}
Object.assign(this.queryFlightplan, this.$route.query);
},
//编辑当日飞行计划
handleEdit(index,row){
...
...
请
注册
或
登录
后发表评论