74 lines
3.6 KiB
HTML
74 lines
3.6 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">
|
|
<vc:i18n name="同步ID" namespace="simplifyOwnerTransactionCar"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="对象类型" namespace="simplifyOwnerTransactionCar"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="对象名称" namespace="simplifyOwnerTransactionCar"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="指令" namespace="simplifyOwnerTransactionCar"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="状态" namespace="simplifyOwnerTransactionCar"></vc:i18n>
|
|
</th>
|
|
<th class="text-center" width="80px">
|
|
<vc:i18n name="说明" namespace="simplifyOwnerTransactionCar"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="同步时间" namespace="simplifyOwnerTransactionCar"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="操作" namespace="simplifyOwnerTransactionCar"></vc:i18n>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="machineTranslate in simplifyOwnerTransactionCarInfo.machineTranslates">
|
|
<td class="text-center">{{machineTranslate.machineTranslateId}}</td>
|
|
<td class="text-center">{{machineTranslate.typeCdName}}</td>
|
|
<td class="text-center">{{machineTranslate.objName}}</td>
|
|
<td class="text-center">{{machineTranslate.machineCmdName}}</td>
|
|
<td class="text-center">{{machineTranslate.stateName}}</td>
|
|
<td class="text-center">{{machineTranslate.remark}}</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)">
|
|
<vc:i18n name="重新同步" namespace="simplifyOwnerTransactionCar"></vc:i18n>
|
|
</button>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
<tr>
|
|
<td colspan="9">
|
|
<ul class="pagination float-right"></ul>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<div class="row">
|
|
<div class="col-lg-12 float-right">
|
|
<vc:create namespace="simplifyOwnerTransactionCar" path="frame/paginationPlus"></vc:create>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |