MicroCommunityWeb/public/components/property/viewFeePrintSpecInfo/viewFeePrintSpecInfo.html
2020-09-22 18:20:00 +08:00

51 lines
2.0 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="viewFeePrintSpecInfo.index != 2" class="btn btn-primary btn-sm" style="margin-right:10px;" v-on:click="_openSelectFeePrintSpecInfoModel()">
<i class="glyphicon glyphicon-search"></i> 选择打印配置</button>
<button type="button" v-if="viewFeePrintSpecInfo.index != 2" class="btn btn-primary btn-sm" v-on:click="_openAddFeePrintSpecInfoModel()">
<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="">{{viewFeePrintSpecInfo.specCd}}</label>
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label" >内容:</label>
<label class="">{{viewFeePrintSpecInfo.content}}</label>
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label" >必填:</label>
<label class="">{{viewFeePrintSpecInfo.qrImg}}</label>
</div>
</div>
</div>
</div>
</div>
</div>
<vc:create path="property/addFeePrintSpec"
callBackListener="viewFeePrintSpecInfo"
callBackFunction="chooseFeePrintSpec"
></vc:create>
<vc:create path="property/chooseFeePrintSpec"
emitChooseFeePrintSpec="viewFeePrintSpecInfo"
emitLoadData="viewFeePrintSpecInfo"
></vc:create>
</div>