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

60 lines
2.9 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="ownerRepairDetail"></vc:i18n>
</th>
<th scope="col" class="text-center">
<vc:i18n name="处理人" namespace="ownerRepairDetail"></vc:i18n>
</th>
<th scope="col" class="text-center">
<vc:i18n name="状态" namespace="ownerRepairDetail"></vc:i18n>
</th>
<th scope="col" class="text-center">
<vc:i18n name="处理开始时间" namespace="ownerRepairDetail"></vc:i18n>
</th>
<th scope="col" class="text-center">
<vc:i18n name="处理结束时间" namespace="ownerRepairDetail"></vc:i18n>
</th>
<th scope="col" class="text-center">
<vc:i18n name="耗时" namespace="ownerRepairDetail"></vc:i18n>
</th>
<th scope="col" class="text-center">
<vc:i18n name="意见" namespace="ownerRepairDetail"></vc:i18n>
</th>
</tr>
</thead>
<tbody>
<tr v-for="(item,index) in repairDetailUserInfo.users">
<td scope="row" class="text-center">{{index+1}}</td>
<td class="text-center">{{item.staffName}}</td>
<td class="text-center" v-if="(item.state == '10009' || item.state == '12000') && item.payTypeName != null && item.payTypeName != undefined
&& item.payTypeName != ''">
{{item.stateName}}({{item.payTypeName}})
</td>
<td class="text-center" v-else>
{{item.stateName}}
<span v-if="item.state == '10007'">
(<a href="javascript:void(0)" @click="_openRepairAppraise(item)">回复</a>)
</span>
</td>
<td class="text-center">{{item.startTime}}</td>
<td class="text-center">{{item.endTime}}</td>
<td class="text-center">{{item.duration}}</td>
<td class="text-center">{{item.context}}</td>
</tr>
</tbody>
</table>
<!-- 分页 -->
<div class="text-right">
<vc:create namespace="repairDetailUser" path="frame/paginationPlus"></vc:create>
</div>
</div>
</div>