mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-26 08:16:47 +08:00
56 lines
2.6 KiB
HTML
56 lines
2.6 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="_queryIntegralRuleCppsMethod()">
|
|
查询
|
|
</button>
|
|
<button type="button" class="btn btn-primary btn-sm" v-on:click="_openAddIntegralRuleFeeModal()">
|
|
<vc:i18n name="添加" namespace="marketTextManage"></vc:i18n>
|
|
</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">
|
|
<vc:i18n name='编号' namespace='integralRuleFees'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='缴费时间' namespace='integralRuleFees'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='操作'></vc:i18n>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="integralRuleFee in integralRuleFeesInfo.integralRuleFees">
|
|
<td class="text-center">{{integralRuleFee.irfId}}</td>
|
|
<td class="text-center">{{integralRuleFee.payStartTime}}~{{integralRuleFee.payEndTime}}</td>
|
|
<td class="text-center">
|
|
<div class="btn-group">
|
|
<button class="btn-white btn btn-xs"
|
|
v-on:click="_openEditIntegralRuleFeeModel(integralRuleFee)">
|
|
<vc:i18n name='修改'></vc:i18n>
|
|
</button>
|
|
</div>
|
|
<div class="btn-group">
|
|
<button class="btn-white btn btn-xs"
|
|
v-on:click="_openDeleteIntegralRuleFeeModel(integralRuleFee)">
|
|
<vc:i18n name='删除'></vc:i18n>
|
|
</button>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<!-- 分页 -->
|
|
<vc:create path="frame/paginationPlus" namespace="integralRuleCpps"></vc:create>
|
|
</div>
|
|
|
|
<vc:create path="scm/addIntegralRuleFee" callBackListener="" callBackFunction=""></vc:create>
|
|
<vc:create path="scm/editIntegralRuleFee"></vc:create>
|
|
<vc:create path="scm/deleteIntegralRuleFee"></vc:create>
|
|
</div> |