FIC_Solar/SolarPower/Views/PowerStation/_Operation.cshtml
Kai 7480fee9df 1. 修改myUser 資料
2. 公司管理上傳圖片
3. 加入電站資訊頁面
2021-06-13 18:46:10 +08:00

64 lines
2.3 KiB
Plaintext

<div class="row mb-5">
<div class="col-6"><h3>運維資料</h3></div>
<div class="col-6 text-right">
<button type="button" class="btn btn-success waves-effect waves-themed mb-3">
<span class="fal fa-plus mr-1"></span>
新增
</button>
</div>
<div class="w-100">
<table class="table table-bordered table-hover m-0 text-center">
<thead class="thead-themed">
<tr>
<th>廠商類別</th>
<th>廠商</th>
<th>聯絡人</th>
<th>電話</th>
<th>email</th>
<th>建立日期</th>
<th>建立人</th>
<th>功能</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">施工</th>
<td>台達電</td>
<td>林先生</td>
<td>0928-123456</td>
<td>lin@tdd.com.tw</td>
<td>2021/06/02</td>
<td>周杰倫</td>
<td>
<button type="button" class="btn btn-primary btn-pills waves-effect waves-themed">修改</button>
</td>
</tr>
<tr>
<th scope="row">清洗</th>
<td>潔寶</td>
<td>暴風女</td>
<td>0928-654321</td>
<td>storm@mavel.com</td>
<td>2021/06/03</td>
<td>周杰倫</td>
<td>
<button type="button" class="btn btn-primary btn-pills waves-effect waves-themed">修改</button>
</td>
</tr>
<tr>
<th scope="row">維運</th>
<td>華碩</td>
<td>雷神索爾</td>
<td>0937-123123</td>
<td>thor@asus.com</td>
<td>2021/06/04</td>
<td>周杰倫</td>
<td>
<button type="button" class="btn btn-primary btn-pills waves-effect waves-themed">修改</button>
</td>
</tr>
</tbody>
</table>
</div>
</div>