23 lines
1.2 KiB
HTML
23 lines
1.2 KiB
HTML
<div class="bg-white margin-top-xs padding border-radius">
|
|
<div class=" ">
|
|
<button type="button" class="btn btn-white btn-sm" v-on:click="_openAddIntegralRuleModal()">
|
|
<vc:i18n name="添加" namespace="integralRuleDiv"></vc:i18n>
|
|
</button>
|
|
<button type="button" class="btn btn-white btn-sm" v-on:click="_openEditIntegralRuleModel()">
|
|
<vc:i18n name="修改" namespace="integralRuleDiv"></vc:i18n>
|
|
</button>
|
|
<button type="button" class="btn btn-white btn-sm" v-on:click="_openDeleteIntegralRuleModel()" >
|
|
<vc:i18n name="删除" namespace="integralRuleDiv"></vc:i18n>
|
|
</button>
|
|
</div>
|
|
<div class="vc-org margin-top">
|
|
<ul>
|
|
<li v-for="(rule,index) in integralRuleDivInfo.integralRules" @click="_switchIntegralRule(rule)"
|
|
:class="{'active':rule.ruleId == integralRuleDivInfo.curIntegralRule.ruleId}">{{rule.ruleName}}
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<vc:create path="scm/addIntegralRule" callBackListener="" callBackFunction=""></vc:create>
|
|
<vc:create path="scm/editIntegralRule"></vc:create>
|
|
<vc:create path="scm/deleteIntegralRule"></vc:create>
|
|
</div> |