MicroCommunityWeb/public/components/property/questionValue/questionValue.html

55 lines
2.8 KiB
HTML

<div id="questionValueModel" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="questionValueModelLabel"
aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title" id="questionValueModelLabel">
<span><vc:i18n name="问卷结果" namespace="questionValue"></vc:i18n></span>
</h3>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body">
<div class="row">
<div class="col-lg-12">
<div class="ibox ">
<div class="table-responsive" style="margin-top:15px">
<table class="table table-striped">
<thead>
<tr>
<th class="text-center">
<span><vc:i18n name="选项内容" namespace="questionValue"></vc:i18n></span>
</th>
<th class="text-center">
<span><vc:i18n name="选择人数" namespace="questionValue"></vc:i18n></span>
</th>
<th class="text-center">
<span><vc:i18n name="占比" namespace="questionValue"></vc:i18n></span>
</th>
</tr>
</thead>
<tbody>
<tr v-for="value in questionValueInfo.values">
<td class="text-center">
{{value.qaValue}}
</td>
<td class="text-center">
{{value.userCount}}
</td>
<td class="text-center">
{{value.percentage}}
</td>
</tr>
</tbody>
</table>
<vc:create namespace="questionValue" path="frame/paginationPlus"></vc:create>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>