MicroCommunityWeb/public/components/property/viewQuestionAnswerTitleInfo/viewQuestionAnswerTitleInfo.html
2021-04-23 10:14:20 +08:00

51 lines
2.2 KiB
HTML
Executable File

<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" v-if="viewQuestionAnswerTitleInfo.index != 2" class="btn btn-primary btn-sm" style="margin-right:10px;" v-on:click="_openSelectQuestionAnswerTitleInfoModel()">
<i class="glyphicon glyphicon-search"></i> 选择问卷题目</button>
<button type="button" v-if="viewQuestionAnswerTitleInfo.index != 2" class="btn btn-primary btn-sm" v-on:click="_openAddQuestionAnswerTitleInfoModel()">
<i class="glyphicon glyphicon-plus"></i> 添加问卷题目</button>
</div>
</div>
<div class="ibox-content">
<div class="row">
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label" >题目类型:</label>
<label class="">{{viewQuestionAnswerTitleInfo.titleType}}</label>
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label" >问卷题目:</label>
<label class="">{{viewQuestionAnswerTitleInfo.qaTitle}}</label>
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label" >顺序:</label>
<label class="">{{viewQuestionAnswerTitleInfo.seq}}</label>
</div>
</div>
</div>
</div>
</div>
</div>
<vc:create path="property/addQuestionAnswerTitle"
callBackListener="viewQuestionAnswerTitleInfo"
callBackFunction="chooseQuestionAnswerTitle"
></vc:create>
<vc:create path="property/chooseQuestionAnswerTitle"
emitChooseQuestionAnswerTitle="viewQuestionAnswerTitleInfo"
emitLoadData="viewQuestionAnswerTitleInfo"
></vc:create>
</div>