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

34 lines
1.2 KiB
HTML

<div class="">
<div class="margin-top">
<table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15">
<thead>
<tr>
<th class="text-center">
<vc:i18n name="规格编号" namespace="aUserDetailAttr"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="规格名称" namespace="aUserDetailAttr"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="属性值" namespace="aUserDetailAttr"></vc:i18n>
</th>
</tr>
</thead>
<tbody>
<tr v-for="attr in aUserDetailAttrInfo.attrs">
<td class="text-center">{{attr.specCd}}</td>
<td class="text-center">{{attr.specCdName}}</td>
<td class="text-center">{{attr.value}}</td>
</tr>
</tbody>
</table>
<!-- 分页 -->
<div class="row">
<div class="col-sm-4"></div>
<div class="col-sm-8">
<vc:create namespace="aUserDetailAttr" path="frame/paginationPlus"></vc:create>
</div>
</div>
</div>
</div>