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

56 lines
2.5 KiB
HTML

<div class="margin-top">
<div class="">
<table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15">
<thead>
<tr>
<th class="text-center">
<vc:i18n name="用户名称" namespace="aComplaintDetailAppraise"></vc:i18n>
</th>
<th data-hide="phone" class="text-center">
<vc:i18n name="评价内容" namespace="aComplaintDetailAppraise"></vc:i18n>
</th>
<th data-hide="phone" class="text-center">
<vc:i18n name="评价得分" namespace="aComplaintDetailAppraise"></vc:i18n>
</th>
<th data-hide="phone" class="text-center">
<vc:i18n name="评价状态" namespace="aComplaintDetailAppraise"></vc:i18n>
</th>
<th data-hide="phone" class="text-center">
<vc:i18n name="评价时间" namespace="aComplaintDetailAppraise"></vc:i18n>
</th>
<th data-hide="phone" class="text-center">
<vc:i18n name="回复人" namespace="aComplaintDetailAppraise"></vc:i18n>
</th>
<th data-hide="phone" class="text-center">
<vc:i18n name="回复内容" namespace="aComplaintDetailAppraise"></vc:i18n>
</th>
</tr>
</thead>
<tbody>
<tr v-for="appraise in aComplaintDetailAppraiseInfo.appraises">
<td class="text-center">
{{appraise.createUserName}}
</td>
<td class="text-center">
{{appraise.context}}
</td>
<td class="text-center">
{{appraise.score}}
</td>
<td class="text-center">
{{appraise.state == 'W'?'待回复':'已回复'}}
</td>
<td class="text-center">
{{appraise.createTime}}
</td>
<td class="text-center">
{{appraise.replyUserName}}
</td>
<td class="text-center">
{{appraise.replyContext}}
</td>
</tr>
</tbody>
</table>
</div>
</div>