Initial project files: BESCMS full source

This commit is contained in:
bes
2026-08-13 23:37:46 +08:00
parent fa6cddb540
commit 2e26f85723
2166 changed files with 396625 additions and 0 deletions
+42
View File
@@ -0,0 +1,42 @@
<form action="/index.php?s=member&app=pay&c=pay" class="form-horizontal" method="post" name="myform" id="payform">
{dr_form_hidden()}
<input type="hidden" name="pay[url]" value="{$html.url}" />
<input type="hidden" name="pay[mark]" value="{$html.mark}" />
<input type="hidden" name="pay[title]" value="{$html.title}" />
<div class="form-body form">
<div class="form-group">
<label class="col-md-3 control-label">支付金额</label>
<div class="col-md-2">
<input type="hidden" value="{$html.pay_value}" name="pay[money]">
<p class="form-control-static fc-price-color"> <i class="fa fa-rmb"></i> {number_format($html.pay_value, 2)} 元</p>
</div>
</div>
<div class="form-group">
<label class="col-md-3 control-label">账户余额</label>
<div class="col-md-2">
<p class="form-control-static fc-price-color"> <i class="fa fa-rmb"></i> {number_format($member.money, 2)} 元</p>
</div>
</div>
<div class="form-group">
<label class="col-md-3 control-label" style="padding-top:10px">付款方式</label>
<div class="col-md-5">
<div class="btn-group" data-toggle="buttons">
{loop $html.pay_type $name $t}
<label style="border-radius:0" onclick="dr_select_paytype('{$name}')" class="btn btn-lg btn-default {if $name == $html.pay_default}active{/if}"> <input type="radio" class="toggle"> {$t['icon']} {$t['name']} </label>
{/loop}
<input type="hidden" name="pay[type]" value="{$html.pay_default}" id="dr_payselect">
</div>
</div>
</div>
<div class="form-actions fc-form-actions">
<label class="col-md-3 control-label"> </label>
<div class="col-md-9 fc-form-submit">
<button type="submit" class="btn btn-lg green"> 确认付款 </button>
</div>
</div>
</div>
</form>
+39
View File
@@ -0,0 +1,39 @@
<form action="{$pay_url}" class="form-horizontal" method="post" name="myform" id="payform">
{dr_form_hidden()}
<input type="hidden" name="pay[mark]" value="{$html.mark}" />
<input type="hidden" name="pay[title]" value="{$html.title}" />
<div class="form-body form">
<div class="form-group">
<label class="col-md-2 control-label">付款金额</label>
<div class="col-md-2">
<div class="input-group">
<span class="input-group-addon">
<i class="fa fa-rmb"></i>
</span>
<input type="text" name="pay[money]" value="{$html.pay_value}" class="form-control">
</div>
</div>
</div>
<div class="form-group">
<label class="col-md-2 control-label" style="padding-top:10px">付款方式</label>
<div class="col-md-8">
<div class="btn-group" data-toggle="buttons">
{loop $html.pay_type $name $t}
<label onclick="dr_select_paytype('{$name}')" class="btn btn-lg btn-default {if $name == $html.pay_default}active{/if}"> <input type="radio" class="toggle"> {$t['icon']} {$t['name']} </label>
{/loop}
<input type="hidden" name="pay[type]" value="{$html.pay_default}" id="dr_payselect">
</div>
</div>
</div>
<div class="form-actions fc-form-actions">
<label class="col-md-2 control-label"> </label>
<div class="col-md-9 fc-form-submit">
<button type="submit" class="btn btn-lg green"> 确认付款 </button>
</div>
</div>
</div>
</form>
+9
View File
@@ -0,0 +1,9 @@
<div class="fc-price-color">
¥{number_format($data.value,2)}元
</div>
{$code}
<p>
这是微信付款页面模板config/pay/payweixin.html
</p>