MicroCommunityWeb/public/components/dev/viewReportCustomInfo/viewReportCustomInfo.html
2021-11-12 12:55:27 +08:00

65 lines
2.6 KiB
HTML

<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="viewReportCustomInfo.index != 2" class="btn btn-primary btn-sm" style="margin-right:10px;" v-on:click="_openSelectReportCustomInfoModel()">
<i class="glyphicon glyphicon-search"></i> 选择报表</button>
<button type="button" v-if="viewReportCustomInfo.index != 2" class="btn btn-primary btn-sm" v-on:click="_openAddReportCustomInfoModel()">
<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="">{{viewReportCustomInfo.customId}}</label>
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label" >组编号:</label>
<label class="">{{viewReportCustomInfo.groupId}}</label>
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label" >选项标题:</label>
<label class="">{{viewReportCustomInfo.title}}</label>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label" >排序:</label>
<label class="">{{viewReportCustomInfo.seq}}</label>
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label" >描述:</label>
<label class="">{{viewReportCustomInfo.remark}}</label>
</div>
</div>
</div>
</div>
</div>
</div>
<vc:create path="dev/addReportCustom"
callBackListener="viewReportCustomInfo"
callBackFunction="chooseReportCustom"
></vc:create>
<vc:create path="dev/chooseReportCustom"
emitChooseReportCustom="viewReportCustomInfo"
emitLoadData="viewReportCustomInfo"
></vc:create>
</div>