Files
shopxo/application/plugins/view/wallet/admin/index.html
gongfuxiang 7d95349a83 钱包
2019-05-02 01:10:09 +08:00

92 lines
4.0 KiB
HTML
Executable File
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.

{{include file="public/header" /}}
<!-- right content start -->
<div class="content-right">
<div class="content">
<legend>
<span class="fs-16">钱包</span>
<a href="{{:MyUrl('admin/pluginsadmin/index')}}" class="fr fs-14 m-t-5 am-icon-mail-reply"> 返回</a>
</legend>
<div class="wallet-content">
<!-- 基础数据 -->
<div class="am-panel am-panel-secondary wallet-content-base">
<div class="am-panel-hd">
<span class="am-panel-title">基础数据</span>
<a class="am-fr" href="{{:PluginsAdminUrl('wallet', 'admin', 'saveinfo')}}">编辑</a>
</div>
<div class="am-panel-bd">
<ul data-am-widget="gallery" class="am-gallery am-avg-sm-2 am-avg-md-4 am-avg-lg-4 am-gallery-default" data-am-gallery="{ pureview: true }" >
<li>
<div class="items">
<label>开启充值</label>
<div>
{{if isset($data['is_recharge']) and $data['is_recharge'] eq 1}}
{{else /}}
{{/if}}
</div>
</div>
</li>
<li>
<div class="items">
<label>开启提现申请</label>
<div>
{{if isset($data['is_cash']) and $data['is_cash'] eq 1}}
{{else /}}
{{/if}}
</div>
</div>
</li>
<li>
<div class="items">
<label>开启余额支付功能</label>
<div>
{{if isset($data['is_pay']) and $data['is_pay'] eq 1}}
{{else /}}
{{/if}}
</div>
</div>
</li>
<li>
<div class="items">
<label>充值赠送</label>
<div>
{{if isset($data['recharge_give_type']) and isset($data['recharge_give_value']) and $data['recharge_give_value'] gt 0}}
{{if $data['recharge_give_type'] eq 0}}
固定金额({{$data.recharge_give_value}}元)
{{elseif $data['recharge_give_type'] eq 1 /}}
比例({{$data.recharge_give_value}}%
{{/if}}
{{else /}}
不赠送
{{/if}}
</div>
</div>
</li>
</ul>
</div>
</div>
<!-- 管理 -->
<div class="am-panel am-panel-secondary wallet-middle-list">
<div class="am-panel-hd">
<span class="am-panel-title">管理</span>
</div>
<div class="am-panel-bd">
hello
</div>
</div>
</div>
</div>
</div>
<!-- right content end -->
<!-- footer start -->
{{include file="public/footer" /}}
<!-- footer end -->