MicroCommunityWeb/public/components/admin/viewCouponPoolInfo/viewCouponPoolInfo.html
2021-11-24 17:49:35 +08:00

99 lines
4.0 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<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="viewCouponPoolInfo.index != 2" class="btn btn-primary btn-sm" style="margin-right:10px;" v-on:click="_openSelectCouponPoolInfoModel()">
<i class="glyphicon glyphicon-search"></i> 选择优惠券池</button>
<button type="button" v-if="viewCouponPoolInfo.index != 2" class="btn btn-primary btn-sm" v-on:click="_openAddCouponPoolInfoModel()">
<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" >池ID</label>
<label class="">{{viewCouponPoolInfo.poolId}}</label>
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label" >优惠券类型:</label>
<label class="">{{viewCouponPoolInfo.couponType}}</label>
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label" >优惠券名称:</label>
<label class="">{{viewCouponPoolInfo.couponName}}</label>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label" >面值:</label>
<label class="">{{viewCouponPoolInfo.actualPrice}}</label>
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label" >购买价格:</label>
<label class="">{{viewCouponPoolInfo.buyPrice}}</label>
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label" >数量:</label>
<label class="">{{viewCouponPoolInfo.couponStock}}</label>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label" >有效期:</label>
<label class="">{{viewCouponPoolInfo.validityDay}}</label>
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label" >排序:</label>
<label class="">{{viewCouponPoolInfo.seq}}</label>
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label" >状态:</label>
<label class="">{{viewCouponPoolInfo.state}}</label>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label" >primary</label>
<label class="">{{viewCouponPoolInfo.primary}}</label>
</div>
</div>
</div>
</div>
</div>
</div>
<vc:create path="admin/addCouponPool"
callBackListener="viewCouponPoolInfo"
callBackFunction="chooseCouponPool"
></vc:create>
<vc:create path="admin/chooseCouponPool"
emitChooseCouponPool="viewCouponPoolInfo"
emitLoadData="viewCouponPoolInfo"
></vc:create>
</div>