41 lines
1.2 KiB
PHP
41 lines
1.2 KiB
PHP
@extends('web.layouts.mpay')
|
|
@section('content')
|
|
|
|
<form class="" name="FormPay" id="FormPay" action="{{ route('web.zhanxin.orderPost') }}" method="post">
|
|
<input type="hidden" name="_token" value="{{ csrf_token() }}">
|
|
|
|
<div class="h5ui-page top">
|
|
<h5 class="h5ui-group_title">
|
|
支付介绍
|
|
</h5>
|
|
<div class="h5ui-form">
|
|
<textarea name="" id="" readonly="readonly" cols="30" rows="10" class="h5ui-form-input">
|
|
这里是展信支付的说明
|
|
</textarea>
|
|
</div>
|
|
</div>
|
|
<input type="hidden" value="111" name=pay_type id=channelID>
|
|
|
|
|
|
<div class="h5ui-page spacing-cell">
|
|
<p>
|
|
<button type="button" class="h5ui-btn h5ui-btn_primary" id="goBuy">立即跳转</button>
|
|
</p>
|
|
</div>
|
|
</form>
|
|
<!-- Copyright -->
|
|
|
|
@endsection
|
|
@section('foot_js')
|
|
<script>
|
|
|
|
$("#goBuy").on("click", function() {
|
|
|
|
if ($("#channelID").val() == "") {
|
|
$("#alert-error").show().delay(2000).fadeOut();
|
|
return false;
|
|
}
|
|
$("#FormPay").submit();
|
|
});
|
|
</script>
|
|
@endsection |