mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-24 21:59:12 +08:00
44 lines
2.2 KiB
HTML
44 lines
2.2 KiB
HTML
<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">设备编码</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>
|
|
<th class="text-center">同步时间</th>
|
|
<th class="text-center">操作</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="machineTranslate in simplifyOwnerAccessContolInfo.machineTranslates">
|
|
<td class="text-center">{{machineTranslate.machineCode}}</td>
|
|
<td class="text-center">{{machineTranslate.machineName}}</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="_openEditMachineTranslateModel(machineTranslate)">重新同步
|
|
</button>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<div class="row">
|
|
<div class="col-sm-12 float-right">
|
|
<vc:create namespace="simplifyOwnerAccessContol" path="frame/paginationPlus"></vc:create>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- <vc:create path="property/editMachineTranslate"></vc:create> -->
|
|
</div> |