1234567891011121314151617181920212223242526 |
- <?php
- /**
- * Created by PhpStorm.
- * User: Bear
- * Date: 2019/4/9
- * Time: 下午7:40
- */
- namespace app\clientweb\controller;
- use app\common\controller\ClientWeb;
- use app\common\library\Ua;
- use app\main\service\AdminService;
- use app\main\service\FinancialService;
- use app\main\service\WebUserService;
- use think\Config;
- use think\Cookie;
- class Wxpay extends ClientWeb
- {
- public function index()
- {
- echo "<h1 style='font-size: 100px'><a href='http://payh5.dev.kpread.com/clientwebapi/wxpay/pay?id=39&category=test'>微信充值</a></h1>";
- echo "<h1 style='font-size: 100px'><a href='http://payh5.dev.kpread.com/clientwebapi/alipay/pay?id=39&category=test'>支付宝充值</a></h1>";
- }
- }
|