ソースを参照

新增了许多功能呢

张纪伟 5 年 前
コミット
989712924c

BIN
1.0.0.20191101_full.zip


+ 35 - 0
application/admin/controller/Equity.php

@@ -0,0 +1,35 @@
+<?php
+
+namespace app\admin\controller;
+
+use app\common\controller\Backend;
+
+/**
+ * 会员权益列管理
+ *
+ * @icon fa fa-circle-o
+ */
+class Equity extends Backend
+{
+    
+    /**
+     * Equity模型对象
+     * @var \app\admin\model\Equity
+     */
+    protected $model = null;
+
+    public function _initialize()
+    {
+        parent::_initialize();
+        $this->model = new \app\admin\model\Equity;
+
+    }
+    
+    /**
+     * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
+     * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
+     * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
+     */
+    
+
+}

+ 7 - 0
application/admin/lang/zh-cn/cardtip.php

@@ -0,0 +1,7 @@
+<?php
+
+return [
+    'Id'    => 'ID',
+    'Title' => '标题',
+    'Desc'  => '描述'
+];

+ 7 - 0
application/admin/lang/zh-cn/equity.php

@@ -0,0 +1,7 @@
+<?php
+
+return [
+    'Id'   => 'ID',
+    'Name' => '标题名称',
+    'Desc' => '描述'
+];

+ 9 - 0
application/admin/model/BuyVipLogModel.php

@@ -0,0 +1,9 @@
+<?php
+namespace app\admin\model;
+
+use think\Model;
+
+class BuyVipLogModel extends Model
+{
+    protected $name = 'vip_buy_log';
+}

+ 25 - 0
application/admin/model/Cardtip.php

@@ -0,0 +1,25 @@
+<?php
+
+namespace app\admin\model;
+
+use think\Model;
+
+
+class Cardtip extends Model
+{
+    // 表名
+    protected $name = 'card_tip';
+    
+    // 自动写入时间戳字段
+    protected $autoWriteTimestamp = false;
+
+    // 定义时间戳字段名
+    protected $createTime = false;
+    protected $updateTime = false;
+    protected $deleteTime = false;
+
+    // 追加属性
+    protected $append = [
+
+    ];
+}

+ 22 - 0
application/admin/view/cardtip/add.html

@@ -0,0 +1,22 @@
+<form id="add-form" class="form-horizontal" role="form" data-toggle="validator" method="POST" action="">
+
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Title')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-title" data-rule="required" class="form-control" name="row[title]" type="text" value="">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Desc')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-desc" data-rule="required" class="form-control" name="row[desc]" type="text" value="">
+        </div>
+    </div>
+    <div class="form-group layer-footer">
+        <label class="control-label col-xs-12 col-sm-2"></label>
+        <div class="col-xs-12 col-sm-8">
+            <button type="submit" class="btn btn-success btn-embossed disabled">{:__('OK')}</button>
+            <button type="reset" class="btn btn-default btn-embossed">{:__('Reset')}</button>
+        </div>
+    </div>
+</form>

+ 22 - 0
application/admin/view/cardtip/edit.html

@@ -0,0 +1,22 @@
+<form id="edit-form" class="form-horizontal" role="form" data-toggle="validator" method="POST" action="">
+
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Title')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-title" data-rule="required" class="form-control" name="row[title]" type="text" value="{$row.title|htmlentities}">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Desc')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-desc" data-rule="required" class="form-control" name="row[desc]" type="text" value="{$row.desc|htmlentities}">
+        </div>
+    </div>
+    <div class="form-group layer-footer">
+        <label class="control-label col-xs-12 col-sm-2"></label>
+        <div class="col-xs-12 col-sm-8">
+            <button type="submit" class="btn btn-success btn-embossed disabled">{:__('OK')}</button>
+            <button type="reset" class="btn btn-default btn-embossed">{:__('Reset')}</button>
+        </div>
+    </div>
+</form>

+ 35 - 0
application/admin/view/cardtip/index.html

@@ -0,0 +1,35 @@
+<div class="panel panel-default panel-intro">
+    {:build_heading()}
+
+    <div class="panel-body">
+        <div id="myTabContent" class="tab-content">
+            <div class="tab-pane fade active in" id="one">
+                <div class="widget-body no-padding">
+                    <div id="toolbar" class="toolbar">
+                        <a href="javascript:;" class="btn btn-primary btn-refresh" title="{:__('Refresh')}" ><i class="fa fa-refresh"></i> </a>
+<!--                        <a href="javascript:;" class="btn btn-success btn-add {:$auth->check('cardtip/add')?'':'hide'}" title="{:__('Add')}" ><i class="fa fa-plus"></i> {:__('Add')}</a>-->
+                        <a href="javascript:;" class="btn btn-success btn-edit btn-disabled disabled {:$auth->check('cardtip/edit')?'':'hide'}" title="{:__('Edit')}" ><i class="fa fa-pencil"></i> {:__('Edit')}</a>
+<!--                        <a href="javascript:;" class="btn btn-danger btn-del btn-disabled disabled {:$auth->check('cardtip/del')?'':'hide'}" title="{:__('Delete')}" ><i class="fa fa-trash"></i> {:__('Delete')}</a>-->
+<!--                        <a href="javascript:;" class="btn btn-danger btn-import {:$auth->check('cardtip/import')?'':'hide'}" title="{:__('Import')}" id="btn-import-file" data-url="ajax/upload" data-mimetype="csv,xls,xlsx" data-multiple="false"><i class="fa fa-upload"></i> {:__('Import')}</a>-->
+
+<!--                        <div class="dropdown btn-group {:$auth->check('cardtip/multi')?'':'hide'}">-->
+<!--                            <a class="btn btn-primary btn-more dropdown-toggle btn-disabled disabled" data-toggle="dropdown"><i class="fa fa-cog"></i> {:__('More')}</a>-->
+<!--                            <ul class="dropdown-menu text-left" role="menu">-->
+<!--                                <li><a class="btn btn-link btn-multi btn-disabled disabled" href="javascript:;" data-params="status=normal"><i class="fa fa-eye"></i> {:__('Set to normal')}</a></li>-->
+<!--                                <li><a class="btn btn-link btn-multi btn-disabled disabled" href="javascript:;" data-params="status=hidden"><i class="fa fa-eye-slash"></i> {:__('Set to hidden')}</a></li>-->
+<!--                            </ul>-->
+<!--                        </div>-->
+
+                        
+                    </div>
+                    <table id="table" class="table table-striped table-bordered table-hover table-nowrap"
+                           data-operate-edit="{:$auth->check('cardtip/edit')}" 
+                           data-operate-del="{:$auth->check('cardtip/del')}" 
+                           width="100%">
+                    </table>
+                </div>
+            </div>
+
+        </div>
+    </div>
+</div>

+ 22 - 0
application/admin/view/equity/add.html

@@ -0,0 +1,22 @@
+<form id="add-form" class="form-horizontal" role="form" data-toggle="validator" method="POST" action="">
+
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Name')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-name" data-rule="required" class="form-control" name="row[name]" type="text" value="">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Desc')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-desc" data-rule="required" class="form-control" name="row[desc]" type="text" value="">
+        </div>
+    </div>
+    <div class="form-group layer-footer">
+        <label class="control-label col-xs-12 col-sm-2"></label>
+        <div class="col-xs-12 col-sm-8">
+            <button type="submit" class="btn btn-success btn-embossed disabled">{:__('OK')}</button>
+            <button type="reset" class="btn btn-default btn-embossed">{:__('Reset')}</button>
+        </div>
+    </div>
+</form>

+ 28 - 0
application/admin/view/equity/edit.html

@@ -0,0 +1,28 @@
+<form id="edit-form" class="form-horizontal" role="form" data-toggle="validator" method="POST" action="">
+
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Name')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-name" data-rule="required" class="form-control" name="row[name]" type="text" value="{$row.name|htmlentities}" readonly>
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('Desc')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-desc" data-rule="required" class="form-control" name="row[desc]" type="text" value="{$row.desc|htmlentities}">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2"></label>
+        <div class="col-xs-12 col-sm-8">
+            <span style="color: red;">多个描述之间用空格分隔。</span>
+        </div>
+    </div>
+    <div class="form-group layer-footer">
+        <label class="control-label col-xs-12 col-sm-2"></label>
+        <div class="col-xs-12 col-sm-8">
+            <button type="submit" class="btn btn-success btn-embossed disabled">{:__('OK')}</button>
+            <button type="reset" class="btn btn-default btn-embossed">{:__('Reset')}</button>
+        </div>
+    </div>
+</form>

+ 35 - 0
application/admin/view/equity/index.html

@@ -0,0 +1,35 @@
+<div class="panel panel-default panel-intro">
+    {:build_heading()}
+
+    <div class="panel-body">
+        <div id="myTabContent" class="tab-content">
+            <div class="tab-pane fade active in" id="one">
+                <div class="widget-body no-padding">
+                    <div id="toolbar" class="toolbar">
+                        <a href="javascript:;" class="btn btn-primary btn-refresh" title="{:__('Refresh')}" ><i class="fa fa-refresh"></i> </a>
+<!--                        <a href="javascript:;" class="btn btn-success btn-add {:$auth->check('equity/add')?'':'hide'}" title="{:__('Add')}" ><i class="fa fa-plus"></i> {:__('Add')}</a>-->
+                        <a href="javascript:;" class="btn btn-success btn-edit btn-disabled disabled {:$auth->check('equity/edit')?'':'hide'}" title="{:__('Edit')}" ><i class="fa fa-pencil"></i> {:__('Edit')}</a>
+<!--                        <a href="javascript:;" class="btn btn-danger btn-del btn-disabled disabled {:$auth->check('equity/del')?'':'hide'}" title="{:__('Delete')}" ><i class="fa fa-trash"></i> {:__('Delete')}</a>-->
+<!--                        <a href="javascript:;" class="btn btn-danger btn-import {:$auth->check('equity/import')?'':'hide'}" title="{:__('Import')}" id="btn-import-file" data-url="ajax/upload" data-mimetype="csv,xls,xlsx" data-multiple="false"><i class="fa fa-upload"></i> {:__('Import')}</a>-->
+
+<!--                        <div class="dropdown btn-group {:$auth->check('equity/multi')?'':'hide'}">-->
+<!--                            <a class="btn btn-primary btn-more dropdown-toggle btn-disabled disabled" data-toggle="dropdown"><i class="fa fa-cog"></i> {:__('More')}</a>-->
+<!--                            <ul class="dropdown-menu text-left" role="menu">-->
+<!--                                <li><a class="btn btn-link btn-multi btn-disabled disabled" href="javascript:;" data-params="status=normal"><i class="fa fa-eye"></i> {:__('Set to normal')}</a></li>-->
+<!--                                <li><a class="btn btn-link btn-multi btn-disabled disabled" href="javascript:;" data-params="status=hidden"><i class="fa fa-eye-slash"></i> {:__('Set to hidden')}</a></li>-->
+<!--                            </ul>-->
+<!--                        </div>-->
+
+                        
+                    </div>
+                    <table id="table" class="table table-striped table-bordered table-hover table-nowrap"
+                           data-operate-edit="{:$auth->check('equity/edit')}" 
+                           data-operate-del="{:$auth->check('equity/del')}" 
+                           width="100%">
+                    </table>
+                </div>
+            </div>
+
+        </div>
+    </div>
+</div>

+ 267 - 0
application/api/controller/Member.php

@@ -0,0 +1,267 @@
+<?php
+namespace app\api\controller;
+
+use app\admin\model\BuyVipLogModel;
+use app\admin\model\Cardtip;
+use app\api\model\QueueModel;
+use app\api\model\UsersModel;
+use app\common\controller\Api;
+use app\admin\model\Equity;
+use app\common\lib\WxPay;
+use think\Db;
+use function fast\array_except;
+
+/**
+ * VIP接口
+ */
+class Member extends Api
+{
+    protected $noNeedLogin = '*';
+
+    /**
+     * 开通VIP页面
+     *
+     * @ApiTitle    (开通VIP页面)
+     * @ApiSummary  (开通VIP页面)
+     * @ApiMethod   (POST)
+     * @ApiRoute    (/api/member/index)
+     * @ApiParams   (name="user_id", type="int", required=true, description="用户id")
+     * @ApiReturnParams   (name="code", type="int", required=true, sample="200")
+     * @ApiReturnParams   (name="msg", type="string", required=true, sample="ok")
+     * @ApiReturnParams   (name="data", type="array", description="数据返回")
+     * @ApiReturn   ()
+     */
+    public function index()
+    {
+        $userId = $this->request->post('user_id');
+        if (!$userId) {
+            $this->result('参数错误', [], 200);
+        }
+        //权益列表
+        $list = Equity::select();
+        foreach ($list as &$v) {
+            $v['desc'] = explode(' ', $v['desc']);
+        }
+        //头部卡片
+        $info = Cardtip::find(1);
+        $info['avatar'] = UsersModel::where('user_id', $userId)->value('user_avatar');
+        $this->result('ok', ['card' => $info, 'equityList' => $list], 200);
+    }
+    /**
+     * 开通VIP
+     *
+     * @ApiTitle    (开通VIP)
+     * @ApiSummary  (开通VIP)
+     * @ApiMethod   (POST)
+     * @ApiRoute    (/api/member/buyVip)
+     * @ApiParams   (name="user_id", type="int", required=true, description="用户id")
+     * @ApiReturnParams   (name="code", type="int", required=true, sample="200")
+     * @ApiReturnParams   (name="msg", type="string", required=true, sample="ok")
+     * @ApiReturnParams   (name="data", type="array", description="数据返回")
+     * @ApiReturn   ()
+     */
+    public function buyVip()
+    {
+        $userId = $this->request->post('user_id');
+        $amount = 68;
+        $notify_url = config('site.httpurl').'/api/member/notify_url';
+
+        if (!$userId) {
+            $this->result('参数错误', [], 200);
+        }
+
+        $out_trade_no = createOutTradeNo();
+        $orderInfo = array(
+            'uid' => $userId,
+            'out_trade_no' => $out_trade_no,
+            'amount' => $amount,
+            'time' => date('Y-m-d H:i:s', time())
+        );
+
+        Db::startTrans();
+        try {
+            $insert = BuyVipLogModel::insert($orderInfo);
+            if ($insert) {
+                Db::commit();
+                $payObj = new WxPay();
+                $getPrePayInfo = $payObj->getPrePayOrder('VIP会员购买', $out_trade_no, ($amount * 100), $notify_url);
+                if ($getPrePayInfo) {
+                    $payInfo = $payObj->getOrder($getPrePayInfo['prepay_id']);
+                    if ($payInfo) {
+                        $this->result('支付订单发起成功', $payInfo, 200);
+                    } else {
+                        $this->result('支付订单发起失败,请稍后再试', [], 100);
+                    }
+                } else {
+                    $this->result('支付订单发起失败,请稍后再试', [], 100);
+                }
+            }
+        } catch (\Exception $exception) {
+            Db::rollback();
+            $this->result('支付订单发起失败,请稍后再试('.$exception->getMessage().')', [], 100);
+        }
+    }
+    /**
+     * 排队
+     *
+     * @ApiTitle    (排队)
+     * @ApiSummary  (排队)
+     * @ApiMethod   (POST)
+     * @ApiRoute    (/api/member/queue)
+     * @ApiParams   (name="user_id", type="int", required=true, description="用户id")
+     * @ApiParams   (name="pay_type", type="int", required=true, description="支付方式:1-余额 2-微信 3-支付宝")
+     * @ApiReturnParams   (name="code", type="int", required=true, sample="200")
+     * @ApiReturnParams   (name="msg", type="string", required=true, sample="ok")
+     * @ApiReturnParams   (name="data", type="array", description="数据返回")
+     * @ApiReturn   ()
+     */
+    public function queue()
+    {
+        $userId = $this->request->post('user_id');
+        $payType = $this->request->post('pay_type'); // 1-余额 2-微信 3-支付宝
+        $amount = 1.2;
+        $income = 2;
+
+        if (!$userId || !$payType) {
+            $this->result('参数错误', [], 100);
+        }
+
+        $user = UsersModel::get($userId);
+
+        if ($user->user_level == 1) {
+            $this->result('您还不是VIP用户,不能进行排队哦', [], 100);
+        }
+        // 剩余总排队次数是否足够
+        if ($user->user_line_num <= 0) {
+            $this->result('您的排队次数不足,不能进行排队哦', [], 100);
+        }
+        // 每天可排队次数是否足够
+        if ($user->can_line_num_perday <= 0) {
+            $this->result('您每天可排队次数不足哦', [], 100);
+        }
+        // 今天排队次数是否足够
+        if ($user->can_line_num_perday == $user->line_num_today) {
+            $this->result('您今天的可排队次数已用完', [], 100);
+        }
+
+        $nowTime = time();
+        $startTime = strtotime(date('Y-m-d').' 09:00:00');
+        $endTime = strtotime(date('Y-m-d').' 22:00:00');
+
+        if ($startTime < $nowTime && $nowTime < $endTime) {
+
+            $nowHour = date("Y-m-d H:00:00", time());
+            $nextHour = date("Y-m-d H:i:s", strtotime("+1 hour"));
+
+            //是否在本时间段内排过队
+            $hasOnLine = QueueModel::where(['uid' => $userId, 'pay_status' => 1])
+                ->whereTime('time', 'between', [$nowHour, $nextHour])
+                ->find();
+
+            if (!empty($hasOnLine)) {
+                $this->result('您当前已排过队', [], 100);
+            }
+
+            //当前时间段排队人数
+            $lineNum = QueueModel::whereTime('time', 'between', [$nowHour, $nextHour])->where('pay_status',1)->count();
+            $trade = createOutTradeNo();
+            $lineInfo = array(
+                'uid'      => $userId,
+                'trade'    => $trade,
+                'amount'   => $amount,
+                'line_num' => $lineNum,
+                'income'   => $income,
+                'time'     => date('Y-m-d H:i:s', time()),
+                'pay_type' => $payType
+            );
+            Db::startTrans();
+            $insert = QueueModel::insert($lineInfo);
+            if ($insert) {
+                Db::commit();
+                if ($payType == 1) {
+                    $this->result('订单创建成功', ['out_trade_no' => $trade, 'fee' => $amount], 200);
+                }
+            } else {
+                Db::rollback();
+                $this->result('服务器繁忙', [], 100);
+            }
+        } else {
+            $this->result('今日排队活动已经结束了哦', [], 100);
+        }
+    }
+    /**
+     * 排队余额支付
+     *
+     * @ApiTitle    (排队余额支付)
+     * @ApiSummary  (排队余额支付)
+     * @ApiMethod   (POST)
+     * @ApiRoute    (/api/member/balancePayQueue)
+     * @ApiParams   (name="user_id", type="int", required=true, description="用户id")
+     * @ApiParams   (name="fee", type="decimal", required=true, description="排队接口返回的支付金额fee字段的值")
+     * @ApiParams   (name="out_trade_no", type="string", required=true, description="排队接口返回的支付订单编号out_trade_no字段的值")
+     * @ApiParams   (name="pay_password", type="string", required=true, description="用户支付密码")
+     * @ApiReturnParams   (name="code", type="int", required=true, sample="200")
+     * @ApiReturnParams   (name="msg", type="string", required=true, sample="ok")
+     * @ApiReturnParams   (name="data", type="array", description="数据返回")
+     * @ApiReturn   ()
+     */
+    public function balancePayQueue()
+    {
+        $userId = $this->request->post('user_id');
+        $fee = $this->request->post('fee');
+        $trade = $this->request->post('out_trade_no');
+        $payPwd = $this->request->post('pay_password');
+
+        if (!$userId || !$fee || !$trade || !$payPwd) {
+            $this->result('参数错误', [], 100);
+        }
+
+        $user = UsersModel::get($userId);
+
+        // 用户是否存在
+        if (!$user) {
+            $this->result('用户不存在', [], 100);
+        }
+        // 订单是否存在
+        $order = QueueModel::where('trade', $trade)->find();
+        if (!$order) {
+            $this->result('订单不存在', [], 100);
+        }
+        if ($fee <= 0) {
+            $this->result('请输入正确的支付金额', [], 100);
+        }
+        // 余额是否满足本次扣费金额
+        if ($user->user_money < $fee) {
+            $this->result('账户余额不足', [], 100);
+        }
+        // 是否设置支付密码
+        if (empty($user->user_paypwd)) {
+            $this->result('请先设置支付密码', [], 100);
+        }
+        // 支付密码是否正确
+        if ($user->user_paypwd != $payPwd) {
+            $this->result('支付密码错误', [], 100);
+        }
+        Db::startTrans();
+        // 扣除账户余额
+        $dec = UsersModel::where('user_id', $userId)->setDec('user_money', $fee);
+        // 增加排队收入
+        $amount = 2;
+        $inc = UsersModel::where('user_id', $userId)->setInc('user_money', $amount);
+        // 更新支付状态和支付时间
+        $updatePayStatus = QueueModel::where('trade', $trade)
+            ->update(['pay_status' => 1, 'pay_time' => date('Y-m-d H:i:s', time())]);
+        // 消耗一次今日可排队次数
+        $addPerDayQueueNum = UsersModel::where('user_id', $userId)->setInc('line_num_today', 1);
+        // 消耗一次总排队次数
+        $decTotalQueueNum = UsersModel::where('user_id', $userId)->setDec('user_line_num', 1);
+
+        if ($dec && $inc && $updatePayStatus && $addPerDayQueueNum && $decTotalQueueNum) {
+            Db::commit();
+            $this->result('排队成功', [], 200);
+        } else {
+            Db::rollback();
+            $this->result('支付失败,稍后再试', [], 100);
+        }
+    }
+}

+ 9 - 0
application/api/model/QueueModel.php

@@ -0,0 +1,9 @@
+<?php
+namespace app\api\model;
+
+use think\Model;
+
+class QueueModel extends Model
+{
+    protected $name = 'queue_log';
+}

+ 6 - 0
application/common.php

@@ -362,3 +362,9 @@ if (!function_exists('hsv2rgb')) {
         ];
     }
 }
+function createOutTradeNo()
+{
+    $str = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
+    $out_trade_no = $str[mt_rand(0, 25)].$str[mt_rand(0, 25)].date('YmdHis', time()).mt_rand(000, 999);
+    return $out_trade_no;
+}

+ 209 - 0
application/common/lib/WxPay.php

@@ -0,0 +1,209 @@
+<?php
+namespace app\common\lib;
+
+class WxPay
+{
+    private $config = array(
+        'appid' => "",  // 微信开放平台上的应用id
+        'mch_id' => "1550903451", // 微信申请成功之后的商户号
+        'api_key' => "b3ae6bbf3cc4fa017eb169ae219e2c27" // 在微信商户平台上自己设定的32位api密钥
+    );
+
+    /**
+     * 发起预支付订单
+     *
+     * $body 订单描述
+     * $out_trade_no 订单号
+     * $total_fee 订单金额,单位为 分
+     * $notify_url 异步通知回调地址
+     */
+    public function getPrePayOrder($body, $out_trade_no, $total_fee, $notify_url)
+    {
+        $url = "https://api.mch.weixin.qq.com/pay/unifiedorder";
+
+        $onoce_str = $this->getRandChar(32);
+
+        $data["appid"] = $this->config["appid"];
+        $data["body"] = $body;
+        $data["mch_id"] = $this->config['mch_id'];
+        $data["nonce_str"] = $onoce_str;
+        $data["notify_url"] = $notify_url;
+        $data["out_trade_no"] = $out_trade_no;
+        $data["spbill_create_ip"] = $this->get_client_ip();
+        $data["total_fee"] = $total_fee;
+        $data["trade_type"] = "APP";
+        $s = $this->getSign($data, false);
+        $data["sign"] = $s;
+        $xml = $this->arrayToXml($data);
+        $response = $this->postXmlCurl($xml, $url);
+
+        //将微信返回的结果xml转成数组
+        return $this->xmltoarray($response);
+    }
+    public function getOrder($prepayId)
+    {
+        $data["appid"] = $this->config["appid"];
+        $data["noncestr"] = $this->getRandChar(32);;
+        $data["package"] = "Sign=WXPay";
+        $data["partnerid"] = $this->config['mch_id'];
+        $data["prepayid"] = $prepayId;
+        $data["timestamp"] = time();
+        $sign = $this->getSign($data, false);
+        $data["sign"] = $sign;
+
+        return $data;
+    }
+    //生成签名
+    function getSign($obj)
+    {
+        foreach ($obj as $k => $v) {
+            $Parameters[strtolower($k)] = $v;
+        }
+        ksort($Parameters);
+        $String = $this->formatBizQueryParaMap($Parameters, false);
+        $String = $String."&key=".$this->config['api_key'];
+        //签名步骤三:MD5加密
+        $result = strtoupper(md5($String));
+        return $result;
+    }
+    //获取指定长度的随机字符串
+    function getRandChar($length)
+    {
+        $str = null;
+        $strPol = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz";
+        $max = strlen($strPol) - 1;
+        //rand($min,$max)生成介于min和max两个数之间的一个随机整数
+        for ($i=0;$i<$length;$i++) {
+            $str.= $strPol[rand(0,$max)];
+	}
+        return $str;
+    }
+    //数组转xml
+    function arrayToXml($arr)
+    {
+        $xml = "<xml>";
+        foreach ($arr as $key => $val) {
+            if (is_numeric($val)) {
+                $xml.= "<".$key.">".$val."</".$key.">";
+		} else {
+                $xml.= "<".$key."><![CDATA[".$val."]]></".$key.">";
+		}
+        }
+        $xml.= "</xml>";
+	    return $xml;
+    }
+    //post https请求,CURLOPT_POSTFIELDS xml 格式
+    function postXmlCurl($xml, $url, $second = 30)
+    {
+        //初始化curl
+        $ch = curl_init();
+        //超时时间
+        curl_setopt($ch,CURLOPT_TIMEOUT,$second);
+        //这里设置代理,如果有的话
+        //curl_setopt($ch,CURLOPT_PROXY, '8.8.8.8');
+        //curl_setopt($ch,CURLOPT_PROXYPORT, 8080);
+        curl_setopt($ch,CURLOPT_URL, $url);
+        curl_setopt($ch,CURLOPT_SSL_VERIFYPEER,FALSE);
+        curl_setopt($ch,CURLOPT_SSL_VERIFYHOST,FALSE);
+        //设置header
+        curl_setopt($ch, CURLOPT_HEADER, FALSE);
+        //要求结果为字符串且输出到屏幕上
+        curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
+        //post提交方式
+        curl_setopt($ch, CURLOPT_POST, TRUE);
+        curl_setopt($ch, CURLOPT_POSTFIELDS, $xml);
+        //运行curl
+        $data = curl_exec($ch);
+        //返回结果
+        if ($data) {
+            curl_close($ch);
+            return $data;
+        } else {
+            $error = curl_errno($ch);
+            echo "curl出错,错误码:$error"."<br>";
+            echo "<a href='http://curl.haxx.se/libcurl/c/libcurl-errors.html'>错误原因查询</a></br>";
+            curl_close($ch);
+            return false;
+        }
+    }
+    //获取当前服务器的IP
+    function get_client_ip()
+    {
+        if ($_SERVER['REMOTE_ADDR']) {
+            $cip = $_SERVER['REMOTE_ADDR'];
+        } elseif (getenv("REMOTE_ADDR")) {
+            $cip = getenv("REMOTE_ADDR");
+        } elseif (getenv("HTTP_CLIENT_IP")) {
+            $cip = getenv("HTTP_CLIENT_IP");
+        } else {
+            $cip = "unknown";
+        }
+        return $cip;
+    }
+    //将数组转成uri字符串
+    function formatBizQueryParaMap($paraMap, $urlencode)
+    {
+        $buff = "";
+        ksort($paraMap);
+        foreach ($paraMap as $k => $v) {
+            if ($urlencode) {
+                $v = urlencode($v);
+            }
+            $buff.= strtolower($k) . "=" . $v . "&";
+	    }
+        $reqPar = '';
+        if (strlen($buff) > 0) {
+            $reqPar = substr($buff, 0, strlen($buff)-1);
+        }
+        return $reqPar;
+    }
+    //xml转成数组
+    public function xmltoarray($xml)
+    {
+        //禁止引用外部xml实体
+        libxml_disable_entity_loader(true);
+        $xmlstring = simplexml_load_string($xml,'SimpleXMLElement', LIBXML_NOCDATA);
+        $val = json_decode(json_encode($xmlstring),true);
+        return $val;
+    }
+    function domnode_to_array($node)
+    {
+        $output = array();
+        switch ($node->nodeType) {
+            case XML_CDATA_SECTION_NODE:
+            case XML_TEXT_NODE:
+                $output = trim($node->textContent);
+                break;
+            case XML_ELEMENT_NODE:
+                for ($i=0, $m=$node->childNodes->length; $i < $m; $i++) {
+                    $child = $node->childNodes->item($i);
+                    $v = $this->domnode_to_array($child);
+                    if (isset($child->tagName)) {
+                        $t = $child->tagName;
+                        if (!isset($output[$t])) {
+                            $output[$t] = array();
+                        }
+                        $output[$t][] = $v;
+                    } elseif ($v) {
+                        $output = (string)$v;
+                    }
+                }
+                if (is_array($output)) {
+                    if ($node->attributes->length) {
+                        $a = array();
+                        foreach ($node->attributes as $attrName => $attrNode) {
+                            $a[$attrName] = (string) $attrNode->value;
+                        }
+                        $output['@attributes'] = $a;
+                    }
+                    foreach ($output as $t => $v) {
+                        if (is_array($v) && count($v)==1 && $t!='@attributes') {
+                            $output[$t] = $v[0];
+                        }
+                    }
+                }
+                break;
+        }
+        return $output;
+    }
+}

+ 51 - 0
public/assets/js/backend/cardtip.js

@@ -0,0 +1,51 @@
+define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
+
+    var Controller = {
+        index: function () {
+            // 初始化表格参数配置
+            Table.api.init({
+                extend: {
+                    index_url: 'cardtip/index' + location.search,
+                    //add_url: 'cardtip/add',
+                    edit_url: 'cardtip/edit',
+                    //del_url: 'cardtip/del',
+                    multi_url: 'cardtip/multi',
+                    table: 'card_tip',
+                }
+            });
+
+            var table = $("#table");
+
+            // 初始化表格
+            table.bootstrapTable({
+                url: $.fn.bootstrapTable.defaults.extend.index_url,
+                pk: 'id',
+                sortName: 'id',
+                columns: [
+                    [
+                        {checkbox: true},
+                        {field: 'id', title: __('Id')},
+                        {field: 'title', title: __('Title')},
+                        {field: 'desc', title: __('Desc')},
+                        {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
+                    ]
+                ]
+            });
+
+            // 为表格绑定事件
+            Table.api.bindevent(table);
+        },
+        add: function () {
+            Controller.api.bindevent();
+        },
+        edit: function () {
+            Controller.api.bindevent();
+        },
+        api: {
+            bindevent: function () {
+                Form.api.bindevent($("form[role=form]"));
+            }
+        }
+    };
+    return Controller;
+});

+ 51 - 0
public/assets/js/backend/equity.js

@@ -0,0 +1,51 @@
+define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
+
+    var Controller = {
+        index: function () {
+            // 初始化表格参数配置
+            Table.api.init({
+                extend: {
+                    index_url: 'equity/index' + location.search,
+                    //add_url: 'equity/add',
+                    edit_url: 'equity/edit',
+                    //del_url: 'equity/del',
+                    multi_url: 'equity/multi',
+                    table: 'member_equity',
+                }
+            });
+
+            var table = $("#table");
+
+            // 初始化表格
+            table.bootstrapTable({
+                url: $.fn.bootstrapTable.defaults.extend.index_url,
+                pk: 'id',
+                sortName: 'id',
+                columns: [
+                    [
+                        {checkbox: true},
+                        {field: 'id', title: __('Id')},
+                        {field: 'name', title: __('Name')},
+                        {field: 'desc', title: __('Desc')},
+                        {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
+                    ]
+                ]
+            });
+
+            // 为表格绑定事件
+            Table.api.bindevent(table);
+        },
+        add: function () {
+            Controller.api.bindevent();
+        },
+        edit: function () {
+            Controller.api.bindevent();
+        },
+        api: {
+            bindevent: function () {
+                Form.api.bindevent($("form[role=form]"));
+            }
+        }
+    };
+    return Controller;
+});