Files
PropertyDeployment/resources/Web/MicroCommunityWeb/html/pages/scm/communityIntegral/communityIntegral.html
Anfioo be079067e6 version9
4
2026-01-14 11:39:11 +08:00

64 lines
2.8 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="white-bg padding-lg padding-top border-radius ibox-content-auto-height">
<div class="flex justify-between">
<h3><vc:i18n name="小区积分" namespace="communityIntegral"></vc:i18n></h3>
<div>
</div>
</div>
<!-- 业主信息 -->
<div class="margin-top">
<div class="row">
<div class="col-sm-3">
<div class="form-group">
<label class="col-form-label">
<vc:i18n name="账户ID" namespace="communityIntegral"></vc:i18n>
</label>
<label class="">{{communityIntegralInfo.integralId}}</label>
</div>
</div>
<div class="col-sm-3">
<div class="form-group">
<label class="col-form-label">
<vc:i18n name="账户名称:" namespace="communityIntegral"></vc:i18n>
</label>
<label class="">{{communityIntegralInfo.integralName}}</label>
</div>
</div>
<div class="col-sm-3">
<div class="form-group">
<label class="col-form-label">
<vc:i18n name="积分数:" namespace="communityIntegral"></vc:i18n>
</label>
<label class="">
{{communityIntegralInfo.amount}}
<a href="javascript:void(0)" @click="_openApplyWithholdIntegral()"><vc:i18n name="提现" namespace="communityIntegral"></vc:i18n></a>
</label>
</div>
</div>
</div>
</div>
<div class="vc-line-primary margin-top"></div>
<div class="margin-top-sm">
<ul class="nav nav-tabs">
<li class="nav-item">
<a class="nav-link" v-bind:class="{active:communityIntegralInfo._currentTab == 'communityIntegralDetail'}"
v-on:click="changeTab('communityIntegralDetail')">
<vc:i18n name="交易明细" namespace="communityIntegral"></vc:i18n>
</a>
</li>
<li class="nav-item">
<a class="nav-link" v-bind:class="{active:communityIntegralInfo._currentTab == 'applyWithholdIntegral'}"
v-on:click="changeTab('applyWithholdIntegral')">
<vc:i18n name="积分提现" namespace="communityIntegral"></vc:i18n>
</a>
</li>
</ul>
</div>
<div v-if="communityIntegralInfo._currentTab == 'communityIntegralDetail'">
<vc:create path="scm/communityIntegralDetail"></vc:create>
</div>
<div v-if="communityIntegralInfo._currentTab == 'applyWithholdIntegral'">
<vc:create path="scm/applyWithholdIntegral"></vc:create>
</div>
<vc:create path="scm/withholdIntegral"></vc:create>
</div>