You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
2.9 KiB
62 lines
2.9 KiB
<div class="window-modal " x-show="historySignShow" x-cloak data-type="window-modal" x-ref="historySign" id="historySign">
|
|
<div class="window-modal-content modal-lg">
|
|
<div class="window-modal-header">
|
|
<h4>歷史簽核紀錄</h4>
|
|
<button class="btn btn-close" @click="hideHistorySignModal()">X</button>
|
|
</div>
|
|
<div class="window-modal-body">
|
|
<div>
|
|
<table class="table historytable" style="width:700px">
|
|
<thead>
|
|
<tr>
|
|
<th>審核</th>
|
|
<th>審核人</th>
|
|
<th>結果</th>
|
|
<th>意見</th>
|
|
<th>時間</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach($historySign as $key=>$history): ?>
|
|
<tr>
|
|
<td colspan="5"></td>
|
|
</tr>
|
|
<tr>
|
|
<td>區經理</td>
|
|
<td><?php echo $history['signer1']; ?></td>
|
|
<td><?php echo $history['sign1_result']; ?></td>
|
|
<td><?php echo $history['sign1_note']; ?></td>
|
|
<td><?php echo $history['sign1_date']; ?></td>
|
|
</tr>
|
|
<tr>
|
|
<td x-text="is_renovate=='汰改' ? '服務助理' : '業務承辦人'"></td>
|
|
<td><?php echo $history['signer2']; ?></td>
|
|
<td><?php echo $history['sign2_result']; ?></td>
|
|
<td><?php echo $history['sign2_note']; ?></td>
|
|
<td><?php echo $history['sign2_date']; ?></td>
|
|
</tr>
|
|
<tr>
|
|
<td x-text="is_renovate=='汰改' ? '服務副總' :'業務部協理'"></td>
|
|
<td><?php echo $history['signer3']; ?></td>
|
|
<td><?php echo $history['sign3_result']; ?></td>
|
|
<td><?php echo $history['sign3_note']; ?></td>
|
|
<td><?php echo $history['sign3_date']; ?></td>
|
|
</tr>
|
|
<tr>
|
|
<td>總經理</td>
|
|
<td><?php echo $history['signer4']; ?></td>
|
|
<td><?php echo $history['sign4_result']; ?></td>
|
|
<td><?php echo $history['sign4_note']; ?></td>
|
|
<td><?php echo $history['sign4_date']; ?></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal" @click="hideHistorySignModal()">關閉</button>
|
|
</div>
|
|
</div>
|
|
<div class="window-back" @click="hideHistorySignModal()"></div>
|
|
</div>
|