|
@@ -1,2091 +0,0 @@
|
|
|
-@{
|
|
|
- ViewData["Title"] = "Payment 示例";
|
|
|
-}
|
|
|
-<div id="wrapper">
|
|
|
-
|
|
|
- <div id="header">
|
|
|
- <h2>@ViewData["Title"]</h2>
|
|
|
- </div>
|
|
|
-
|
|
|
- <div id="tabs-api">
|
|
|
- <ul>
|
|
|
- <li><a href="#tabs-api-1">前言</a></li>
|
|
|
- <li><a href="#tabs-api-alipay">支付宝</a></li>
|
|
|
- <li><a href="#tabs-api-wechatpay">微信支付</a></li>
|
|
|
- <li><a href="#tabs-api-qpay">QQ钱包</a></li>
|
|
|
- <li><a href="#tabs-api-jdpay">京东支付</a></li>
|
|
|
- <li><a href="#tabs-api-unionpay">银联支付</a></li>
|
|
|
- <li><a href="#tabs-api-LianLianPay">连连支付</a></li>
|
|
|
- </ul>
|
|
|
- <div id="tabs-api-1">
|
|
|
- <h3>支付平台 官方文档:</h3>
|
|
|
- <p>支付宝:<a href="https://openhome.alipay.com/developmentDocument.htm" target="_blank">文档中心</a>、<a href="https://open.alipay.com/support/supportCenter.htm" target="_blank">技术支持中心</a>、<a href="https://openclub.alipay.com/index.php" target="_blank">开发者社区</a></p>
|
|
|
- <p>微信支付:<a href="https://pay.weixin.qq.com/wiki/doc/api/index.html" target="_blank">开发文档</a>、<a href="http://wxpay.wxutil.com/qa/index.php" target="_blank">问答中心</a>、<a href="http://kf.qq.com/product/wechatpaymentmerchant.html" target="_blank">帮助中心</a></p>
|
|
|
- <p>QQ钱包:<a href="https://qpay.qq.com/qpaywiki.shtml" target="_blank">开发文档</a>、<a href="http://kf.qq.com/product/qq_enterprise.html" target="_blank">帮助中心</a></p>
|
|
|
- <p>京东支付:<a href="http://payapi.jd.com/" target="_blank">开发文档</a></p>
|
|
|
- <p>银联支付:<a href="https://open.unionpay.com/ajweb/product" target="_blank">开放平台</a></p>
|
|
|
- <p>连连支付:<a href="http://open.LianLianPay.com/" target="_blank">开放平台</a></p>
|
|
|
- <h3>Payment:</h3>
|
|
|
- <p>QQ交流群:<a target="_blank" href="//shang.qq.com/wpa/qunwpa?idkey=aac56c8f02f54893267d3ac90787c1794a7687f3c31a923812a36b67c4ee6271">522457525</a></p>
|
|
|
- <h3>使用方式</h3>
|
|
|
- <p>见示例项目:WebApplicationSample</p>
|
|
|
- </div>
|
|
|
- <div id="tabs-api-alipay">
|
|
|
- <div id="tabs-purchase-alipay">
|
|
|
- <ul>
|
|
|
- <li><a href="#tabs-purchase-1">电脑网站支付</a></li>
|
|
|
- <li><a href="#tabs-purchase-2">手机网站支付</a></li>
|
|
|
- <li><a href="#tabs-purchase-3">扫码支付</a></li>
|
|
|
- <li><a href="#tabs-purchase-4">条码支付</a></li>
|
|
|
- <li><a href="#tabs-purchase-5">交易查询</a></li>
|
|
|
- <li><a href="#tabs-purchase-6">交易退款</a></li>
|
|
|
- <li><a href="#tabs-purchase-7">退款查询</a></li>
|
|
|
- <li><a href="#tabs-purchase-8">交易关闭</a></li>
|
|
|
- <li><a href="#tabs-purchase-9">单笔转账</a></li>
|
|
|
- <li><a href="#tabs-purchase-10">转账查询</a></li>
|
|
|
- <li><a href="#tabs-purchase-11">对账查询</a></li>
|
|
|
- </ul>
|
|
|
-
|
|
|
- <div id="tabs-purchase-1">
|
|
|
- <form class="api-form" asp-controller="Alipay" asp-action="PagePay" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>out_trade_no:</label>
|
|
|
- <input type="text" name="out_trade_no" value="@DateTime.Now.ToString("yyyyMMddHHmmssfff")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>subject:</label>
|
|
|
- <input type="text" name="subject" value="支付宝电脑网站支付测试">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>total_amount:</label>
|
|
|
- <input type="text" name="total_amount" value="0.01" title="单位为元,精确至小数点后2位。">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>body:</label>
|
|
|
- <input type="text" name="body">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>product_code:</label>
|
|
|
- <input type="text" name="product_code" value="FAST_INSTANT_TRADE_PAY">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>notify_url:</label>
|
|
|
- <input type="text" name="notify_url" value="http://www.baidu.com/notify/alipay/pagepay">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>return_url:</label>
|
|
|
- <input type="text" name="return_url" value="http://www.baidu.com/alipay/pagepayreturn">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="https://docs.open.alipay.com/270/alipay.trade.page.pay" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
-
|
|
|
- <div id="tabs-purchase-2">
|
|
|
- <form class="api-form" asp-controller="Alipay" asp-action="WapPay" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>out_trade_no:</label>
|
|
|
- <input type="text" name="out_trade_no" value="@DateTime.Now.ToString("yyyyMMddHHmmssfff")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>subject:</label>
|
|
|
- <input type="text" name="subject" value="支付宝手机网站支付测试">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>total_amount:</label>
|
|
|
- <input type="text" name="total_amount" value="0.01" title="单位为元,精确至小数点后2位。">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>body:</label>
|
|
|
- <input type="text" name="body">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>product_code:</label>
|
|
|
- <input type="text" name="product_code" value="QUICK_WAP_WAY">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>notify_url:</label>
|
|
|
- <input type="text" name="notify_url" value="http://www.baidu.com/notify/alipay/wappay">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>return_url:</label>
|
|
|
- <input type="text" name="return_url" value="http://www.baidu.com/alipay/wappayreturn">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="https://docs.open.alipay.com/203/107090/" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
-
|
|
|
- <div id="tabs-purchase-3">
|
|
|
- <form class="api-form" asp-controller="Alipay" asp-action="PreCreate" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>out_trade_no:</label>
|
|
|
- <input type="text" name="out_trade_no" value="@DateTime.Now.ToString("yyyyMMddHHmmssfff")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>subject:</label>
|
|
|
- <input type="text" name="subject" value="支付宝扫码支付测试">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>total_amount:</label>
|
|
|
- <input type="text" name="total_amount" value="0.01" title="单位为元,精确至小数点后2位。">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>body:</label>
|
|
|
- <input type="text" name="body">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>notify_url:</label>
|
|
|
- <input type="text" name="notify_url" value="http://www.baidu.com/notify/alipay/precreate">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="https://docs.open.alipay.com/api_1/alipay.trade.precreate" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
-
|
|
|
- <div id="tabs-purchase-4">
|
|
|
- <form class="api-form" asp-controller="Alipay" asp-action="Pay" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>out_trade_no:</label>
|
|
|
- <input type="text" name="out_trade_no" value="@DateTime.Now.ToString("yyyyMMddHHmmssfff")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>scene:</label>
|
|
|
- <input type="text" name="scene" value="bar_code">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>auth_code:</label>
|
|
|
- <input type="text" name="auth_code" value="">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>subject:</label>
|
|
|
- <input type="text" name="subject" value="支付宝条码支付测试">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>total_amount:</label>
|
|
|
- <input type="text" name="total_amount" value="0.01" title="单位为元,精确至小数点后2位。">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>body:</label>
|
|
|
- <input type="text" name="body">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>notify_url:</label>
|
|
|
- <input type="text" name="notify_url" value="http://www.baidu.com/notify/alipay/pay">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="https://docs.open.alipay.com/api_1/alipay.trade.pay" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
-
|
|
|
- <div id="tabs-purchase-5">
|
|
|
- <form class="api-form" asp-controller="Alipay" asp-action="Query" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>out_trade_no:</label>
|
|
|
- <input type="text" name="out_trade_no">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>trade_no:</label>
|
|
|
- <input type="text" name="trade_no">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="https://docs.open.alipay.com/api_1/alipay.trade.query" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
-
|
|
|
- <div id="tabs-purchase-6">
|
|
|
- <form class="api-form" asp-controller="Alipay" asp-action="Refund" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>out_trade_no:</label>
|
|
|
- <input type="text" name="out_trade_no">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>trade_no:</label>
|
|
|
- <input type="text" name="trade_no">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>out_request_no:</label>
|
|
|
- <input type="text" name="out_request_no" value="@DateTime.Now.ToString("yyyyMMddHHmmssfff")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>refund_amount:</label>
|
|
|
- <input type="text" name="refund_amount">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>refund_reason:</label>
|
|
|
- <input type="text" name="refund_reason">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="https://docs.open.alipay.com/api_1/alipay.trade.refund" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
-
|
|
|
- <div id="tabs-purchase-7">
|
|
|
- <form class="api-form" asp-controller="Alipay" asp-action="RefundQuery" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>out_trade_no:</label>
|
|
|
- <input type="text" name="out_trade_no">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>trade_no:</label>
|
|
|
- <input type="text" name="trade_no">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>out_request_no:</label>
|
|
|
- <input type="text" name="out_request_no">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="https://docs.open.alipay.com/api_1/alipay.trade.fastpay.refund.query" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
-
|
|
|
- <div id="tabs-purchase-8">
|
|
|
- <form class="api-form" asp-controller="Alipay" asp-action="Close" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>out_trade_no:</label>
|
|
|
- <input type="text" name="out_trade_no">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>trade_no:</label>
|
|
|
- <input type="text" name="trade_no">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="https://docs.open.alipay.com/api_1/alipay.trade.close" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
-
|
|
|
- <div id="tabs-purchase-9">
|
|
|
- <form class="api-form" asp-controller="Alipay" asp-action="Trans" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>out_biz_no:</label>
|
|
|
- <input type="text" name="out_biz_no" value="@DateTime.Now.ToString("yyyyMMddHHmmssfff")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>payee_type:</label>
|
|
|
- <input type="text" name="payee_type" value="ALIPAY_LOGONID">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>payee_account:</label>
|
|
|
- <input type="text" name="payee_account">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>amount:</label>
|
|
|
- <input type="text" name="amount">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>remark:</label>
|
|
|
- <input type="text" name="remark">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="https://docs.open.alipay.com/api_28/alipay.fund.trans.toaccount.transfer" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
-
|
|
|
- <div id="tabs-purchase-10">
|
|
|
- <form class="api-form" asp-controller="Alipay" asp-action="TransQuery" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>out_biz_no:</label>
|
|
|
- <input type="text" name="out_biz_no">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>order_id:</label>
|
|
|
- <input type="text" name="order_id">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="https://docs.open.alipay.com/api_28/alipay.fund.trans.order.query" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
-
|
|
|
- <div id="tabs-purchase-11">
|
|
|
- <form class="api-form" asp-controller="Alipay" asp-action="BillDownloadurlQuery" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>bill_date:</label>
|
|
|
- <input type="text" name="bill_date">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>bill_type:</label>
|
|
|
- <input type="text" name="bill_type">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="https://docs.open.alipay.com/api_15/alipay.data.dataservice.bill.downloadurl.query" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
-
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- <div id="tabs-api-wechatpay">
|
|
|
- <div id="tabs-purchase-wechatpay">
|
|
|
- <ul>
|
|
|
- <li><a href="#tabs-purchase-1">扫码支付</a></li>
|
|
|
- <li><a href="#tabs-purchase-2">公众号支付</a></li>
|
|
|
- <li><a href="#tabs-purchase-3">APP支付</a></li>
|
|
|
- <li><a href="#tabs-purchase-4">查询订单</a></li>
|
|
|
- <li><a href="#tabs-purchase-5">关闭订单</a></li>
|
|
|
- <li><a href="#tabs-purchase-6">申请退款</a></li>
|
|
|
- <li><a href="#tabs-purchase-7">查询退款</a></li>
|
|
|
- <li><a href="#tabs-purchase-8">下载对账单</a></li>
|
|
|
- <li><a href="#tabs-purchase-9">企业付款到零钱</a></li>
|
|
|
- <li><a href="#tabs-purchase-10">查询付款</a></li>
|
|
|
- <li><a href="#tabs-purchase-11">获取RSA加密公钥</a></li>
|
|
|
- <li><a href="#tabs-purchase-12">企业付款到银行卡</a></li>
|
|
|
- <li><a href="#tabs-purchase-13">查询企业付款银行卡</a></li>
|
|
|
- <li><a href="#tabs-purchase-14">下载资金账单</a></li>
|
|
|
- </ul>
|
|
|
- <div id="tabs-purchase-1">
|
|
|
- <form class="api-form" asp-controller="WeChatPay" asp-action="UnifiedOrder" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>out_trade_no:</label>
|
|
|
- <input type="text" name="out_trade_no" value="@DateTime.Now.ToString("yyyyMMddHHmmssfff")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>body:</label>
|
|
|
- <input type="text" name="body" value="微信扫码支付测试">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>total_fee:</label>
|
|
|
- <input type="text" name="total_fee" value="1" title="单位为分。">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>spbill_create_ip:</label>
|
|
|
- <input type="text" name="spbill_create_ip" value="127.0.0.1">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>notify_url:</label>
|
|
|
- <input type="text" name="notify_url" value="http://www.baidu.com/notify/wechatpay">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>trade_type:</label>
|
|
|
- <input type="text" name="trade_type" value="NATIVE">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="https://pay.weixin.qq.com/wiki/doc/api/native.php?chapter=9_1" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
- <div id="tabs-purchase-2">
|
|
|
- <form class="api-form" asp-controller="WeChatPay" asp-action="UnifiedOrder" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>out_trade_no:</label>
|
|
|
- <input type="text" name="out_trade_no" value="@DateTime.Now.ToString("yyyyMMddHHmmssfff")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>body:</label>
|
|
|
- <input type="text" name="body" value="微信公众号支付支付测试">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>total_fee:</label>
|
|
|
- <input type="text" name="total_fee" value="1" title="单位为分。">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>spbill_create_ip:</label>
|
|
|
- <input type="text" name="spbill_create_ip" value="127.0.0.1">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>notify_url:</label>
|
|
|
- <input type="text" name="notify_url" value="http://www.baidu.com/notify/wechatpay">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>trade_type:</label>
|
|
|
- <input type="text" name="trade_type" value="JSAPI">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>openid:</label>
|
|
|
- <input type="text" name="openid" value="">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="https://pay.weixin.qq.com/wiki/doc/api/jsapi.php?chapter=9_1" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
- <div id="tabs-purchase-3">
|
|
|
- <form class="api-form" asp-controller="WeChatPay" asp-action="AppOrder" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>out_trade_no:</label>
|
|
|
- <input type="text" name="out_trade_no" value="@DateTime.Now.ToString("yyyyMMddHHmmssfff")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>body:</label>
|
|
|
- <input type="text" name="body" value="微信APP支付支付测试">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>total_fee:</label>
|
|
|
- <input type="text" name="total_fee" value="1" title="单位为分。">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>spbill_create_ip:</label>
|
|
|
- <input type="text" name="spbill_create_ip" value="127.0.0.1">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>notify_url:</label>
|
|
|
- <input type="text" name="notify_url" value="http://www.baidu.com/notify/wechatpay">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>trade_type:</label>
|
|
|
- <input type="text" name="trade_type" value="APP">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="https://pay.weixin.qq.com/wiki/doc/api/app/app.php?chapter=9_1" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
- <div id="tabs-purchase-4">
|
|
|
- <form class="api-form" asp-controller="WeChatPay" asp-action="OrderQuery" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>transaction_id:</label>
|
|
|
- <input type="text" name="transaction_id">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>out_trade_no:</label>
|
|
|
- <input type="text" name="out_trade_no">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="https://pay.weixin.qq.com/wiki/doc/api/native.php?chapter=9_2" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
- <div id="tabs-purchase-5">
|
|
|
- <form class="api-form" asp-controller="WeChatPay" asp-action="CloseOrder" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>out_trade_no:</label>
|
|
|
- <input type="text" name="out_trade_no">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="https://pay.weixin.qq.com/wiki/doc/api/native.php?chapter=9_3" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
- <div id="tabs-purchase-6">
|
|
|
- <form class="api-form" asp-controller="WeChatPay" asp-action="Refund" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>out_refund_no:</label>
|
|
|
- <input type="text" name="out_refund_no" value="@DateTime.Now.ToString("yyyyMMddHHmmssfff")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>transaction_id:</label>
|
|
|
- <input type="text" name="transaction_id">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>out_trade_no:</label>
|
|
|
- <input type="text" name="out_trade_no">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>total_fee:</label>
|
|
|
- <input type="text" name="total_fee" value="1" title="单位为分。">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>refund_fee:</label>
|
|
|
- <input type="text" name="refund_fee" value="1" title="单位为分。">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>refund_desc:</label>
|
|
|
- <input type="text" name="refund_desc">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>notify_url:</label>
|
|
|
- <input type="text" name="notify_url" value="http://www.baidu.com/notify/wechatpay/refund">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="https://pay.weixin.qq.com/wiki/doc/api/native.php?chapter=9_4" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
- <div id="tabs-purchase-7">
|
|
|
- <form class="api-form" asp-controller="WeChatPay" asp-action="RefundQuery" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>refund_id:</label>
|
|
|
- <input type="text" name="refund_id">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>out_refund_no:</label>
|
|
|
- <input type="text" name="out_refund_no">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>transaction_id:</label>
|
|
|
- <input type="text" name="transaction_id">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>out_trade_no:</label>
|
|
|
- <input type="text" name="out_trade_no">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="https://pay.weixin.qq.com/wiki/doc/api/native.php?chapter=9_5" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
- <div id="tabs-purchase-8">
|
|
|
- <form class="api-form" asp-controller="WeChatPay" asp-action="DownloadBill" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>bill_date:</label>
|
|
|
- <input type="text" name="bill_date">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>bill_type:</label>
|
|
|
- <input type="text" name="bill_type">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>tar_type:</label>
|
|
|
- <input type="text" name="tar_type">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="https://pay.weixin.qq.com/wiki/doc/api/native.php?chapter=9_6" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
- <div id="tabs-purchase-9">
|
|
|
- <form class="api-form" asp-controller="WeChatPay" asp-action="Transfers" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>partner_trade_no:</label>
|
|
|
- <input type="text" name="partner_trade_no" value="@DateTime.Now.ToString("yyyyMMddHHmmssfff")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>openid:</label>
|
|
|
- <input type="text" name="openid">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>check_name:</label>
|
|
|
- <input type="text" name="check_name" value="NO_CHECK">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>re_user_name:</label>
|
|
|
- <input type="text" name="re_user_name">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>amount:</label>
|
|
|
- <input type="text" name="amount" value="100">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>desc:</label>
|
|
|
- <input type="text" name="desc" value="企业付款测试">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>spbill_create_ip:</label>
|
|
|
- <input type="text" name="spbill_create_ip" value="127.0.0.1">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="https://pay.weixin.qq.com/wiki/doc/api/tools/mch_pay.php?chapter=14_2" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
- <div id="tabs-purchase-10">
|
|
|
- <form class="api-form" asp-controller="WeChatPay" asp-action="GetTransferInfo" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>partner_trade_no:</label>
|
|
|
- <input type="text" name="partner_trade_no">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="https://pay.weixin.qq.com/wiki/doc/api/tools/mch_pay.php?chapter=14_3" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
- <div id="tabs-purchase-11">
|
|
|
- <form class="api-form" asp-controller="WeChatPay" asp-action="GetPublicKey" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="https://pay.weixin.qq.com/wiki/doc/api/tools/mch_pay.php?chapter=24_7&index=4" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
- <div id="tabs-purchase-12">
|
|
|
- <form class="api-form" asp-controller="WeChatPay" asp-action="PayBank" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>partner_trade_no:</label>
|
|
|
- <input type="text" name="partner_trade_no" value="@DateTime.Now.ToString("yyyyMMddHHmmssfff")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>bank_no:</label>
|
|
|
- <input type="text" name="bank_no">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>true_name:</label>
|
|
|
- <input type="text" name="true_name">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>bank_code:</label>
|
|
|
- <input type="text" name="bank_code">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>amount:</label>
|
|
|
- <input type="text" name="amount" value="1">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>desc:</label>
|
|
|
- <input type="text" name="desc" value="企业付款到银行卡测试">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="https://pay.weixin.qq.com/wiki/doc/api/tools/mch_pay.php?chapter=24_2" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
- <div id="tabs-purchase-13">
|
|
|
- <form class="api-form" asp-controller="WeChatPay" asp-action="QueryBank" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>partner_trade_no:</label>
|
|
|
- <input type="text" name="partner_trade_no">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="https://pay.weixin.qq.com/wiki/doc/api/tools/mch_pay.php?chapter=24_3" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
- <div id="tabs-purchase-14">
|
|
|
- <form class="api-form" asp-controller="WeChatPay" asp-action="DownloadFundFlow" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>bill_date:</label>
|
|
|
- <input type="text" name="bill_date">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>account_type:</label>
|
|
|
- <input type="text" name="account_type">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>tar_type:</label>
|
|
|
- <input type="text" name="tar_type">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="https://pay.weixin.qq.com/wiki/doc/api/micropay.php?chapter=9_18&index=7" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
-
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- <div id="tabs-api-qpay">
|
|
|
- <div id="tabs-purchase-qpay">
|
|
|
- <ul>
|
|
|
- <li><a href="#tabs-purchase-1">扫码支付</a></li>
|
|
|
- <li><a href="#tabs-purchase-2">查询订单</a></li>
|
|
|
- <li><a href="#tabs-purchase-3">关闭订单</a></li>
|
|
|
- <li><a href="#tabs-purchase-4">申请退款</a></li>
|
|
|
- <li><a href="#tabs-purchase-5">查询退款</a></li>
|
|
|
- </ul>
|
|
|
- <div id="tabs-purchase-1">
|
|
|
- <form class="api-form" asp-controller="QPay" asp-action="UnifiedOrder" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>out_trade_no:</label>
|
|
|
- <input type="text" name="out_trade_no" value="@DateTime.Now.ToString("yyyyMMddHHmmssfff")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>body:</label>
|
|
|
- <input type="text" name="body" value="QQ钱包扫码支付测试">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>total_fee:</label>
|
|
|
- <input type="text" name="total_fee" value="1" title="单位为分。">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>spbill_create_ip:</label>
|
|
|
- <input type="text" name="spbill_create_ip" value="127.0.0.1">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>notify_url:</label>
|
|
|
- <input type="text" name="notify_url" value="http://www.baidu.com/notify/qpay">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>trade_type:</label>
|
|
|
- <input type="text" name="trade_type" value="NATIVE">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="https://qpay.qq.com/qpaywiki/showdocument.php?pid=38&docid=58" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
- <div id="tabs-purchase-2">
|
|
|
- <form class="api-form" asp-controller="QPay" asp-action="OrderQuery" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>transaction_id:</label>
|
|
|
- <input type="text" name="transaction_id">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>out_trade_no:</label>
|
|
|
- <input type="text" name="out_trade_no">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="https://qpay.qq.com/qpaywiki/showdocument.php?pid=38&docid=60" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
- <div id="tabs-purchase-3">
|
|
|
- <form class="api-form" asp-controller="QPay" asp-action="CloseOrder" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>out_trade_no:</label>
|
|
|
- <input type="text" name="out_trade_no">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="https://qpay.qq.com/qpaywiki/showdocument.php?pid=38&docid=61" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
- <div id="tabs-purchase-4">
|
|
|
- <form class="api-form" asp-controller="QPay" asp-action="Refund" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>out_refund_no:</label>
|
|
|
- <input type="text" name="out_refund_no" value="@DateTime.Now.ToString("yyyyMMddHHmmssfff")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>QQtransaction_id:</label>
|
|
|
- <input type="text" name="transaction_id">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>out_trade_no:</label>
|
|
|
- <input type="text" name="out_trade_no">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>refund_fee:</label>
|
|
|
- <input type="text" name="refund_fee" value="1" title="单位为分。">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>op_user_idID:</label>
|
|
|
- <input type="text" name="op_user_id">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>op_user_passwd:</label>
|
|
|
- <input type="text" name="op_user_passwd">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="https://qpay.qq.com/qpaywiki/showdocument.php?pid=38&docid=62" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
- <div id="tabs-purchase-5">
|
|
|
- <form class="api-form" asp-controller="QPay" asp-action="RefundQuery" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>refund_id:</label>
|
|
|
- <input type="text" name="refund_id">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>out_refund_no:</label>
|
|
|
- <input type="text" name="out_refund_no">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>transaction_id:</label>
|
|
|
- <input type="text" name="transaction_id">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>out_trade_no:</label>
|
|
|
- <input type="text" name="out_trade_no">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="https://qpay.qq.com/qpaywiki/showdocument.php?pid=38&docid=63" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- <div id="tabs-api-jdpay">
|
|
|
- <div id="tabs-purchase-jdpay">
|
|
|
- <ul>
|
|
|
- <li><a href="#tabs-purchase-1">电脑网站支付</a></li>
|
|
|
- <li><a href="#tabs-purchase-2">手机网站支付</a></li>
|
|
|
- <li><a href="#tabs-purchase-3">扫码支付</a></li>
|
|
|
- <li><a href="#tabs-purchase-4">交易查询</a></li>
|
|
|
- <li><a href="#tabs-purchase-5">退款申请</a></li>
|
|
|
- <li><a href="#tabs-purchase-6">退款查询</a></li>
|
|
|
- </ul>
|
|
|
- <div id="tabs-purchase-1">
|
|
|
- <form class="api-form" asp-controller="JDPay" asp-action="SaveOrderPC" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>tradeNum:</label>
|
|
|
- <input type="text" name="tradeNum" value="@DateTime.Now.ToString("yyyyMMddHHmmssfff")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>tradeName:</label>
|
|
|
- <input type="text" name="tradeName" value="京东电脑网站支付测试">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>tradeDesc:</label>
|
|
|
- <input type="text" name="tradeDesc" value="交易描述">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>tradeTime:</label>
|
|
|
- <input type="text" name="tradeTime" value="@DateTime.Now.ToString("yyyyMMddHHmmss")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>amount:</label>
|
|
|
- <input type="text" name="amount" value="1">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>orderType:</label>
|
|
|
- <input type="text" name="orderType" value="1">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>currency:</label>
|
|
|
- <input type="text" name="currency" value="CNY">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>note:</label>
|
|
|
- <input type="text" name="note" value="备注">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>callbackUrl:</label>
|
|
|
- <input type="text" name="callbackUrl" value="http://www.baidu.com/jdpay/return">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>notifyUrl:</label>
|
|
|
- <input type="text" name="notifyUrl" value="http://www.baidu.com/notify/jdpay">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>tradeType:</label>
|
|
|
- <input type="text" name="tradeType" value="">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="http://payapi.jd.com/docList.html" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
-
|
|
|
- <div id="tabs-purchase-2">
|
|
|
- <form class="api-form" asp-controller="JDPay" asp-action="SaveOrderH5" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>tradeNum:</label>
|
|
|
- <input type="text" name="tradeNum" value="@DateTime.Now.ToString("yyyyMMddHHmmssfff")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>tradeName:</label>
|
|
|
- <input type="text" name="tradeName" value="京东手机网站支付测试">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>tradeDesc:</label>
|
|
|
- <input type="text" name="tradeDesc" value="交易描述">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>tradeTime:</label>
|
|
|
- <input type="text" name="tradeTime" value="@DateTime.Now.ToString("yyyyMMddHHmmss")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>amount:</label>
|
|
|
- <input type="text" name="amount" value="1">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>orderType:</label>
|
|
|
- <input type="text" name="orderType" value="1">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>currency:</label>
|
|
|
- <input type="text" name="currency" value="CNY">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>note:</label>
|
|
|
- <input type="text" name="note" value="备注">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>callbackUrl:</label>
|
|
|
- <input type="text" name="callbackUrl" value="http://www.baidu.com/jdpay/return">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>notifyUrl:</label>
|
|
|
- <input type="text" name="notifyUrl" value="http://www.baidu.com/notify/jdpay">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>tradeType:</label>
|
|
|
- <input type="text" name="tradeType" value="">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="http://payapi.jd.com/docList.html" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
-
|
|
|
- <div id="tabs-purchase-3">
|
|
|
- <form class="api-form" asp-controller="JDPay" asp-action="Uniorder" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>tradeNum:</label>
|
|
|
- <input type="text" name="tradeNum" value="@DateTime.Now.ToString("yyyyMMddHHmmssfff")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>tradeName:</label>
|
|
|
- <input type="text" name="tradeName" value="京东扫码支付测试">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>tradeDesc:</label>
|
|
|
- <input type="text" name="tradeDesc" value="交易描述">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>tradeTime:</label>
|
|
|
- <input type="text" name="tradeTime" value="@DateTime.Now.ToString("yyyyMMddHHmmss")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>amount:</label>
|
|
|
- <input type="text" name="amount" value="1">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>orderType:</label>
|
|
|
- <input type="text" name="orderType" value="1">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>currency:</label>
|
|
|
- <input type="text" name="currency" value="CNY">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>note:</label>
|
|
|
- <input type="text" name="note" value="备注">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>notifyUrl:</label>
|
|
|
- <input type="text" name="notifyUrl" value="http://www.baidu.com/notify/jdpay">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>tradeType:</label>
|
|
|
- <input type="text" name="tradeType" value="QR">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="http://payapi.jd.com/docList.html" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
-
|
|
|
- <div id="tabs-purchase-4">
|
|
|
- <form class="api-form" asp-controller="JDPay" asp-action="OrderQuery" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>tradeNum:</label>
|
|
|
- <input type="text" name="tradeNum">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>oTradeNum:</label>
|
|
|
- <input type="text" name="oTradeNum">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="http://payapi.jd.com/docList.html" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
-
|
|
|
- <div id="tabs-purchase-5">
|
|
|
- <form class="api-form" asp-controller="JDPay" asp-action="Refund" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>tradeNum:</label>
|
|
|
- <input type="text" name="tradeNum" value="@DateTime.Now.ToString("yyyyMMddHHmmssfff")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>oTradeNum:</label>
|
|
|
- <input type="text" name="oTradeNum">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>amount:</label>
|
|
|
- <input type="text" name="amount" value="1">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>currency:</label>
|
|
|
- <input type="text" name="currency" value="CNY">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>notify_url:</label>
|
|
|
- <input type="text" name="notifyUrl" value="http://www.baidu.com/notify/jdpay">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="http://payapi.jd.com/docList.html" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
-
|
|
|
- <div id="tabs-purchase-6">
|
|
|
- <form class="api-form" asp-controller="JDPay" asp-action="RefundQuery" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>tradeNum:</label>
|
|
|
- <input type="text" name="tradeNum">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>oTradeNum:</label>
|
|
|
- <input type="text" name="oTradeNum">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="http://payapi.jd.com/docList.html" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
-
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- <div id="tabs-api-unionpay">
|
|
|
- <div id="tabs-purchase-unionpay">
|
|
|
- <ul>
|
|
|
- <li><a>二维码支付产品</a></li>
|
|
|
- <li><a href="#tabs-purchase-1">二维码消费(被扫)</a></li>
|
|
|
- <li><a href="#tabs-purchase-2">申请二维码(主扫)</a></li>
|
|
|
- <li><a href="#tabs-purchase-3">消费撤销</a></li>
|
|
|
- <li><a href="#tabs-purchase-4">退货</a></li>
|
|
|
- <li><a href="#tabs-purchase-5">交易状态查询</a></li>
|
|
|
- <li><a href="#tabs-purchase-6">对账文件下载</a></li>
|
|
|
- <li><a>网关支付产品</a></li>
|
|
|
- <li><a href="#tabs-purchase-10">跳转网关页面支付</a></li>
|
|
|
- <li><a href="#tabs-purchase-11">交易状态查询</a></li>
|
|
|
- <li><a href="#tabs-purchase-12">消费撤销</a></li>
|
|
|
- <li><a href="#tabs-purchase-13">退货</a></li>
|
|
|
- <li><a href="#tabs-purchase-14">对账文件下载</a></li>
|
|
|
- <li><a>网关支付产品-预授权</a></li>
|
|
|
- <li><a href="#tabs-purchase-20">跳转网关页面预授权</a></li>
|
|
|
- <li><a href="#tabs-purchase-21">预授权撤销</a></li>
|
|
|
- <li><a href="#tabs-purchase-22">预授权完成</a></li>
|
|
|
- <li><a href="#tabs-purchase-23">预授权完成撤销</a></li>
|
|
|
- </ul>
|
|
|
- <div id="tabs-purchase-1">
|
|
|
- <form class="api-form" asp-controller="UnionPay" asp-action="AppConsume" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>orderId:</label>
|
|
|
- <input type="text" name="orderId" value="@DateTime.Now.ToString("yyyyMMddHHmmssfff")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>qrNo:</label>
|
|
|
- <input type="text" name="qrNo" value="">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>txnTime:</label>
|
|
|
- <input type="text" name="txnTime" value="@DateTime.Now.ToString("yyyyMMddHHmmss")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>txnAmt:</label>
|
|
|
- <input type="text" name="txnAmt" value="1" title="单位为分。">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>currencyCode:</label>
|
|
|
- <input type="text" name="currencyCode" value="156">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>backUrl:</label>
|
|
|
- <input type="text" name="backUrl" value="http://www.baidu.com/notify/unionpay/appconsume">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="https://open.unionpay.com/ajweb/help/qrcodeFormPage" target="_blank">二维码仿真</a>
|
|
|
- <br />
|
|
|
- <a href="https://open.unionpay.com/ajweb/product/newProApiShow?proId=89&apiId=55" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
- <div id="tabs-purchase-2">
|
|
|
- <form class="api-form" asp-controller="UnionPay" asp-action="ApplyQrCode" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>orderId:</label>
|
|
|
- <input type="text" name="orderId" value="@DateTime.Now.ToString("yyyyMMddHHmmssfff")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>txnTime:</label>
|
|
|
- <input type="text" name="txnTime" value="@DateTime.Now.ToString("yyyyMMddHHmmss")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>txnAmt:</label>
|
|
|
- <input type="text" name="txnAmt" value="1" title="单位为分。">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>currencyCode:</label>
|
|
|
- <input type="text" name="currencyCode" value="156">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>backUrl:</label>
|
|
|
- <input type="text" name="backUrl" value="http://www.baidu.com/notify/unionpay/applyqrcode">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="https://open.unionpay.com/ajweb/help/qrcodeFormPage" target="_blank">二维码仿真</a>
|
|
|
- <br />
|
|
|
- <a href="https://open.unionpay.com/ajweb/product/newProApiShow?proId=89&apiId=57" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
- <div id="tabs-purchase-3">
|
|
|
- <form class="api-form" asp-controller="UnionPay" asp-action="PurchaseUndo" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>orderId:</label>
|
|
|
- <input type="text" name="orderId" value="@DateTime.Now.ToString("yyyyMMddHHmmssfff")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>txnTime:</label>
|
|
|
- <input type="text" name="txnTime" value="@DateTime.Now.ToString("yyyyMMddHHmmss")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>txnAmt:</label>
|
|
|
- <input type="text" name="txnAmt" value="1" title="单位为分。">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>origQryId:</label>
|
|
|
- <input type="text" name="origQryId" value="" />
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>origOrderId:</label>
|
|
|
- <input type="text" name="origOrderId" value="" />
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>origTxnTime:</label>
|
|
|
- <input type="text" name="origTxnTime" />
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>backUrl:</label>
|
|
|
- <input type="text" name="backUrl" value="http://www.baidu.com/notify/unionpay/purchaseundo">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="https://open.unionpay.com/ajweb/product/newProApiShow?proId=89&apiId=58" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
- <div id="tabs-purchase-4">
|
|
|
- <form class="api-form" asp-controller="UnionPay" asp-action="Refund" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>orderId:</label>
|
|
|
- <input type="text" name="orderId" value="@DateTime.Now.ToString("yyyyMMddHHmmssfff")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>txnTime:</label>
|
|
|
- <input type="text" name="txnTime" value="@DateTime.Now.ToString("yyyyMMddHHmmss")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>txnAmt:</label>
|
|
|
- <input type="text" name="txnAmt" value="1" title="单位为分。">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>origQryId:</label>
|
|
|
- <input type="text" name="origQryId" value="" />
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>origOrderId:</label>
|
|
|
- <input type="text" name="origOrderId" value="" />
|
|
|
- </p>
|
|
|
-
|
|
|
- <p>
|
|
|
- <label>origTxnTime:</label>
|
|
|
- <input type="text" name="origTxnTime" />
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>backUrl:</label>
|
|
|
- <input type="text" name="backUrl" value="http://www.baidu.com/notify/unionpay/refund">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="https://open.unionpay.com/ajweb/product/newProApiShow?proId=89&apiId=59" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
- <div id="tabs-purchase-5">
|
|
|
- <form class="api-form" asp-controller="UnionPay" asp-action="Query563" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>orderId:</label>
|
|
|
- <input type="text" name="orderId" value="">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>txnTime:</label>
|
|
|
- <input type="text" name="txnTime" value="">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="https://open.unionpay.com/ajweb/product/newProApiShow?proId=89&apiId=60" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
- <div id="tabs-purchase-6">
|
|
|
- <form class="api-form" asp-controller="UnionPay" asp-action="FileTransfer057" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>fileType:</label>
|
|
|
- <input type="text" name="fileType" value="00">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>txnTime:</label>
|
|
|
- <input type="text" name="txnTime" value="@DateTime.Now.ToString("yyyyMMddHHmmss")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>settleDate:</label>
|
|
|
- <input type="text" name="settleDate" value="0119">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="https://open.unionpay.com/ajweb/product/newProApiShow?proId=89&apiId=61" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
- <div id="tabs-purchase-10">
|
|
|
- <form class="api-form" asp-controller="UnionPay" asp-action="FrontConsume62" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>orderId:</label>
|
|
|
- <input type="text" name="orderId" value="@DateTime.Now.ToString("yyyyMMddHHmmssfff")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>txnTime:</label>
|
|
|
- <input type="text" name="txnTime" value="@DateTime.Now.ToString("yyyyMMddHHmmss")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>txnAmt:</label>
|
|
|
- <input type="text" name="txnAmt" value="1" title="单位为分。">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>currencyCode:</label>
|
|
|
- <input type="text" name="currencyCode" value="156">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>payTimeout:</label>
|
|
|
- <input type="text" name="payTimeout" value="@DateTime.Now.AddMinutes(15).ToString("yyyyMMddHHmmss")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>frontUrl:</label>
|
|
|
- <input type="text" name="frontUrl" value="http://www.baidu.com/unionpay/frontconsume62return">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>backUrl:</label>
|
|
|
- <input type="text" name="backUrl" value="http://www.baidu.com/notify/unionpay/frontconsume62">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="https://open.unionpay.com/ajweb/product/newProApiShow?proId=1&apiId=63" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
- <div id="tabs-purchase-11">
|
|
|
- <form class="api-form" asp-controller="UnionPay" asp-action="Query65" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>orderId:</label>
|
|
|
- <input type="text" name="orderId" value="">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>txnTime:</label>
|
|
|
- <input type="text" name="txnTime" value="">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="https://open.unionpay.com/ajweb/product/newProApiShow?proId=1&apiId=66" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
- <div id="tabs-purchase-12">
|
|
|
- <form class="api-form" asp-controller="UnionPay" asp-action="ConsumeUndo63" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>orderId:</label>
|
|
|
- <input type="text" name="orderId" value="@DateTime.Now.ToString("yyyyMMddHHmmssfff")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>txnTime:</label>
|
|
|
- <input type="text" name="txnTime" value="@DateTime.Now.ToString("yyyyMMddHHmmss")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>txnAmt:</label>
|
|
|
- <input type="text" name="txnAmt" value="1" title="单位为分。">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>origQryId:</label>
|
|
|
- <input type="text" name="origQryId" value="" />
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>backUrl:</label>
|
|
|
- <input type="text" name="backUrl" value="http://www.baidu.com/notify/unionpay/consumeundo63">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="https://open.unionpay.com/ajweb/product/newProApiShow?proId=1&apiId=64" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
- <div id="tabs-purchase-13">
|
|
|
- <form class="api-form" asp-controller="UnionPay" asp-action="Refund64" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>orderId:</label>
|
|
|
- <input type="text" name="orderId" value="@DateTime.Now.ToString("yyyyMMddHHmmssfff")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>txnTime:</label>
|
|
|
- <input type="text" name="txnTime" value="@DateTime.Now.ToString("yyyyMMddHHmmss")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>txnAmt:</label>
|
|
|
- <input type="text" name="txnAmt" value="1" title="单位为分。">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>origQryId:</label>
|
|
|
- <input type="text" name="origQryId" value="" />
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>backUrl:</label>
|
|
|
- <input type="text" name="backUrl" value="http://www.baidu.com/notify/unionpay/refund64">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="https://open.unionpay.com/ajweb/product/newProApiShow?proId=1&apiId=65" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
- <div id="tabs-purchase-14">
|
|
|
- <form class="api-form" asp-controller="UnionPay" asp-action="FileTransfer66" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>fileType:</label>
|
|
|
- <input type="text" name="fileType" value="00">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>txnTime:</label>
|
|
|
- <input type="text" name="txnTime" value="@DateTime.Now.ToString("yyyyMMddHHmmss")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>settleDate:</label>
|
|
|
- <input type="text" name="settleDate" value="0119">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="https://open.unionpay.com/ajweb/product/newProApiShow?proId=89&apiId=61" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
- <div id="tabs-purchase-20">
|
|
|
- <form class="api-form" asp-controller="UnionPay" asp-action="AuthDealFront671" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>orderId:</label>
|
|
|
- <input type="text" name="orderId" value="@DateTime.Now.ToString("yyyyMMddHHmmssfff")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>txnTime:</label>
|
|
|
- <input type="text" name="txnTime" value="@DateTime.Now.ToString("yyyyMMddHHmmss")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>txnAmt:</label>
|
|
|
- <input type="text" name="txnAmt" value="1" title="单位为分。">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>currencyCode:</label>
|
|
|
- <input type="text" name="currencyCode" value="156">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>payTimeout:</label>
|
|
|
- <input type="text" name="payTimeout" value="@DateTime.Now.AddMinutes(15).ToString("yyyyMMddHHmmss")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>frontUrl:</label>
|
|
|
- <input type="text" name="frontUrl" value="http://www.baidu.com/unionpay/authdealfront671return">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>backUrl:</label>
|
|
|
- <input type="text" name="backUrl" value="http://www.baidu.com/notify/unionpay/authdealfront671">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="https://open.unionpay.com/ajweb/product/newProApiShow?proId=1&apiId=68" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
- <div id="tabs-purchase-21">
|
|
|
- <form class="api-form" asp-controller="UnionPay" asp-action="AuthUndo672" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>orderId:</label>
|
|
|
- <input type="text" name="orderId" value="@DateTime.Now.ToString("yyyyMMddHHmmssfff")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>txnTime:</label>
|
|
|
- <input type="text" name="txnTime" value="@DateTime.Now.ToString("yyyyMMddHHmmss")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>txnAmt:</label>
|
|
|
- <input type="text" name="txnAmt" value="1" title="单位为分。">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>origQryId:</label>
|
|
|
- <input type="text" name="origQryId" value="" />
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>backUrl:</label>
|
|
|
- <input type="text" name="backUrl" value="http://www.baidu.com/notify/unionpay/authundo672">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="https://open.unionpay.com/ajweb/product/newProApiShow?proId=1&apiId=69" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
- <div id="tabs-purchase-22">
|
|
|
- <form class="api-form" asp-controller="UnionPay" asp-action="AuthFinish673" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>orderId:</label>
|
|
|
- <input type="text" name="orderId" value="@DateTime.Now.ToString("yyyyMMddHHmmssfff")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>txnTime:</label>
|
|
|
- <input type="text" name="txnTime" value="@DateTime.Now.ToString("yyyyMMddHHmmss")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>txnAmt:</label>
|
|
|
- <input type="text" name="txnAmt" value="1" title="单位为分。">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>origQryId:</label>
|
|
|
- <input type="text" name="origQryId" value="" />
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>backUrl:</label>
|
|
|
- <input type="text" name="backUrl" value="http://www.baidu.com/notify/unionpay/authfinish673">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="https://open.unionpay.com/ajweb/product/newProApiShow?proId=1&apiId=70" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
- <div id="tabs-purchase-23">
|
|
|
- <form class="api-form" asp-controller="UnionPay" asp-action="AuthFinishUndo674" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>orderId:</label>
|
|
|
- <input type="text" name="orderId" value="@DateTime.Now.ToString("yyyyMMddHHmmssfff")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>txnTime:</label>
|
|
|
- <input type="text" name="txnTime" value="@DateTime.Now.ToString("yyyyMMddHHmmss")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>txnAmt:</label>
|
|
|
- <input type="text" name="txnAmt" value="1" title="单位为分。">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>origQryId:</label>
|
|
|
- <input type="text" name="origQryId" value="" />
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>backUrl:</label>
|
|
|
- <input type="text" name="backUrl" value="http://www.baidu.com/notify/unionpay/authfinishundo674">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- <hr />
|
|
|
- <p class="faq">
|
|
|
- <a href="https://open.unionpay.com/ajweb/product/newProApiShow?proId=1&apiId=71" target="_blank">* 查看接口 请求参数、响应参数</a>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- <div id="tabs-api-LianLianPay">
|
|
|
- <div id="tabs-purchase-LianLianPay">
|
|
|
- <ul>
|
|
|
- <li><a href="#tabs-purchase-1">快捷支付</a></li>
|
|
|
- <li><a href="#tabs-purchase-2">网银支付</a></li>
|
|
|
- <li><a href="#tabs-purchase-3">认证支付</a></li>
|
|
|
- <li><a href="#tabs-purchase-4">订单查询</a></li>
|
|
|
- <li><a href="#tabs-purchase-5">银行卡卡bin查询</a></li>
|
|
|
- <li><a href="#tabs-purchase-6">用户签约信息查询</a></li>
|
|
|
- <li><a href="#tabs-purchase-7">银行卡解约</a></li>
|
|
|
- <li><a href="#tabs-purchase-8">银行支持查询</a></li>
|
|
|
- <li><a href="#tabs-purchase-9">更换手机号申请</a></li>
|
|
|
- <li><a href="#tabs-purchase-10">更换手机号验证</a></li>
|
|
|
- <li><a href="#tabs-purchase-11">退款</a></li>
|
|
|
- <li><a href="#tabs-purchase-12">退款查询</a></li>
|
|
|
- </ul>
|
|
|
- <div id="tabs-purchase-1">
|
|
|
- <form class="api-form" asp-controller="LianLianPay" asp-action="QuickPay" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>no_order:</label>
|
|
|
- <input type="text" name="no_order" value="@DateTime.Now.ToString("yyyyMMddHHmmss")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>dt_order:</label>
|
|
|
- <input type="text" name="dt_order" value="@DateTime.Now.ToString("yyyyMMddHHmmss")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>money_order:</label>
|
|
|
- <input type="text" name="money_order" value="0.01">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>name_goods:</label>
|
|
|
- <input type="text" name="name_goods" value="连连支付快捷支付测试">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>user_id:</label>
|
|
|
- <input type="text" name="user_id" value="1080088">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>notify_url:</label>
|
|
|
- <input type="text" name="notify_url" value="http://www.baidu.com/notify/LianLianPay/quickpay">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>url_return:</label>
|
|
|
- <input type="text" name="url_return" value="http://www.baidu.com/LianLianPay/quickpayreturn">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>bank_code:</label>
|
|
|
- <input type="text" name="bank_code" value="">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>pay_type:</label>
|
|
|
- <input type="text" name="pay_type" value="2">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>no_agree:</label>
|
|
|
- <input type="text" name="no_agree" value="">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>risk_item:</label>
|
|
|
- <input type="text" name="risk_item" value='{"frms_ware_category":"1999","user_info_full_name":"你好"}'>
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>id_type:</label>
|
|
|
- <input type="text" name="id_type" value="0">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>id_no:</label>
|
|
|
- <input type="text" name="id_no" value="">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>acct_name:</label>
|
|
|
- <input type="text" name="acct_name" value="">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>card_no:</label>
|
|
|
- <input type="text" name="card_no" value="">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- </div>
|
|
|
- <div id="tabs-purchase-2">
|
|
|
- <form class="api-form" asp-controller="LianLianPay" asp-action="BankPay" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>no_order:</label>
|
|
|
- <input type="text" name="no_order" value="@DateTime.Now.ToString("yyyyMMddHHmmss")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>dt_order:</label>
|
|
|
- <input type="text" name="dt_order" value="@DateTime.Now.ToString("yyyyMMddHHmmss")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>money_order:</label>
|
|
|
- <input type="text" name="money_order" value="0.01">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>name_goods:</label>
|
|
|
- <input type="text" name="name_goods" value="连连支付网银支付测试">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>user_id:</label>
|
|
|
- <input type="text" name="user_id" value="1080088">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>notify_url:</label>
|
|
|
- <input type="text" name="notify_url" value="http://www.baidu.com/notify/LianLianPay/bankpay">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>url_return:</label>
|
|
|
- <input type="text" name="url_return" value="http://www.baidu.com/LianLianPay/bankpayreturn">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>risk_item:</label>
|
|
|
- <input type="text" name="risk_item" value='{"frms_ware_category":"1999","user_info_full_name":"你好"}'>
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- </div>
|
|
|
- <div id="tabs-purchase-3">
|
|
|
- <form class="api-form" asp-controller="LianLianPay" asp-action="AuthPay" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>no_order:</label>
|
|
|
- <input type="text" name="no_order" value="@DateTime.Now.ToString("yyyyMMddHHmmss")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>dt_order:</label>
|
|
|
- <input type="text" name="dt_order" value="@DateTime.Now.ToString("yyyyMMddHHmmss")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>money_order:</label>
|
|
|
- <input type="text" name="money_order" value="0.01">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>name_goods:</label>
|
|
|
- <input type="text" name="name_goods" value="连连支付认证支付测试">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>user_id:</label>
|
|
|
- <input type="text" name="user_id" value="1080088">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>notify_url:</label>
|
|
|
- <input type="text" name="notify_url" value="http://www.baidu.com/notify/LianLianPay/authpay">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>url_return:</label>
|
|
|
- <input type="text" name="url_return" value="http://www.baidu.com/LianLianPay/authpayreturn">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>bank_code:</label>
|
|
|
- <input type="text" name="bank_code" value="">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>pay_type:</label>
|
|
|
- <input type="text" name="pay_type" value="D">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>no_agree:</label>
|
|
|
- <input type="text" name="no_agree" value="">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>risk_item:</label>
|
|
|
- <input type="text" name="risk_item" value='{"frms_ware_category":"1999","user_info_full_name":"你好"}'>
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>id_type:</label>
|
|
|
- <input type="text" name="id_type" value="0">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>id_no:</label>
|
|
|
- <input type="text" name="id_no" value="">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>acct_name:</label>
|
|
|
- <input type="text" name="acct_name" value="">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>card_no:</label>
|
|
|
- <input type="text" name="card_no" value="">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- </div>
|
|
|
- <div id="tabs-purchase-4">
|
|
|
- <form class="api-form" asp-controller="LianLianPay" asp-action="OrderQuery" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>no_order:</label>
|
|
|
- <input type="text" name="no_order" value="@DateTime.Now.ToString("yyyyMMddHHmmss")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>dt_order:</label>
|
|
|
- <input type="text" name="dt_order" value="@DateTime.Now.ToString("yyyyMMddHHmmss")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>oid_paybill:</label>
|
|
|
- <input type="text" name="oid_paybill" value="">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- </div>
|
|
|
- <div id="tabs-purchase-5">
|
|
|
- <form class="api-form" asp-controller="LianLianPay" asp-action="QueryBankCarBin" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>card_no:</label>
|
|
|
- <input type="text" name="card_no" value="">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- </div>
|
|
|
- <div id="tabs-purchase-6">
|
|
|
- <form class="api-form" asp-controller="LianLianPay" asp-action="QueryBankCarBindList" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>user_id:</label>
|
|
|
- <input type="text" name="user_id" value="">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>offset:</label>
|
|
|
- <input type="text" name="offset" value="">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- </div>
|
|
|
- <div id="tabs-purchase-7">
|
|
|
- <form class="api-form" asp-controller="LianLianPay" asp-action="BankCardUnbind" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>user_id:</label>
|
|
|
- <input type="text" name="user_id" value="">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>pay_type:</label>
|
|
|
- <input type="text" name="pay_type" value="">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>no_agree:</label>
|
|
|
- <input type="text" name="no_agree" value="">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- </div>
|
|
|
- <div id="tabs-purchase-8">
|
|
|
- <form class="api-form" asp-controller="LianLianPay" asp-action="SupportBankQuery" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>bank_code:</label>
|
|
|
- <input type="text" name="bank_code" value="">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>card_type:</label>
|
|
|
- <input type="text" name="card_type" value="">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>product_type:</label>
|
|
|
- <input type="text" name="product_type" value="">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>pay_chnl:</label>
|
|
|
- <input type="text" name="pay_chnl" value="">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- </div>
|
|
|
- <div id="tabs-purchase-9">
|
|
|
- <form class="api-form" asp-controller="LianLianPay" asp-action="ModifyPhone" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>user_id:</label>
|
|
|
- <input type="text" name="user_id" value="">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>no_agree:</label>
|
|
|
- <input type="text" name="no_agree" value="">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>pay_type:</label>
|
|
|
- <input type="text" name="pay_type" value="">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>card_no:</label>
|
|
|
- <input type="text" name="card_no" value="">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>bind_mob:</label>
|
|
|
- <input type="text" name="bind_mob" value="">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- </div>
|
|
|
- <div id="tabs-purchase-10">
|
|
|
- <form class="api-form" asp-controller="LianLianPay" asp-action="ModifyPhoneCheck" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>user_id:</label>
|
|
|
- <input type="text" name="user_id" value="">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>token:</label>
|
|
|
- <input type="text" name="token" value="">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>verify_code:</label>
|
|
|
- <input type="text" name="verify_code" value="">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- </div>
|
|
|
- <div id="tabs-purchase-11">
|
|
|
- <form class="api-form" asp-controller="LianLianPay" asp-action="Refund" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>no_refund:</label>
|
|
|
- <input type="text" name="no_refund" value="@DateTime.Now.ToString("yyyyMMddHHmmss")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>dt_refund:</label>
|
|
|
- <input type="text" name="dt_refund" value="@DateTime.Now.ToString("yyyyMMddHHmmss")">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>money_refund:</label>
|
|
|
- <input type="text" name="money_refund" value="0.01">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>no_order:</label>
|
|
|
- <input type="text" name="no_order" value="">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>dt_order:</label>
|
|
|
- <input type="text" name="dt_order" value="">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>oid_paybill:</label>
|
|
|
- <input type="text" name="oid_paybill" value="">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>notify_url:</label>
|
|
|
- <input type="text" name="notify_url" value="http://www.baidu.com/notify/LianLianPay/refund">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- </div>
|
|
|
- <div id="tabs-purchase-12">
|
|
|
- <form class="api-form" asp-controller="LianLianPay" asp-action="RefundQuery" method="post" target="_blank">
|
|
|
- <p>
|
|
|
- <label>no_refund:</label>
|
|
|
- <input type="text" name="no_refund" value="">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>dt_refund:</label>
|
|
|
- <input type="text" name="dt_refund" value="">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label>oid_refundno:</label>
|
|
|
- <input type="text" name="oid_refundno" value="">
|
|
|
- </p>
|
|
|
- <p>
|
|
|
- <label> </label>
|
|
|
- <input type="submit" class="button" value="提交">
|
|
|
- </p>
|
|
|
- </form>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
-</div>
|
|
|
-
|
|
|
-@section Scripts {
|
|
|
- <script src="~/demo.js" asp-append-version="true"></script>
|
|
|
-}
|
|
|
-@section Styles {
|
|
|
- <link rel="stylesheet" href="~/demo.css" asp-append-version="true">
|
|
|
-}
|