Commit 15ccad54fa1e3623ae28cf30798c6bcbdb54d2c1
1 parent
8fa35cf9
1.隐藏线调班次列表中RFID列
Showing
2 changed files
with
6 additions
and
4 deletions
src/main/resources/static/real_control_v2/css/line_schedule.css
| ... | ... | @@ -97,7 +97,8 @@ |
| 97 | 97 | } |
| 98 | 98 | |
| 99 | 99 | .line-schedule-table dl dt:nth-of-type(3), .line-schedule-table dl dd:nth-of-type(3) { |
| 100 | - width: 30px; | |
| 100 | + /*width: 30px;*/ | |
| 101 | + width: 0px; | |
| 101 | 102 | text-align: center; |
| 102 | 103 | } |
| 103 | 104 | |
| ... | ... | @@ -136,7 +137,8 @@ |
| 136 | 137 | } |
| 137 | 138 | |
| 138 | 139 | .line-schedule-table dl dt:nth-of-type(10), .line-schedule-table dl dd:nth-of-type(10) { |
| 139 | - width: 65px; | |
| 140 | + /*width: 65px;*/ | |
| 141 | + width: 95px; | |
| 140 | 142 | border-right: 0; |
| 141 | 143 | } |
| 142 | 144 | ... | ... |
src/main/resources/static/real_control_v2/fragments/line_schedule/sch_table.html
| ... | ... | @@ -48,7 +48,7 @@ |
| 48 | 48 | <dl> |
| 49 | 49 | <dt>序号</dt> |
| 50 | 50 | <dt>路牌</dt> |
| 51 | - <dt>RFID</dt> | |
| 51 | + <dt style="display: none">RFID</dt> | |
| 52 | 52 | <dt>车辆</dt> |
| 53 | 53 | <dt>应到</dt> |
| 54 | 54 | <dt>实到</dt> |
| ... | ... | @@ -63,7 +63,7 @@ |
| 63 | 63 | <dl data-id="{{sch.id}}"> |
| 64 | 64 | <dd class="seq_no">{{i + 1}}</dd> |
| 65 | 65 | <dd class="lpName"><a>{{sch.lpName}}</a></dd> |
| 66 | - <dd class="{{if !sch.qdzArrDatesj}}tl-white{{else if (sch.firstRfidState & 2) == 2 && (sch.firstRfidState & 4) == 4}}tl-green{{else if (sch.firstRfidState & 2) == 2}}tl-yellow{{else}}tl-grey{{/if}}{{if !sch.qdzArrDatesj}}-white{{else if (sch.rfidState & 2) == 2 && (sch.rfidState & 4) == 4}}-green{{else if (sch.rfidState & 2) == 2}}-yellow{{else}}-grey{{/if}}"></dd> | |
| 66 | + <dd style="display: none" class="{{if !sch.qdzArrDatesj}}tl-white{{else if (sch.firstRfidState & 2) == 2 && (sch.firstRfidState & 4) == 4}}tl-green{{else if (sch.firstRfidState & 2) == 2}}tl-yellow{{else}}tl-grey{{/if}}{{if !sch.qdzArrDatesj}}-white{{else if (sch.rfidState & 2) == 2 && (sch.rfidState & 4) == 4}}-green{{else if (sch.rfidState & 2) == 2}}-yellow{{else}}-grey{{/if}}"></dd> | |
| 67 | 67 | <dd data-nbbm="{{sch.clZbh}}" |
| 68 | 68 | class="{{if sch.directiveState == 60}}tl-xxfc{{else if sch.directiveState == 100}}tl-xxsd{{else if sch.directiveState == 200}}tl-xxrd{{/if}}"> |
| 69 | 69 | {{sch.clZbh}} | ... | ... |