Commit a83ee6e3ef678f4c6c6187c23a088860190933d1
1 parent
9bbc7e50
嘉定公交调度系统计划调度功能优化2
1、计划排班界面,默认非历史优先
Showing
1 changed file
with
2 additions
and
2 deletions
src/main/resources/static/pages/scheduleApp/module/core/schedulePlanManage/module.js
| ... | ... | @@ -299,8 +299,8 @@ angular.module('ScheduleApp').controller( |
| 299 | 299 | self.schedulePlanManageForSave.xl.id = service.getSearchCondition()['xl.id_eq']; |
| 300 | 300 | self.schedulePlanManageForSave.xl.name = service.getSearchCondition()['xl.name_eq']; |
| 301 | 301 | |
| 302 | - // 默认使用历史排班数据 | |
| 303 | - self.schedulePlanManageForSave.isHistoryPlanFirst = true; | |
| 302 | + // 默认不使用历史排班数据 | |
| 303 | + self.schedulePlanManageForSave.isHistoryPlanFirst = false; | |
| 304 | 304 | |
| 305 | 305 | // 提交方法 |
| 306 | 306 | self.submit = function() { | ... | ... |