Files
PropertyDeployment/resources/Web/MicroCommunityWeb/html/components/scm/couponRuleCpps/couponRuleCpps.html
2025-12-09 20:22:03 +08:00

77 lines
3.7 KiB
HTML

<div class="margin-top">
<div class="row margin-top-lg">
<div class="col-lg-2 padding-right-xs padding-right-xl ">
<button type="button" class="btn btn-primary btn-sm" style="margin-left:10px"
v-on:click="_queryCouponRuleCppsMethod()">
<vc:i18n name="查询" namespace="couponRuleCppsManage"></vc:i18n>
</button>
<button type="button" class="btn btn-primary btn-sm" v-on:click="_openAddCouponRuleCppsModal()">
<i class="glyphicon glyphicon-plus"></i>
<span>
<vc:i18n name="添加" namespace="couponRuleCppsManage"></vc:i18n>
</span>
</button>
</div>
</div>
<div class="margin-top">
<table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15">
<thead>
<tr>
<th class="text-center"><span>
<vc:i18n name='编号' namespace='couponRuleCppsManage'></vc:i18n>
</span></th>
<th class="text-center"><span>
<vc:i18n name='优惠券' namespace='couponRuleCppsManage'></vc:i18n>
</span></th>
<th class="text-center"><span>
<vc:i18n name='赠送数量' namespace='couponRuleCppsManage'></vc:i18n>
</span></th>
<th class="text-center"><span>
<vc:i18n name='赠送频率' namespace='couponRuleCppsManage'></vc:i18n>
</span></th>
<th class="text-center"><span>
<vc:i18n name='操作' namespace='couponRuleCppsManage'></vc:i18n>
</span></th>
</tr>
</thead>
<tbody>
<tr v-for="couponRuleCpps in couponRuleCppsInfo.couponRuleCppss">
<td class="text-center">{{couponRuleCpps.crcId}}</td>
<td class="text-center">{{couponRuleCpps.couponName}}</td>
<td class="text-center">{{couponRuleCpps.quantity}}</td>
<td class="text-center">{{couponRuleCpps.giftFrequencyName}}</td>
<td class="text-center">
<div class="btn-group">
<button class="btn-white btn btn-xs"
v-on:click="_openEditCouponRuleCppsModel(couponRuleCpps)"><span>
<vc:i18n name='修改' namespace='couponRuleCppsManage'></vc:i18n>
</span></button>
</div>
<div class="btn-group">
<button class="btn-white btn btn-xs"
v-on:click="_openDeleteCouponRuleCppsModel(couponRuleCpps)"><span>
<vc:i18n name='删除' namespace='couponRuleCppsManage'></vc:i18n>
</span></button>
</div>
</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="7">
<ul class="pagination float-right"></ul>
</td>
</tr>
</tfoot>
</table>
<!-- 分页 -->
<vc:create path="frame/paginationPlus" namespace="couponRuleCpps"></vc:create>
</div>
<vc:create path="scm/addCouponRuleCpps" callBackListener="" callBackFunction=""></vc:create>
<vc:create path="scm/editCouponRuleCpps"></vc:create>
<vc:create path="scm/deleteCouponRuleCpps"></vc:create>
</div>