123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- <style type="text/css">
- .new_table {
- border-collapse: collapse;
- margin: 0 auto;
- text-align: center;
- width: 100%;
- font-size: 12px;
- }
- .new_table td,
- table th {
- border: 1px solid #cad9ea;
- color: #666;
- height: 2.5em;
- }
- .new_table thead th {
- background-color: #CCE8EB;
- width: 100px;
- }
- .span_show {
- float: left;
- margin-left: 15px;
- font-size: 11px;
- color: #0a84ff;
- cursor: pointer;
- }
- .span_hide {
- float: left;
- margin-left: 15px;
- font-size: 11px;
- color: #0a84ff;
- cursor: pointer;
- }
- .task_list input{border: 0px}
- </style>
- <form id="edit-form" class="form-horizontal" role="form" data-toggle="validator" method="POST" action="">
- <div class="form-group">
- <label class="control-label col-xs-12 col-sm-2">{:__('Seat_id')}:</label>
- <div class="col-xs-12 col-sm-8">
- <input class="form-control" type="text" value="{$row.seat_id|htmlentities}" readonly>
- </div>
- </div>
- <div class="form-group">
- <label class="control-label col-xs-12 col-sm-2">{:__('姓名')}:</label>
- <div class="col-xs-12 col-sm-8">
- <input class="form-control"type="text" value="{$row.user_nickname|htmlentities}" readonly>
- </div>
- </div>
- <div class="form-group">
- <label class="control-label col-xs-12 col-sm-2">{:__('学号')}:</label>
- <div class="col-xs-12 col-sm-8">
- <input class="form-control" type="text" value="{$row.user_username|htmlentities}" readonly>
- </div>
- </div>
- <div class="col-lg-12" style="margin: 20px 10px 0 10px">
- <div class="tab-content">
- <div class="tab-pane tab_log1" style="display: block">
- <table class="new_table">
- <thead>
- <tr style="height: 3.5rem">
- <td >评分标准</td>
- <td >扣分</td>
- </tr>
- </thead>
- <tbody class="task_list">
- <tr>
- <td colspan="2">一.排除故障(75分)</td>
- </tr>
- <tr>
- <td>故障一未排除扣25分</td><td><input type="text" name="row[fault_one_score]" value="{$row.fault_one_score|htmlentities}"></td>
- </tr>
- <tr>
- <td>故障二未排除扣25分</td><td><input type="text" name="row[fault_two_score]" value="{$row.fault_two_score|htmlentities}"></td>
- </tr>
- <tr>
- <td>故障三未排除扣25分</td><td><input type="text" name="row[fault_three_score]" value="{$row.fault_three_score|htmlentities}"></td>
- </tr>
- <tr>
- <td colspan="2">二.维修报告表(15分)</td>
- </tr>
- <tr>
- <td>故障现象少写或错写1条扣1分</td><td><input type="text" name="row[xianxian_score]" value="{$row.xianxian_score|htmlentities}"></td>
- </tr>
- <tr>
- <td>可能原因少写或错写1条扣1分</td><td><input type="text" name="row[yuanyin_score]" value="{$row.yuanyin_score|htmlentities}"></td>
- </tr>
- <tr>
- <td>故障部位少写或错写1条扣1分</td><td><input type="text" name="row[buwei_score]" value="{$row.buwei_score|htmlentities}"></td>
- </tr>
- <tr>
- <td>排除方法少写或错写1条扣1分</td><td><input type="text" name="row[fangfa_score]" value="{$row.fangfa_score|htmlentities}"></td>
- </tr>
- <tr>
- <td>修复结论错扣2分</td><td><input type="text" name="row[jielun_score]" value="{$row.jielun_score|htmlentities}"></td>
- </tr>
- <tr>
- <td colspan="2">三.维修时间(10分)</td>
- </tr>
- <tr>
- <td>按每超过1分钟扣1分的比例扣分</td><td><input type="text" name="row[overtime_score]" value="{$row.overtime_score|htmlentities}"></td>
- </tr>
- <tr>
- <td colspan="2" style="height: 3.5rem">总得分:{$row.total|htmlentities}</td>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
- </div>
- {if $row.is_sure eq 0}
- <div class="form-group layer-footer">
- <label class="control-label col-xs-12 col-sm-2"></label>
- <div class="col-xs-12 col-sm-8">
- <button type="submit" class="btn btn-primary btn-embossed disabled">{:__('OK')}</button>
- </div>
- </div>
- {/if}
- </form>
|