Files
PropertyDeployment/resources/Web/MicroCommunityWeb/html/components/work/repairDetailResource/repairDetailResource.html
2025-12-09 20:22:03 +08:00

55 lines
2.7 KiB
HTML

<div>
<div class="row margin-top-lg">
<div class="col-lg-2 padding-right-xs padding-left-xl">
</div>
</div>
<div class="margin-top">
<table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15">
<thead>
<tr>
<th scope="col" class="text-center">
<vc:i18n name="物品资源编号" namespace="repairDetailResource"></vc:i18n>
</th>
<th scope="col" class="text-center">
<vc:i18n name="物品资源类型" namespace="repairDetailResource"></vc:i18n>
</th>
<th scope="col" class="text-center">
<vc:i18n name="物品资源名称" namespace="repairDetailResource"></vc:i18n>
</th>
<th scope="col" class="text-center">
<vc:i18n name="物品资源规格" namespace="repairDetailResource"></vc:i18n>
</th>
<th scope="col" class="text-center">
<vc:i18n name="物品使用数量" namespace="repairDetailResource"></vc:i18n>
</th>
<th scope="col" class="text-center">
<vc:i18n name="物品价格" namespace="repairDetailResource"></vc:i18n>
</th>
<th scope="col" class="text-center">
<vc:i18n name="使用人" namespace="repairDetailResource"></vc:i18n>
</th>
<th scope="col" class="text-center">
<vc:i18n name="时间" namespace="repairDetailResource"></vc:i18n>
</th>
</tr>
</thead>
<tbody>
<tr v-for="item in repairDetailResourceInfo.resources">
<td scope="row" class="text-center">{{item.resId}}</td>
<td class="text-center">{{item.parentRstName}} > {{item.rstName}}</td>
<td class="text-center">{{item.resourceStoreName}}</td>
<td class="text-center">{{item.specName? item.specName : '-'}}</td>
<td class="text-center">{{item.quantity}}{{item.miniUnitCodeName}}</td>
<td class="text-center">{{item.unitPrice? item.unitPrice : '-'}}</td>
<td class="text-center">{{item.createUserName}}</td>
<td class="text-center">{{item.createTime}}</td>
</tr>
</tbody>
</table>
<!-- 分页 -->
<div class="text-right">
<vc:create namespace="repairDetailResource" path="frame/paginationPlus"></vc:create>
</div>
</div>
</div>