Commit 62404617a57c3ba72aed0a204a11119445d2cd07

Authored by 徐烜
1 parent b6f4aca1

暂时禁用时刻表批量修改功能,目前发现有以下bug,之后再修正

1、批量修改班次时,如果输入框填了值然后删除再保存,则后台就保存成null
2、之后会修改整个批量修改前端和后端逻辑
src/main/resources/static/pages/scheduleApp/module/core/ttInfoManage/detailedit/edit3.html
... ... @@ -98,11 +98,21 @@
98 98 <i class="fa fa-file-excel-o"></i>
99 99 批量选择
100 100 </a>
101   - <a href="javascript:" style="padding-right: 5px;"
  101 +
  102 + <style type="text/css">
  103 + .not-active {
  104 + pointer-events: none;
  105 + cursor: default;
  106 + text-decoration: none;
  107 + color: black;
  108 + }
  109 + </style>
  110 +
  111 + <a href="javascript:" class="not-active" style="padding-right: 5px;"
102 112 ng-click="ctrl.editInfos()"
103 113 ng-show="ctrl.currentView.btn2">
104 114 <i class="fa fa-pencil-square-o"></i>
105   - 批量修改
  115 + <del>批量修改</del>
106 116 </a>
107 117  
108 118 <a sweetalert
... ...