mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-26 16:19:44 +08:00
51 lines
2.3 KiB
HTML
51 lines
2.3 KiB
HTML
<div>
|
|
<div class="row margin-top">
|
|
|
|
<div class="col-lg-2 text-left">
|
|
<select class="custom-select" v-model="simplifyOwnerTransactionCarInfo.carId" @change="changeTransactionCar()">
|
|
<option v-for="(item,index) in simplifyOwnerTransactionCarInfo.ownerCars" :value="item.carId">{{item.carNum}}</option>
|
|
</select>
|
|
</div>
|
|
<div class="col-lg-10 text-right">
|
|
</div>
|
|
|
|
</div>
|
|
<div>
|
|
<table class="footable table table-stripped toggle-arrow-tiny" style="margin-top:10px" data-page-size="10">
|
|
<thead>
|
|
<tr>
|
|
<th class="text-center">同步ID</th>
|
|
<th class="text-center">设备编码</th>
|
|
<th class="text-center">对象类型</th>
|
|
<th class="text-center">对象名称</th>
|
|
<th class="text-center">状态</th>
|
|
<th class="text-center">同步时间</th>
|
|
<th class="text-center">操作</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="machineTranslate in simplifyOwnerTransactionCarInfo.machineTranslates">
|
|
<td class="text-center">{{machineTranslate.machineTranslateId}}</td>
|
|
<td class="text-center">{{machineTranslate.machineCode}}</td>
|
|
<td class="text-center">{{machineTranslate.typeCdName}}</td>
|
|
<td class="text-center">{{machineTranslate.objName}}</td>
|
|
<td class="text-center">{{machineTranslate.stateName}}</td>
|
|
<td class="text-center">{{machineTranslate.updateTime}}</td>
|
|
<td class="text-center">
|
|
<div class="btn-group">
|
|
<button class="btn-white btn btn-xs"
|
|
v-on:click="_openEditCarTranslateModel(machineTranslate)">重新同步
|
|
</button>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<div class="row">
|
|
<div class="col-lg-12 float-right">
|
|
<vc:create namespace="simplifyOwnerTransactionCar" path="frame/paginationPlus"></vc:create>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div> |