MicroCommunityWeb/public/pages/property/reportQuestionAnswerDetail/reportQuestionAnswerDetail.html

105 lines
5.3 KiB
HTML

<div class=" animated fadeInRight ecommerce">
<div class="row">
<div class="col-lg-12">
<div class="ibox ">
<div class="ibox-title">
<h5>查询条件</h5>
<div class="ibox-tools" style="top:10px;">
<!-- <button type="button" class="btn btn-link btn-sm" style="margin-right:10px;"
v-on:click="_moreCondition()">{{reportQuestionAnswerDetailInfo.moreCondition ==
true?'隐藏':'更多'}}
</button> -->
</div>
</div>
<div class="ibox-content">
<div class="row">
<div class="col-sm-3">
<div class="form-group">
<select class="custom-select" v-model="reportQuestionAnswerDetailInfo.conditions.qaType">
<option selected value="">请选择问卷类型</option>
<option value="1001">业主问卷</option>
<!-- <option value="2002">员工自评</option> -->
<option value="3003">业主投票</option>
<option value="4004">员工投票</option>
</select>
</div>
</div>
<div class="col-sm-4">
<div class="form-group input-group">
<input type="text" placeholder="请选择问卷开始时间"
v-model="reportQuestionAnswerDetailInfo.conditions.startTime"
class="form-control reportFeeDetailStartTime startTime">
</div>
</div>
<div class="col-sm-3">
<div class="form-group input-group">
<input type="text" placeholder="请选择问卷结束时间"
v-model="reportQuestionAnswerDetailInfo.conditions.endTime"
class="form-control reportFeeDetailEndTime endTime">
</div>
</div>
<div class="col-sm-2">
<button type="button" class="btn btn-primary btn-md" v-on:click="_queryMethod()">
<i class="fa fa-search"></i> 查询
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="ibox">
<div class="ibox-title">
<h5>问卷明细表</h5>
<div class="ibox-tools" style="top:10px;">
<button type="button" class="btn btn-primary btn-sm" v-on:click="_exportExcel()">
<i class="fa fa-plus"></i>导出
</button>
</div>
</div>
<div class="ibox-content">
<table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15">
<thead>
<tr>
<th class="text-center">序号</th>
<th class="text-center">问卷人</th>
<th class="text-center">问卷类型</th>
<th class="text-center">问卷名称</th>
<th class="text-center">问卷题目</th>
<th class="text-center">答案</th>
<th class="text-center">时间</th>
</tr>
</thead>
<tbody>
<tr v-for="(question,index) in reportQuestionAnswerDetailInfo.questions">
<td class="text-center">{{index+1}}</td>
<td class="text-center">{{question.userName}}</td>
<td class="text-center">{{question.qaTypeName}}</td>
<td class="text-center">{{question.qaName}}</td>
<td class="text-center">{{question.qaTitle}}</td>
<td class="text-center">{{question.qaValue}}</td>
<td class="text-center">{{question.createTime}}</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="7">
<ul class="pagination float-right"></ul>
</td>
</tr>
</tfoot>
</table>
<!-- 分页 -->
<div class="row">
<div class="col-md-12 text-right">
<vc:create path="frame/pagination"></vc:create>
</div>
</div>
</div>
</div>
</div>
</div>
</div>