mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-27 00:20:01 +08:00
65 lines
4.4 KiB
HTML
Executable File
65 lines
4.4 KiB
HTML
Executable File
<div id = "chooseQuestionAnswerModel" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="chooseQuestionAnswerModelLabel" aria-hidden="true" >
|
|
<div class="modal-dialog modal-lg">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<h3 class="modal-title" id="chooseQuestionAnswerModelLabel"><span><vc:i18n name="选择问卷信息" namespace="chooseQuestionAnswer"></vc:i18n></span></h3>
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
|
<span aria-hidden="true">×</span>
|
|
</button>
|
|
</div>
|
|
<div class="modal-body">
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<div class="ibox ">
|
|
<div class="row">
|
|
|
|
<div class="col-sm-7 m-b-xs">
|
|
</div>
|
|
<div class="col-sm-5">
|
|
<div class="input-group">
|
|
<input :placeholder="vc.i18n('输入问卷信息名称','chooseQuestionAnswer')" type="text" v-model="chooseQuestionAnswerInfo._currentQuestionAnswerName" class="form-control form-control-sm">
|
|
<span class="input-group-append">
|
|
<button type="button" class="btn btn-sm btn-primary" v-on:click="queryQuestionAnswers()"><span><vc:i18n name="查询" namespace="chooseQuestionAnswer"></vc:i18n></span></button>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="table-responsive" style="margin-top:15px">
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th class="text-center"><span><vc:i18n name="问卷" namespace="chooseQuestionAnswer"></vc:i18n></span>ID</th>
|
|
<th class="text-center"><span><vc:i18n name="问卷类型" namespace="chooseQuestionAnswer"></vc:i18n></span></th>
|
|
<th class="text-center"><span><vc:i18n name="问卷名称" namespace="chooseQuestionAnswer"></vc:i18n></span></th>
|
|
<th class="text-center"><span><vc:i18n name="开始时间" namespace="chooseQuestionAnswer"></vc:i18n></span></th>
|
|
<th class="text-center"><span><vc:i18n name="结束时间" namespace="chooseQuestionAnswer"></vc:i18n></span></th>
|
|
<th class="text-center"><span><vc:i18n name="备注" namespace="chooseQuestionAnswer"></vc:i18n></span></th>
|
|
<th class="text-center"><span><vc:i18n name="操作" namespace="chooseQuestionAnswer"></vc:i18n></span></th>
|
|
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="questionAnswer in chooseQuestionAnswerInfo.questionAnswers">
|
|
<td class="text-center">{{questionAnswer.qaId}}</td>
|
|
<td class="text-center">{{questionAnswer.qaType}}</td>
|
|
<td class="text-center">{{questionAnswer.qaName}}</td>
|
|
<td class="text-center">{{questionAnswer.startTime}}</td>
|
|
<td class="text-center">{{questionAnswer.endTime}}</td>
|
|
<td class="text-center">{{questionAnswer.remark}}</td>
|
|
|
|
<td>
|
|
<button class="btn btn-primary btn-xs" v-on:click="chooseQuestionAnswer(questionAnswer)"><span><vc:i18n name="选择" namespace="chooseQuestionAnswer"></vc:i18n></span></button>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|