Commit 44e03ed0d675a08ad1bc5ad8157edaa4aea9c19f

Authored by 徐烜
1 parent b14500e4

1、车辆设备信息管理界面添加显示状态列(isCancel_eq)用于区分报废车的设备信息

src/main/resources/static/pages/scheduleApp/module/basicInfo/deviceInfoManage/list.html
@@ -5,7 +5,7 @@ @@ -5,7 +5,7 @@
5 border-color: #32c5d2; 5 border-color: #32c5d2;
6 } 6 }
7 .btn-group > .dropdown-menu:before { 7 .btn-group > .dropdown-menu:before {
8 - border-bottom-color: #32c5d2; 8 + border-bottom-color: #32c5d2;
9 } 9 }
10 </style> 10 </style>
11 11
@@ -21,6 +21,7 @@ @@ -21,6 +21,7 @@
21 <th>旧设备编号</th> 21 <th>旧设备编号</th>
22 <th>新设备编号</th> 22 <th>新设备编号</th>
23 <th style="width: 180px;">操作人/操作时间</th> 23 <th style="width: 180px;">操作人/操作时间</th>
  24 + <th style="width: 80px;" >状态</th>
24 <th style="width: 150pt;">操作</th> 25 <th style="width: 150pt;">操作</th>
25 </tr> 26 </tr>
26 <tr role="row" class="filter"> 27 <tr role="row" class="filter">
@@ -47,6 +48,11 @@ @@ -47,6 +48,11 @@
47 <td></td> 48 <td></td>
48 <td></td> 49 <td></td>
49 <td> 50 <td>
  51 + <label class="checkbox-inline input">
  52 + <input type="checkbox" ng-model="ctrl.searchCondition()['isCancel_eq']" />报废车
  53 + </label>
  54 + </td>
  55 + <td>
50 <div class="btn-group"> 56 <div class="btn-group">
51 <button class="btn btn-sm green btn-outline filter-submit margin-bottom" style="margin-right: 0;" 57 <button class="btn btn-sm green btn-outline filter-submit margin-bottom" style="margin-right: 0;"
52 ng-click="ctrl.doPage()"> 58 ng-click="ctrl.doPage()">
@@ -113,6 +119,9 @@ @@ -113,6 +119,9 @@
113 119
114 </td> 120 </td>
115 <td> 121 <td>
  122 + <span ng-bind="info.isCancel | dict:'truefalseType':'未知' "></span>
  123 + </td>
  124 + <td>
116 <!--<a href="details.html?lineId={{obj.id}}" class="btn default blue-stripe btn-sm"> 详细 </a>--> 125 <!--<a href="details.html?lineId={{obj.id}}" class="btn default blue-stripe btn-sm"> 详细 </a>-->
117 <!--<a href="edit.html?lineId={{obj.id}}" class="btn default blue-stripe btn-sm"> 修改 </a>--> 126 <!--<a href="edit.html?lineId={{obj.id}}" class="btn default blue-stripe btn-sm"> 修改 </a>-->
118 <a ui-sref="deviceInfoManage_detail({id: info.id})" class="btn btn-info btn-sm"> 详细 </a> 127 <a ui-sref="deviceInfoManage_detail({id: info.id})" class="btn btn-info btn-sm"> 详细 </a>