songxingwei 3 years ago
parent
commit
42440043af
46 changed files with 0 additions and 7183 deletions
  1. 0 6
      application/api/controller/Login.php
  2. 0 88
      application/common/model/Area.php
  3. 0 25
      application/common/model/AskAnswer.php
  4. 0 24
      application/common/model/Attachment.php
  5. 0 45
      application/common/model/Banner.php
  6. 0 62
      application/common/model/Category.php
  7. 0 18
      application/common/model/CategoryLabel.php
  8. 0 28
      application/common/model/Config.php
  9. 0 67
      application/common/model/CouponUser.php
  10. 0 22
      application/common/model/Ems.php
  11. 0 19
      application/common/model/InvestMerch.php
  12. 0 20
      application/common/model/InvestMerchLog.php
  13. 0 128
      application/common/model/Jobs.php
  14. 0 26
      application/common/model/JobsApply.php
  15. 0 26
      application/common/model/Leader.php
  16. 0 26
      application/common/model/LoginLog.php
  17. 0 23
      application/common/model/MerchMoneyLog.php
  18. 0 82
      application/common/model/MerchWithdraw.php
  19. 0 580
      application/common/model/MobileRecharge.php
  20. 0 21
      application/common/model/MobileRechargePrice.php
  21. 0 23
      application/common/model/MoneyLog.php
  22. 0 2332
      application/common/model/Order.php
  23. 0 25
      application/common/model/OrderInfo.php
  24. 0 22
      application/common/model/OrderRefund.php
  25. 0 25
      application/common/model/OrderStatus.php
  26. 0 21
      application/common/model/OrderTuijian.php
  27. 0 25
      application/common/model/PopEnvelopHistory.php
  28. 0 312
      application/common/model/Product.php
  29. 0 73
      application/common/model/ProductCollect.php
  30. 0 388
      application/common/model/ProductEvaluation.php
  31. 0 26
      application/common/model/ProductEvaluationComments.php
  32. 0 26
      application/common/model/ProductEvaluationZan.php
  33. 0 25
      application/common/model/ProductPriceLog.php
  34. 0 18
      application/common/model/ProductUserFootprint.php
  35. 0 24
      application/common/model/RecommendConfig.php
  36. 0 25
      application/common/model/RedisTongzhi.php
  37. 0 23
      application/common/model/ScoreLog.php
  38. 0 68
      application/common/model/SearchHistory.php
  39. 0 113
      application/common/model/Sms.php
  40. 0 1285
      application/common/model/User.php
  41. 0 21
      application/common/model/UserGroup.php
  42. 0 555
      application/common/model/UserMerchInfo.php
  43. 0 118
      application/common/model/UserRecharge.php
  44. 0 21
      application/common/model/UserRule.php
  45. 0 128
      application/common/model/UserWeixin.php
  46. 0 125
      application/common/model/UserWithdraw.php

+ 0 - 6
application/api/controller/Login.php

@@ -15,14 +15,8 @@
 
 namespace app\api\controller;
 
-use AlibabaCloud\Client\AlibabaCloud;
-use AlibabaCloud\Client\Exception\ClientException;
-use AlibabaCloud\Client\Exception\ServerException;
-use app\api\controller\Base;
-use think\cache\driver\Redis;
 use think\Db;
 use Firebase\JWT\JWT;
-use EasyWeChat\Factory;
 use think\facade\Validate;
 
 /**

+ 0 - 88
application/common/model/Area.php

@@ -1,88 +0,0 @@
-<?php
-
-namespace app\common\model;
-
-use think\Cache;
-use think\Model;
-
-/**
- * 地区数据模型
- */
-class Area extends Model
-{
-
-    /**
-     * 根据经纬度获取当前地区信息
-     *
-     * @param string $lng 经度
-     * @param string $lat 纬度
-     * @return Area 城市信息
-     */
-    public static function getAreaFromLngLat($lng, $lat, $level = 3)
-    {
-        $namearr = [1 => 'geo:province', 2 => 'geo:city', 3 => 'geo:district'];
-        $rangearr = [1 => 15000, 2 => 1000, 3 => 200];
-        $geoname = isset($namearr[$level]) ? $namearr[$level] : $namearr[3];
-        $georange = isset($rangearr[$level]) ? $rangearr[$level] : $rangearr[3];
-        // 读取范围内的ID
-        $redis = Cache::store('redis')->handler();
-        $georadiuslist = [];
-        if (method_exists($redis, 'georadius')) {
-            $georadiuslist = $redis->georadius($geoname, $lng, $lat, $georange, 'km', ['WITHDIST', 'COUNT' => 5, 'ASC']);
-        }
-
-        if ($georadiuslist) {
-            list($id, $distance) = $georadiuslist[0];
-        }
-        $id = isset($id) && $id ? $id : 3;
-        return self::get($id);
-    }
-
-    /**
-     * 根据经纬度获取省份
-     *
-     * @param string $lng 经度
-     * @param string $lat 纬度
-     * @return Area
-     */
-    public static function getProvinceFromLngLat($lng, $lat)
-    {
-        $provincedata = null;
-        $citydata = self::getCityFromLngLat($lng, $lat);
-        if ($citydata) {
-            $provincedata = self::get($citydata['pid']);
-        }
-        return $provincedata;
-    }
-
-    /**
-     * 根据经纬度获取城市
-     *
-     * @param string $lng 经度
-     * @param string $lat 纬度
-     * @return Area
-     */
-    public static function getCityFromLngLat($lng, $lat)
-    {
-        $citydata = null;
-        $districtdata = self::getDistrictFromLngLat($lng, $lat);
-        if ($districtdata) {
-            $citydata = self::get($districtdata['pid']);
-        }
-        return $citydata;
-    }
-
-    /**
-     * 根据经纬度获取地区
-     *
-     * @param string $lng 经度
-     * @param string $lat 纬度
-     * @return Area
-     */
-    public static function getDistrictFromLngLat($lng, $lat)
-    {
-        $districtdata = self::getAreaFromLngLat($lng, $lat, 3);
-        return $districtdata;
-    }
-
-}

+ 0 - 25
application/common/model/AskAnswer.php

@@ -1,25 +0,0 @@
-<?php
-
-namespace app\common\model;
-
-use think\Model;
-use app\common\library\Common;
-use think\Db;
-
-/**
- * 百问百答model
- */
-class AskAnswer Extends Model
-{
-
-    // 开启自动写入时间戳字段
-    protected $autoWriteTimestamp = 'TIMESTAMP';
-    // 定义时间戳字段名
-    protected $createTime = 'create_at';
-    protected $updateTime = false;
-    // 追加属性
-    protected $append = [
-    ];
-
-
-}

+ 0 - 24
application/common/model/Attachment.php

@@ -1,24 +0,0 @@
-<?php
-
-namespace app\common\model;
-
-use think\Model;
-
-class Attachment extends Model
-{
-
-    // 开启自动写入时间戳字段
-    protected $autoWriteTimestamp = 'int';
-    // 定义时间戳字段名
-    protected $createTime = 'createtime';
-    protected $updateTime = 'updatetime';
-    // 定义字段类型
-    protected $type = [
-    ];
-
-    public function setUploadtimeAttr($value)
-    {
-        return strtotime($value);
-    }
-
-}

+ 0 - 45
application/common/model/Banner.php

@@ -1,45 +0,0 @@
-<?php
-
-namespace app\common\model;
-
-use think\Model;
-use app\common\library\Common;
-use think\Db;
-
-/**
- * 轮播
- */
-class Banner Extends Model
-{
-
-    // 开启自动写入时间戳字段
-    protected $autoWriteTimestamp = 'TIMESTAMP';
-    // 定义时间戳字段名
-    protected $createTime = 'create_at';
-    protected $updateTime = 'update_at';
-    // 追加属性
-    protected $append = [
-    ];
-
-
-    /**
-     * 获取轮播图列表
-     */
-    public static function get_list(){
-        $list = self::where('is_del',1)->where('is_show',1)->order('sort desc')->select();
-        if ($list){
-            $list = $list->toArray();
-            foreach ($list as $k=>$v){
-                $merch_id = Product::where('id',$v['product_id'])->value('merch_id');
-                $type = UserMerchInfo::where('a.id',$merch_id)->alias('a')
-                    ->join('Category b','a.category_one_id=b.id')->value('b.type');
-                $list[$k]['type'] = $type ? $type : 0;
-            }
-        } else{
-            $list = [];
-        }
-        return $list;
-    }
-
-
-}

+ 0 - 62
application/common/model/Category.php

@@ -1,62 +0,0 @@
-<?php
-
-namespace app\common\model;
-
-use think\Model;
-
-/**
- * 分类模型
- */
-class Category Extends Model
-{
-
-    // 开启自动写入时间戳字段
-    protected $autoWriteTimestamp = 'int';
-    // 定义时间戳字段名
-    protected $createTime = 'create_at';
-    protected $updateTime = 'update_at';
-
-
-    /**
-     * 获取分类列表
-     */
-    public static function get_list($type = 1){
-        switch ($type){
-            case 1:   //商家注册分类
-                $list = self::where('pid',0)->where('is_del',1)->where('is_show',1)->where('type','neq',3)->field('id,name,icon,type')->order('sort desc')->select()->toArray();
-                foreach ($list as $k=>$v){
-                    $two = self::where('pid',$v['id'])->where('is_del',1)->where('is_show',1)->where('type','neq',3)->field('id,name,icon,type')->order('sort desc')->select();
-                    if ($two)
-                        $list[$k]['two_list'] = $two->toArray();
-                    else
-                        $list[$k]['two_list'] = [];
-                }
-                break;
-            case 2:    //首页分类
-                $list = self::where('pid',0)->where('is_del',1)->where('is_show',1)->where('is_home',1)->field('id,name,icon,type')->order('sort desc')->select();
-                if ($list)
-                    $list = $list->toArray();
-                else
-                    $list = [];
-                break;
-            case 3:     //更多分类页面
-                $list = CategoryLabel::field('id,name')->select();
-                if ($list){
-                    $list = $list->toArray();
-                    foreach ($list as $k=>$v){
-                        $one = self::where('pid',0)->where('label_id',$v['id'])->where('is_del',1)->where('is_show',1)->field('id,name,icon,type')->order('sort desc')->select();
-                        if ($one->isEmpty()){
-                            unset($list[$k]);
-                        }else{
-                            $list[$k]['two'] = $one->toArray();
-                        }
-                    }
-                    $list = array_values($list);
-                }else{
-                    $list = [];
-                }
-                break;
-        }
-        return $list;
-    }
-}

+ 0 - 18
application/common/model/CategoryLabel.php

@@ -1,18 +0,0 @@
-<?php
-
-namespace app\common\model;
-
-use think\Model;
-
-/**
- * 分类模型
- */
-class CategoryLabel Extends Model
-{
-
-    // 开启自动写入时间戳字段
-    protected $autoWriteTimestamp = 'TIMESTAMP';
-    // 定义时间戳字段名
-    protected $createTime = 'create_at';
-
-}

+ 0 - 28
application/common/model/Config.php

@@ -1,28 +0,0 @@
-<?php
-
-namespace app\common\model;
-
-use think\Model;
-
-/**
- * 配置模型
- */
-class Config extends Model
-{
-    // 自动写入时间戳字段
-    protected $autoWriteTimestamp = false;
-    // 定义时间戳字段名
-    protected $createTime = false;
-    protected $updateTime = false;
-    // 追加属性
-    protected $append = [
-    ];
-
-    /**
-     * 获取配置信息
-     */
-    public static function get_values($config_name){
-        return self::where('name',$config_name)->value('value');
-    }
-
-}

+ 0 - 67
application/common/model/CouponUser.php

@@ -1,67 +0,0 @@
-<?php
-
-namespace app\common\model;
-
-use think\Model;
-use app\common\library\Common;
-use think\Db;
-
-/**
- * 优惠券model
- */
-class CouponUser Extends Model
-{
-
-    // 开启自动写入时间戳字段
-    protected $autoWriteTimestamp = false;
-    // 定义时间戳字段名
-    protected $createTime = false;
-    protected $updateTime = false;
-    // 追加属性
-    protected $append = [
-    ];
-
-
-    /**
-     * 优惠券列表
-     */
-    public static function couponList($Nowpage,$limits){
-        $user = app()->session->get('us');
-        self::couponsTimeOut($user['id']);
-        $count = self::where('user_id',$user['id'])
-            ->count();
-        $data['count'] = $count;
-        if ($count){
-            $list = self::where('user_id',$user['id'])
-                ->order('status asc')
-                ->page($Nowpage,$limits)
-                ->select()->toArray();
-            foreach ($list as $k=>$v){
-                $list[$k]['start_time'] = date('Y-m-d',$v['start_time']);
-                $list[$k]['end_time'] = date('Y-m-d',$v['end_time']);
-            }
-            $data['list'] = $list;
-        }else{
-            $data['list'] = [];
-        }
-        return Common::return_success('成功',$data);
-    }
-
-    /**
-     * 优惠券过期,更新数据库
-     */
-    public static function couponsTimeOut($userId){
-        $list = self::where('user_id',$userId)
-            ->where('validity','>',0)
-            ->where('end_time','<',time())
-            ->where('status',0)->all();
-        if ($list){
-            foreach ($list as $k=>$v){
-                self::where('id',$v['id'])->update(['status'=>2]);
-            }
-        }
-    }
-
-
-
-}

+ 0 - 22
application/common/model/Ems.php

@@ -1,22 +0,0 @@
-<?php
-
-namespace app\common\model;
-
-use think\Model;
-
-/**
- * 邮箱验证码
- */
-class Ems Extends Model
-{
-
-    // 开启自动写入时间戳字段
-    protected $autoWriteTimestamp = 'int';
-    // 定义时间戳字段名
-    protected $createTime = 'createtime';
-    protected $updateTime = false;
-    // 追加属性
-    protected $append = [
-    ];
-
-}

+ 0 - 19
application/common/model/InvestMerch.php

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

+ 0 - 20
application/common/model/InvestMerchLog.php

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

+ 0 - 128
application/common/model/Jobs.php

@@ -1,128 +0,0 @@
-<?php
-
-namespace app\common\model;
-
-use think\Model;
-use app\common\library\Common;
-use think\Db;
-
-/**
- * 招聘信息model
- */
-class Jobs Extends Model
-{
-
-    // 开启自动写入时间戳字段
-    protected $autoWriteTimestamp = 'TIMESTAMP';
-    // 定义时间戳字段名
-    protected $createTime = 'create_at';
-    protected $updateTime = 'update_at';
-    // 追加属性
-    protected $append = [
-    ];
-
-
-    /**
-     * 添加、编辑招聘信息
-     * @param $data
-     * @return array
-     */
-    public static function add_edit($data){
-        $user =  app()->session->get('us');
-        $userinfo = User::where('id',$user['id'])->find();
-        if ($userinfo['type'] != 2)
-            return Common::return_error('非商家,无法添加!');
-        $merchInfo = UserMerchInfo::where('user_id',$user['id'])->where('audit',1)->where('status',1)->find();
-        if (!$merchInfo)
-            return Common::return_error('商家审核未通过或被禁用,无法添加!');
-
-        $data['label'] = implode(',',$data['label']);
-        Db::startTrans();
-        try {
-            if ($data['id']){
-                $data['update_at'] = date('Y-m-d H:i:s');
-                self::where('id',$data['id'])->update($data);
-                Db::commit();
-                return Common::return_success('编辑成功');
-            }else{
-                $data['user_id'] = $userinfo->id;
-                self::create($data);
-                Db::commit();
-                return Common::return_success('添加成功');
-            }
-        } catch (Exception $e) {
-            Db::rollback();
-            return Common::return_error('失败');
-        }
-    }
-
-    /**
-     * 获取招聘信息列表
-     */
-    public static function jobs_list($Nowpage,$limits){
-        $user =  app()->session->get('us');
-        $count = self::where('is_del',1)->where('user_id',$user['id'])->count();
-        $data['count'] = $count;
-        $list = self::where('is_del',1)->where('user_id',$user['id'])->page($Nowpage, $limits)->order('id desc')->select();
-        if ($list){
-            $list = $list->toArray();
-            foreach ($list as $k=>$v){
-                $list[$k]['label'] = explode(',',$v['label']);
-            }
-        } else{
-            $list =  [];
-        }
-        $data['list'] = $list;
-        return Common::return_success('成功',$data);
-    }
-
-    /**
-     * 删除招聘信息
-     */
-    public static function del_jobs($id){
-        $user =  app()->session->get('us');
-        $job = self::get($id);
-        if (!$job)
-            return Common::return_error('信息不存在');
-        if ($job->user_id!=$user['id'])
-            return Common::return_error('无法删除');
-        $job->is_del = 0;
-        if ($job->save())
-            return Common::return_success('删除成功');
-        else
-            return Common::return_error('删除失败');
-    }
-
-    /**
-     * 招聘信息详情
-     */
-    public static function jobsDetail($jobs_id){
-        $job = self::where('id',$jobs_id)->where('is_del',1)->find();
-        if (!$job)
-            return Common::return_error('招聘信息不存在');
-        $job = $job->toArray();
-        $job['label'] = explode(',',$job['label']);
-        return Common::return_success('成功',$job);
-    }
-
-    /**
-     * 我要应聘
-     */
-    public static function jobsApply($data){
-        $user = app()->session->get('us');
-        $job = self::where('id',$data['jobs_id'])->where('is_del',1)->find();
-        if (!$job)
-            return Common::return_error('招聘信息不存在');
-        Db::startTrans();
-        try {
-            $data['user_id'] = $user['id'];
-            JobsApply::create($data);
-            Db::commit();
-            return Common::return_success('提交成功');
-        }catch (Exception $e) {
-            Db::rollback();
-            return Common::return_error('提交失败');
-        }
-    }
-
-}

+ 0 - 26
application/common/model/JobsApply.php

@@ -1,26 +0,0 @@
-<?php
-
-namespace app\common\model;
-
-use think\Model;
-use app\common\library\Common;
-use think\Db;
-
-/**
- * 招聘信息model
- */
-class JobsApply Extends Model
-{
-
-    // 开启自动写入时间戳字段
-    protected $autoWriteTimestamp = 'TIMESTAMP';
-    // 定义时间戳字段名
-    protected $createTime = 'create_at';
-    protected $updateTime = false;
-    // 追加属性
-    protected $append = [
-    ];
-
-
-
-}

+ 0 - 26
application/common/model/Leader.php

@@ -1,26 +0,0 @@
-<?php
-
-namespace app\common\model;
-
-use think\Model;
-use app\common\library\Common;
-
-
-/**
- * 领导人奖预存表
- */
-class Leader Extends Model
-{
-
-    // 开启自动写入时间戳字段
-    protected $autoWriteTimestamp = 'TIMESTAMP';
-    // 定义时间戳字段名
-    protected $createTime = 'create_at';
-    protected $updateTime = false;
-    // 追加属性
-    protected $append = [
-    ];
-
-
-
-}

+ 0 - 26
application/common/model/LoginLog.php

@@ -1,26 +0,0 @@
-<?php
-
-namespace app\common\model;
-
-use think\Model;
-use app\common\library\Common;
-use think\Db;
-
-/**
- * 登录日志
- */
-class LoginLog Extends Model
-{
-
-    // 开启自动写入时间戳字段
-    protected $autoWriteTimestamp = 'TIMESTAMP';
-    // 定义时间戳字段名
-    protected $createTime = 'create_at';
-    protected $updateTime = false;
-    // 追加属性
-    protected $append = [
-    ];
-
-
-
-}

+ 0 - 23
application/common/model/MerchMoneyLog.php

@@ -1,23 +0,0 @@
-<?php
-
-namespace app\common\model;
-
-use think\Model;
-
-/**
- * 商家余额日志模型
- */
-class MerchMoneyLog Extends Model
-{
-
-    // 表名
-    protected $name = 'merch_money_log';
-    // 开启自动写入时间戳字段
-    protected $autoWriteTimestamp = 'TIMESTAMP';
-    // 定义时间戳字段名
-    protected $createTime = 'create_at';
-    protected $updateTime = '';
-    // 追加属性
-    protected $append = [
-    ];
-}

+ 0 - 82
application/common/model/MerchWithdraw.php

@@ -1,82 +0,0 @@
-<?php
-
-namespace app\common\model;
-
-use think\Db;
-use think\Model;
-use app\common\library\Common;
-
-/**
- * 商家提现model
- */
-class MerchWithdraw Extends Model
-{
-
-    // 开启自动写入时间戳字段
-    protected $autoWriteTimestamp = 'TIMESTAMP';
-    // 定义时间戳字段名
-    protected $createTime = 'create_at';
-    protected $updateTime = false;
-    // 追加属性
-    protected $append = [
-    ];
-
-
-
-    /**
-     * 商家提现
-     */
-    public static function MerchWithdraw($money,$with_password){
-        $user = app()->session->get('us');
-        $userinfo = User::where('id',$user['id'])->find();
-        $merch = UserMerchInfo::where('user_id',$user['id'])->find();
-
-        if ($userinfo['with_password']!=md5($with_password))
-            return Common::return_error('支付密码不正确');
-
-        if ($merch['money']<$money)
-            return Common::return_error('余额不足');
-
-        if (!$merch['collection_name'] || !$merch['collection_card'] || !$merch['collection_bank'])
-            return Common::return_error('收款信息不足');
-
-        $data['user_id'] = $merch['id'];
-        $data['order_no'] = Common::getNewOrderId($user['id']);
-        $data['price'] = $money;
-        $data['collection_name'] = $merch['collection_name'];
-        $data['collection_card'] = $merch['collection_card'];
-        $data['collection_bank'] = $merch['collection_bank'];
-        Db::startTrans();
-        try {
-            self::create($data);
-            UserMerchInfo::money($money,$merch['id'],'提现'.$money.'元',0);
-            Db::commit();
-            return Common::return_success('提现成功');
-        }catch (Exception $e) {
-            Db::rollback();
-            return Common::return_error('提现失败');
-        }
-    }
-
-
-    /**
-     * 提现记录
-     */
-    public static function withdrawRecord($Nowpage,$limits){
-        $user = app()->session->get('us');
-        $merch = UserMerchInfo::where('user_id',$user['id'])->find();
-        $count = self::where('user_id',$merch['id'])->count();
-        if ($count){
-            $list = self::where('user_id',$merch['id'])
-                ->field('id,user_id,order_no,price,status,why,create_at')->order('id desc')->page($Nowpage,$limits)->select()->toArray();
-            foreach ($list as $k=>$v){
-                $list[$k]['create_at'] = date('Y-m-d',strtotime($v['create_at']));
-            }
-        }else{
-            $list = [];
-        }
-        $data['count'] = $count;
-        $data['list'] = $list;
-        return Common::return_success('成功',$data);
-    }
-}

+ 0 - 580
application/common/model/MobileRecharge.php

@@ -1,580 +0,0 @@
-<?php
-
-namespace app\common\model;
-
-use app\common\library\AliPay;
-use app\common\library\JuheRecharge;
-use app\common\library\recharge;
-use think\Model;
-use app\common\library\Common;
-use think\Db;
-use app\common\library\WxPay;
-use EasyWeChat\Factory;
-
-/**
- * 手机充值模型
- */
-class MobileRecharge Extends Model
-{
-
-    // 开启自动写入时间戳字段
-    protected $autoWriteTimestamp = 'TIMESTAMP';
-    // 定义时间戳字段名
-    protected $createTime = 'create_at';
-    protected $updateTime = '';
-    // 追加属性
-    protected $append = [
-    ];
-
-
-    /**
-     * 价格列表
-     */
-    public static function priceList(){
-        $list = MobileRechargePrice::order('price asc')->select();
-        if ($list)
-            $list = $list->toArray();
-        else
-            $list = [];
-        return Common::return_success('成功',$list);
-    }
-
-
-    /**
-     * 根据价格判断余额是否够
-     */
-    public static function checkRechargeYue($price){
-        $user = app()->session->get('us');
-        $userMoney = User::where('id',$user['id'])->value('money');
-        //获取手续费
-        $poundage_proportion = Config::get_values('poundage_proportion');
-        $proportion = sprintf("%.2f",substr(sprintf("%.4f", ($price * ($poundage_proportion/100))), 0, -2));  //保留两位小数,不四舍五入;
-        $all_price = $price + $proportion;
-        if ($userMoney>$all_price){
-            $data['is_hive'] = true;
-            $data['difference'] = '0';
-            $data['proportion'] = $proportion;
-        }else{
-            $data['is_hive'] = false;
-            $user_money_proportion = sprintf("%.2f",substr(sprintf("%.4f", ($userMoney * ($poundage_proportion/100))), 0, -2));  //保留两位小数,不四舍五入;  手续费
-            $all_price = $price + $user_money_proportion;
-            $difference_money = sprintf("%.2f", $all_price - $userMoney);  //差价
-            $data['difference'] = $difference_money;
-            $data['proportion'] = $user_money_proportion;
-        }
-        $data['poundage_proportion'] = $poundage_proportion;
-        return Common::return_success('成功',$data);
-    }
-
-
-    /**
-     * 充值
-     */
-    public static function mobileRecharge($mobile,$price_id,$pay_type,$difference_pay_type,$come,$pay_pass){
-        $priceinfo = MobileRechargePrice::where('id',$price_id)->find();
-        if (!$priceinfo)
-            return Common::return_error('找不到充值金额');
-        $price = $priceinfo['price'];
-        $real_price = $priceinfo['real_price'];
-        $user = app()->session->get('us');
-        $config_bind_count = Config::get_values('mobile_recharge_bind_mobile');  //获取系统设置的最多绑定的手机号数量
-        $mobiel_count = self::where('user_id',$user['id'])->group('mobile')->count();
-        if ($mobiel_count>=$config_bind_count){
-            $recharge_mobile = self::where('user_id',$user['id'])->group('mobile')->order('id asc')->limit($config_bind_count)->column('mobile');
-            if ($recharge_mobile)
-                if (!in_array($mobile,$recharge_mobile))
-                    return Common::return_error('手机号不允许充值');
-        }
-
-        if ($pay_type=='yue'){
-            if (!$difference_pay_type){
-                $password = User::where('id',$user['id'])->value('with_password');
-                if ($password!=md5($pay_pass)) return Common::return_error('支付密码错误');
-            }
-        }
-
-        $openid = User::where('id',$user['id'])->value('openid');
-
-        $mobile_recharge_min_price = Config::get_values('mobile_recharge_min_price');  //获取系统设置的最少充值金额
-        if ($real_price < $mobile_recharge_min_price)
-            return Common::return_error('最低充值'.$mobile_recharge_min_price.'元');
-
-        //聚合判断手机号金额是否可以充值
-        $juhe = new JuheRecharge();
-        $check_tel_price = $juhe->telcheck($mobile,$real_price);
-        if ($check_tel_price['error_code'] != '0')
-            return Common::return_error($check_tel_price['reason']);
-
-        Db::startTrans();
-        try {
-            $data['user_id'] = $user['id'];
-            $order_no = Common::getNewOrderId($user['id']);
-            $data['order_no'] = $order_no;
-            $data['mobile'] = $mobile;
-            $data['money'] = $real_price;
-            $data['price'] = $price;
-            $data['pay_type'] = $pay_type;
-            $data['all_money'] = $price;
-            $recharge = self::create($data);
-            $recharge_id = $recharge->id;
-            switch ($pay_type) {
-                case 'yue':
-                    $userinfo = User::get($user['id']);
-                    //获取手续费
-                    $poundage_proportion = Config::get_values('poundage_proportion');    //手续费百分比
-                    $user_money_proportion = sprintf("%.2f",substr(sprintf("%.4f", ($price * ($poundage_proportion/100))), 0, -2));  //保留两位小数,不四舍五入;  手续费
-                    $all_price = $price + $user_money_proportion;
-
-                    if ($userinfo->money >= $all_price){
-                        //余额支付
-                        User::money($all_price,$user['id'],'话费充值支付'.$all_price.'元');
-                        self::where('id',$recharge_id)->update(['yue_money'=>$all_price,'poundage_proportion'=>$poundage_proportion,'proportion'=>$user_money_proportion,'all_money'=>$all_price,'paid'=>1,'pay_time'=>time()]);
-                        //话费充值
-                        $telczresult = $juhe->telcz($mobile,$real_price,$order_no);
-                        if ($telczresult['error_code'] != '0'){
-                            Db::rollback();
-                            return Common::return_error($telczresult['reason']);
-                        }
-                        Db::commit();
-                        //self::lilu($recharge_id);      //利润分成
-                        $retrun_data['order_no'] = $order_no;
-                        $retrun_data['pay'] = $pay_type;
-                        return Common::return_success('支付成功',$retrun_data);
-                    }else{
-                        $user_money_proportion = sprintf("%.2f",substr(sprintf("%.4f", ($userinfo->money * ($poundage_proportion/100))), 0, -2));  //保留两位小数,不四舍五入;  手续费
-                        $all_price = $price + $user_money_proportion;
-                        $difference_money = sprintf("%.2f", $all_price - $userinfo->money);  //差价
-                        self::where('id',$recharge_id)->update(['yue_money'=>$userinfo->money,'poundage_proportion'=>$poundage_proportion,'proportion'=>$user_money_proportion,'difference_money'=>$difference_money,'all_money'=>$all_price,'pay_type'=>$difference_pay_type]);
-                        switch ($difference_pay_type){
-                            case 'weixin':
-                                //微信支付
-                                $wx = new WxPay();//实例化微信支付控制器
-                                $body = '订单号' . $order_no;//支付说明
-                                $out_trade_no = $order_no;//订单号
-                                $total_fee = $difference_money * 100;//支付金额(乘以100)
-                                $notify_url = 'https://'.$_SERVER['SERVER_NAME'].'/api/pay/pay_mobile_recharge';//回调地址
-                                if ($come=='weixin'){
-                                    $config = $wx->retrunconfig();
-                                    $config['notify_url'] = $notify_url;
-
-                                    $app = Factory::payment($config);
-                                    $trade_type = "JSAPI";
-                                    $order = $app->order->unify([
-                                        'body' => $body,
-                                        'out_trade_no' => $out_trade_no,
-                                        'total_fee' => $total_fee,
-                                        'trade_type' => $trade_type, // JSAPI--JSAPI支付(或小程序支付)、NATIVE--Native支付、APP--app支付,MWEB--H5支付
-                                        'openid' => $openid,
-                                    ]);
-                                    if ($order['return_msg']=='OK'){
-                                        if ($order['result_code']=='FAIL'){
-                                            Db::rollback();
-                                            return Common::return_error($order['err_code_des']);
-                                        }else{
-                                            $order1 = $app->jssdk->bridgeConfig($order['prepay_id']);//执行二次签名返回参数
-                                            self::where('order_no',$order_no)->update(['wx_order'=>$order1]);
-                                            $retrun_data['order_no'] = $order_no;
-                                            $retrun_data['pay'] = json_decode($order1,true);
-                                            Db::commit();
-                                            return Common::return_success('成功',$retrun_data);
-                                        }
-                                    } else {
-                                        Db::rollback();
-                                        return Common::return_error($order['return_msg']);
-                                    }
-                                    break;
-                                }else{
-                                    $config = $wx->retrunconfig2();
-                                    try{
-                                        $app    =   Factory::payment($config);
-                                        $result = $app->order->unify([
-                                            'body' => $body,
-                                            'out_trade_no' => $out_trade_no,
-                                            'total_fee' => $total_fee,
-                                            'notify_url' => $notify_url, // 支付结果通知网址,如果不设置则会使用配置里的默认地址
-                                            'trade_type' => 'APP', // 请对应换成你的支付方式对应的值类型
-                                        ]);
-                                        $jssdk      =   $app->jssdk;
-                                        $order1 = $jssdk->appConfig($result['prepay_id']);
-                                        self::where('order_no',$order_no)->update(['wx_order'=>json_encode($order1,true)]);
-                                        Db::commit();
-                                        $retrun_data['order_no'] = $order_no;
-                                        $retrun_data['pay'] = $order1;
-                                        return Common::return_success('成功',$retrun_data);
-
-                                    }catch (Exception $e){
-                                        Db::rollback();
-                                        return Common::return_error('失败');
-                                    }
-                                    break;
-//                                    $order = $wx->getPrePayOrder($body, $out_trade_no, $total_fee, $notify_url,$come,$openid);//调用微信支付的方法
-//                                    if ($order['return_msg']=='OK'){
-//                                        if ($order['result_code']=='FALL'){
-//                                            Db::rollback();
-//                                            return Common::return_error($order['err_code_des']);
-//                                        }else{
-//                                            $order1 = $wx->getOrder($order['prepay_id']);//执行二次签名返回参数
-//                                            self::where('order_no',$order_no)->update(['wx_order'=>json_encode($order1,true)]);
-//                                            $retrun_data['order_no'] = $order_no;
-//                                            $retrun_data['pay'] = $order1;
-//                                            Db::commit();
-//                                            return Common::return_success('成功',$retrun_data);
-//                                        }
-//                                    } else {
-//                                        Db::rollback();
-//                                        return Common::return_error($order['return_msg']);
-//                                    }
-//                                    break;
-                                }
-
-                            case 'zfb':
-                                $zfb = new AliPay();//实例化支付宝支付控制器
-                                $body = '话费充值';//支付说明
-                                $out_trade_no = $order_no;//订单号
-                                $total_fee = $difference_money;//支付金额(乘以100)
-                                $notify_url = 'http://'.$_SERVER['SERVER_NAME'].'/api/pay/alipay_mobile_recharge';//回调地址
-                                $order = $zfb->aliPay($body, $total_fee, $out_trade_no, $notify_url);//调用支付宝支付的方法
-                                $retrun_data['order_no'] = $order_no;
-                                $retrun_data['pay'] = $order;
-                                Db::commit();
-                                return Common::return_success('成功',$retrun_data);
-                                break;
-                        }
-                    }
-                    break;
-                case 'weixin':
-                    self::where('id',$recharge_id)->update(['difference_money'=>$price]);
-                    //微信支付
-                    $wx = new WxPay();//实例化微信支付控制器
-                    $body = '订单号' . $order_no;//支付说明
-                    $out_trade_no = $order_no;//订单号
-                    $total_fee = $price * 100;//支付金额(乘以100)
-                    $notify_url = 'https://'.$_SERVER['SERVER_NAME'].'/api/pay/pay_mobile_recharge';//回调地址
-                    if ($come=='weixin'){
-                        $config = $wx->retrunconfig();
-                        $config['notify_url'] = $notify_url;
-
-                        $app = Factory::payment($config);
-                        $trade_type = "JSAPI";
-                        $order = $app->order->unify([
-                            'body' => $body,
-                            'out_trade_no' => $out_trade_no,
-                            'total_fee' => $total_fee,
-                            'trade_type' => $trade_type, // JSAPI--JSAPI支付(或小程序支付)、NATIVE--Native支付、APP--app支付,MWEB--H5支付
-                            'openid' => $openid,
-                        ]);
-                        if ($order['return_msg']=='OK'){
-                            if ($order['result_code']=='FAIL'){
-                                Db::rollback();
-                                return Common::return_error($order['err_code_des']);
-                            }else{
-                                $order1 = $app->jssdk->bridgeConfig($order['prepay_id']);//执行二次签名返回参数
-                                self::where('order_no',$order_no)->update(['wx_order'=>$order1]);
-                                $retrun_data['order_no'] = $order_no;
-                                $retrun_data['pay'] = json_decode($order1,true);
-                                Db::commit();
-                                return Common::return_success('成功',$retrun_data);
-                            }
-                        } else {
-                            Db::rollback();
-                            return Common::return_error($order['return_msg']);
-                        }
-                        break;
-                    }else{
-                        $config = $wx->retrunconfig2();
-
-                        try{
-                            $app    =   Factory::payment($config);
-                            $result = $app->order->unify([
-                                'body' => $body,
-                                'out_trade_no' => $out_trade_no,
-                                'total_fee' => $total_fee,
-                                'notify_url' => $notify_url, // 支付结果通知网址,如果不设置则会使用配置里的默认地址
-                                'trade_type' => 'APP', // 请对应换成你的支付方式对应的值类型
-                            ]);
-                            $jssdk      =   $app->jssdk;
-                            $order1 = $jssdk->appConfig($result['prepay_id']);
-                            self::where('order_no',$order_no)->update(['wx_order'=>json_encode($order1,true)]);
-                            Db::commit();
-                            $retrun_data['order_no'] = $order_no;
-                            $retrun_data['pay'] = $order1;
-                            return Common::return_success('成功',$retrun_data);
-
-                        }catch (Exception $e){
-                            Db::rollback();
-                            return Common::return_error('失败');
-                        }
-                        break;
-
-//                        $order = $wx->getPrePayOrder($body, $out_trade_no, $total_fee, $notify_url,$come,$openid);//调用微信支付的方法
-//                        if ($order['return_msg']=='OK'){
-//                            if ($order['result_code']=='FALL'){
-//                                Db::rollback();
-//                                return Common::return_error($order['err_code_des']);
-//                            }else{
-//                                $order1 = $wx->getOrder($order['prepay_id']);//执行二次签名返回参数
-//                                self::where('order_no',$order_no)->update(['wx_order'=>json_encode($order1,true)]);
-//                                $retrun_data['order_no'] = $order_no;
-//                                $retrun_data['pay'] = $order1;
-//                                Db::commit();
-//                                return Common::return_success('成功',$retrun_data);
-//                            }
-//                        } else {
-//                            Db::rollback();
-//                            return Common::return_error($order['return_msg']);
-//                        }
-//                        break;
-                    }
-                case 'zfb':
-                    self::where('id',$recharge_id)->update(['difference_money'=>$price]);
-                    $zfb = new AliPay();//实例化支付宝支付控制器
-                    $body = '话费充值';//支付说明
-                    $out_trade_no = $order_no;//订单号
-                    $total_fee = $price;//支付金额(乘以100)
-                    $notify_url = 'http://'.$_SERVER['SERVER_NAME'].'/api/pay/alipay_mobile_recharge';//回调地址
-                    $order = $zfb->aliPay($body, $total_fee, $out_trade_no, $notify_url);//调用支付宝支付的方法
-                    $retrun_data['order_no'] = $order_no;
-                    $retrun_data['pay'] = $order;
-                    Db::commit();
-                    return Common::return_success('成功',$retrun_data);
-                    break;
-            }
-        }catch (Exception $e) {
-            Db::rollback();
-            return Common::return_error('支付失败');
-        }
-    }
-
-    /**
-     * 支付成功修改订单状态
-     */
-    public static function paySuccess($order_no,$result){
-        $order = self::where('order_no',$order_no)->find();
-        Db::startTrans();
-        try {
-            //余额扣款
-            if ($order['yue_money']>0){
-                //余额支付
-                User::money($order['yue_money'],$order['user_id'],'话费充值支付'.$order['yue_money'].'元');
-            }
-            $order->paid = 1;  //支付成功
-            $order->pay_time = time();
-            $order->return_success_info = json_encode($result,true);
-            //话费充值
-            $juhe = new JuheRecharge();
-            $telczresult = $juhe->telcz($order['mobile'],$order['money'],$order_no);
-            $order->return_info = json_encode($telczresult,true);
-            $order->save();
-            Db::commit();
-            return Common::return_success('支付成功');
-        }catch (Exception $e) {
-            Db::rollback();
-            return Common::return_error('支付失败');
-        }
-    }
-
-    /**
-     * 话费充值记录
-     */
-    public static function mobileRechargeRecord($Nowpage,$limits){
-        $user = app()->session->get('us');
-        $count = self::where('user_id',$user['id'])->where('paid',1)->count();
-        if ($count){
-            $list1 = self::where('user_id',$user['id'])
-                ->where('paid',1)
-                ->field('id,order_no,user_id,mobile,money,yue_money,proportion,difference_money,all_money,pay_type,pay_time')
-                ->order('id desc')
-                ->page($Nowpage,$limits)
-                ->select()->toArray();
-            foreach ($list1 as $k=>$v){
-                $list1[$k]['pay_time'] = date('Y-m-d',$v['pay_time']);
-            }
-        }else{
-            $list1 = [];
-        }
-        $data['count'] = $count;
-        $data['list'] = $list1;
-        return Common::return_success('成功',$data);
-    }
-
-
-
-    /**
-     * 话费充值状态查询
-     */
-    public static function mobileRechargeStatus(){
-        $list = self::where('paid',1)->where('is_to_account',0)->select();
-        if ($list){
-            //话费充值状态查询
-            $juhe = new JuheRecharge();
-            foreach ($list as $k=>$v){
-                $check_sta = $juhe->sta($v['order_no']);
-                if ($check_sta['error_code'] == '0'){
-                    if ($check_sta['result']['game_state'] == "1"){
-                        //充值成功
-                        self::where('id',$v['id'])->update(['is_to_account'=>1,'account_time'=>time(),'return_info'=>json_encode($check_sta,true)]);
-                        self::lilu($v['id']);      //利润分成
-                    }elseif ($check_sta['result']['game_state'] == "9"){
-                        //充值失败
-                        //钱原路返回
-                        if ($v['pay_type']=='yue'){
-                            User::money($v['all_money'],$v['user_id'],'话费充值订单退款'.$v['all_money'].'元',1);
-                            self::where('id',$v['id'])->update(['paid'=>2]);
-                        }else {
-                            if ($v['price'] == $v['all_money']) {
-                                //纯微信/支付宝支付
-                                $refund_money = $v['all_money'];
-                                $refund_yue_money = 0;
-                            } else {
-                                //混合支付
-                                $refund_money = $v['difference_money'];
-                                $refund_yue_money = $v['yue_money'];
-                            }
-                        }
-                        if ($v['pay_type'] == 'weixin'){
-                            $wx = new WxPay();
-                            $out_refund_no = Common::getNewOrderId($v['user_id']);;
-                            $result = $wx->wxrefund($v['order_no'],$out_refund_no,$refund_money,$refund_money);
-                            if(($result['return_code']=='SUCCESS') && ($result['result_code']=='SUCCESS')){
-                                self::where('id',$v['id'])->update(['paid'=>2]);
-                                if ($refund_yue_money){
-                                    User::money($refund_yue_money,$v['user_id'],'话费充值订单退款'.$refund_yue_money.'元',1);
-                                }
-                            }else if(($result['return_code']=='FAIL') || $result['result_code']=='FAIL' ){
-                                //退款失败
-                                self::where('id',$v['id'])->update(['paid'=>-1,'refund_return'=>json_encode($result,true),'return_info'=>json_encode($check_sta,true)]);
-                            }else{
-                                self::where('id',$v['id'])->update(['paid'=>-1,'refund_return'=>json_encode($result,true),'return_info'=>json_encode($check_sta,true)]);
-                            }
-                        }elseif ($v['pay_type'] == 'zfb'){
-                            $zfb = new AliPay();//实例化支付宝支付控制器
-                            $out_refund_no = Common::getNewOrderId($v['user_id']);
-                            $result = $zfb->zfbrefund($v['order_no'],$out_refund_no,$refund_money,'话费充值订单退款');//调用支付宝退款的方法
-                            if (!empty($result) && $result == 10000){
-                                self::where('id',$v['id'])->update(['paid'=>2]);
-                                if ($refund_yue_money){
-                                    User::money($refund_yue_money,$v['user_id'],'话费充值订单退款'.$refund_yue_money.'元',1);
-                                }
-                            }else{
-                                //退款失败
-                                self::where('id',$v['id'])->update(['paid'=>-1,'return_info'=>json_encode($check_sta,true)]);
-                            }
-                        }
-                    }else{
-                        self::where('id',$v['id'])->update(['return_info'=>json_encode($check_sta,true)]);
-                    }
-                }elseif ($check_sta['error_code'] == '208513'){
-                    if ($check_sta['result']['game_state'] == "1"){
-                        //充值成功
-                        self::where('id',$v['id'])->update(['is_to_account'=>1,'account_time'=>time(),'return_info'=>json_encode($check_sta,true)]);
-                        self::lilu($v['id']);      //利润分成
-                    }elseif ($check_sta['result']['game_state'] == "9"){
-                        //充值失败
-                        //钱原路返回
-                        if ($v['pay_type']=='yue'){
-                            User::money($v['all_money'],$v['user_id'],'话费充值订单退款'.$v['all_money'].'元',1);
-                            self::where('id',$v['id'])->update(['paid'=>2]);
-                        }else {
-                            if ($v['price'] == $v['all_money']) {
-                                //纯微信/支付宝支付
-                                $refund_money = $v['all_money'];
-                                $refund_yue_money = 0;
-                            } else {
-                                //混合支付
-                                $refund_money = $v['difference_money'];
-                                $refund_yue_money = $v['yue_money'];
-                            }
-                        }
-                        if ($v['pay_type'] == 'weixin'){
-                            $wx = new WxPay();
-                            $out_refund_no = Common::getNewOrderId($v['user_id']);;
-                            $result = $wx->wxrefund($v['order_no'],$out_refund_no,$refund_money,$refund_money);
-                            if(($result['return_code']=='SUCCESS') && ($result['result_code']=='SUCCESS')){
-                                self::where('id',$v['id'])->update(['paid'=>2]);
-                                if ($refund_yue_money){
-                                    User::money($refund_yue_money,$v['user_id'],'话费充值订单退款'.$refund_yue_money.'元',1);
-                                }
-                            }else if(($result['return_code']=='FAIL') || $result['result_code']=='FAIL' ){
-                                //退款失败
-                                self::where('id',$v['id'])->update(['paid'=>-1,'refund_return'=>json_encode($result,true),'return_info'=>json_encode($check_sta,true)]);
-                            }else{
-                                self::where('id',$v['id'])->update(['paid'=>-1,'refund_return'=>json_encode($result,true),'return_info'=>json_encode($check_sta,true)]);
-                            }
-                        }elseif ($v['pay_type'] == 'zfb'){
-                            $zfb = new AliPay();//实例化支付宝支付控制器
-                            $out_refund_no = Common::getNewOrderId($v['user_id']);
-                            $result = $zfb->zfbrefund($v['order_no'],$out_refund_no,$refund_money,'话费充值订单退款');//调用支付宝退款的方法
-                            if (!empty($result) && $result == 10000){
-                                self::where('id',$v['id'])->update(['paid'=>2]);
-                                if ($refund_yue_money){
-                                    User::money($refund_yue_money,$v['user_id'],'话费充值订单退款'.$refund_yue_money.'元',1);
-                                }
-                            }else{
-                                //退款失败
-                                self::where('id',$v['id'])->update(['paid'=>-1,'return_info'=>json_encode($check_sta,true)]);
-                            }
-                        }
-                    }else{
-                        self::where('id',$v['id'])->update(['return_info'=>json_encode($check_sta,true)]);
-                    }
-                }else{
-                    self::where('id',$v['id'])->update(['return_info'=>json_encode($check_sta,true)]);
-                }
-            }
-        }
-    }
-
-
-    /**
-     * 话费充值  拿出5%分
-     * 一级   拿5%的20%   二级   拿5%的15%    三级   拿5%的10%
-     * (改)一级   拿5%的40%   二级   拿5%的15%    三级   拿5%的10%
-     */
-    public static function lilu($order_id){
-        $order = self::get($order_id);
-        if ($order){
-            $f['status'] = 4;
-            $f['type'] = 0;
-            $f['order_id'] = $order_id;
-            $f['total_price'] = $order['money'];
-            $f['total_proportion'] = 5;
-            $total_profits_money = sprintf("%.2f",substr(sprintf("%.4f", ($order['money'] * 0.05)), 0, -2));  //保留两位小数,不四舍五入
-            $f['total_profits_money'] = $total_profits_money;
-            Db::startTrans();
-            $f['tuijian_proprotion'] = 65;
-            $tuijian_profits_money = sprintf("%.2f",substr(sprintf("%.4f", ($total_profits_money * 0.65)), 0, -2)); //保留两位小数,不四舍五入
-            $f['tuijian_profits_money'] = $tuijian_profits_money;
-            $f['user_id'] = $order['user_id'];
-            $f['fid'] = 1;
-            $f['proportion'] = 40;
-            $f['profits_money'] = sprintf("%.2f",substr(sprintf("%.4f", ($total_profits_money * 0.4)), 0, -2)); //保留两位小数,不四舍五入
-            $ins = '充值话费返利';
-            $f['ins'] =  $ins;
-            OrderTuijian::create($f);
-            User::money($f['profits_money'],$order['user_id'],$ins.$f['profits_money'].'元',1);
-            //查询上级和上上级
-            $users = User::where('id',$order['user_id'])->field('fid,ffid')->find();
-            if ($users['fid']){
-                $ins = '推荐下级充值话费返利';
-                $f['user_id'] = $users['fid'];
-                $f['fid'] = 2;
-                $f['proportion'] = 15;
-                $f['ins'] = $ins;
-                $f['profits_money'] = sprintf("%.2f",substr(sprintf("%.4f", ($total_profits_money * 0.15)), 0, -2)); //保留两位小数,不四舍五入
-                OrderTuijian::create($f);
-                User::money($f['profits_money'],$users['fid'],$ins.$f['profits_money'].'元',1);
-
-                if ($users['ffid']){
-                    $f['user_id'] = $users['ffid'];
-                    $f['fid'] = 3;
-                    $f['proportion'] = 10;
-                    $f['ins'] = $ins;
-                    $f['profits_money'] = sprintf("%.2f",substr(sprintf("%.4f", ($total_profits_money * 0.1)), 0, -2)); //保留两位小数,不四舍五入
-                    OrderTuijian::create($f);
-                    User::money($f['profits_money'],$users['ffid'],$ins.$f['profits_money'].'元',1);
-                }
-            }
-            Db::commit();
-        }
-    }
-}

+ 0 - 21
application/common/model/MobileRechargePrice.php

@@ -1,21 +0,0 @@
-<?php
-
-namespace app\common\model;
-
-use think\Model;
-
-/**
- * 手机充值价格模型
- */
-class MobileRechargePrice Extends Model
-{
-
-    // 开启自动写入时间戳字段
-    protected $autoWriteTimestamp = 'TIMESTAMP';
-    // 定义时间戳字段名
-    protected $createTime = 'create_at';
-    protected $updateTime = '';
-    // 追加属性
-    protected $append = [
-    ];
-}

+ 0 - 23
application/common/model/MoneyLog.php

@@ -1,23 +0,0 @@
-<?php
-
-namespace app\common\model;
-
-use think\Model;
-
-/**
- * 会员余额日志模型
- */
-class MoneyLog Extends Model
-{
-
-    // 表名
-    protected $name = 'user_money_log';
-    // 开启自动写入时间戳字段
-    protected $autoWriteTimestamp = 'TIMESTAMP';
-    // 定义时间戳字段名
-    protected $createTime = 'create_at';
-    protected $updateTime = '';
-    // 追加属性
-    protected $append = [
-    ];
-}

+ 0 - 2332
application/common/model/Order.php

@@ -1,2332 +0,0 @@
-<?php
-
-namespace app\common\model;
-
-use app\common\library\Hecheng;
-use app\common\library\token\driver\Redis;
-use app\common\library\WxMerchPay;
-use think\Model;
-use app\common\library\Common;
-use think\Db;
-use app\common\library\WxPay;
-use app\common\library\AliPay;
-use Workerman\Protocols\Websocket;
-use EasyWeChat\Factory;
-
-/**
- * 订单model
- */
-class Order Extends Model
-{
-
-    // 开启自动写入时间戳字段
-    protected $autoWriteTimestamp = 'TIMESTAMP';
-    // 定义时间戳字段名
-    protected $createTime = 'create_at';
-    protected $updateTime = false;
-    // 追加属性
-    protected $append = [
-    ];
-
-
-
-    public static function hecheng($money,$pay_type){
-        $hc = new Hecheng();
-        return $hc->hecheng($money,$pay_type);
-    }
-
-    /**
-     * 获取可使用优惠券列表
-     */
-    public static function getCouponList($money){
-        $user = app()->session->get('us');
-        CouponUser::couponsTimeOut($user['id']);
-        $list1 = CouponUser::where('user_id',$user['id'])
-            ->where('validity',0)
-            ->where('coupon_price','<',$money)
-            ->where('status',0)
-            ->select();
-        if ($list1) $list1 = $list1->toArray();
-        $list2 = CouponUser::where('user_id',$user['id'])
-            ->where('end_time','>=',time())
-            ->where('validity','neq',0)
-            ->where('coupon_price','<',$money)
-            ->where('status',0)
-            ->select();
-        if ($list2) $list2 = $list2->toArray();
-        $list = array_merge($list1,$list2);
-        array_multisort(array_column($list,'coupon_price'),SORT_DESC,$list);
-        return Common::return_success('成功',$list);
-    }
-
-
-    /**
-     * 判断优惠券是否可以用
-     */
-    public static function checkCoupon($user_id,$coupon_id,$money,$type = 1){
-        $coupon = CouponUser::where('user_id',$user_id)
-            ->where('id',$coupon_id)
-            ->where('coupon_price','<',$money)
-            ->where('status',0)
-            ->find();
-        if (!$coupon){
-            return false;
-        } else{
-            if ($type==1)
-                CouponUser::where('id',$coupon_id)->update(['use_time'=>time(),'status'=>1]);
-            return $coupon->toArray();
-        }
-    }
-
-
-    /**
-     * 下单(普通商品)
-     */
-    public static function setOrder($product_id,$num,$mobile,$note,$pay_type,$difference_pay_type,$coupon_id,$come,$pay_pass=''){
-        $user = app()->session->get('us');
-        $data['user_id'] = $user['id'];
-        $order_no = Common::getNewOrderId($user['id']);
-        $data['order_no'] = $order_no;
-        $data['total_num'] = $num;
-        $verify_code = self::nonceStr();
-        $data['verify_code'] = $verify_code;
-        $data['verify_code_img'] = Common::generate_qrcode($verify_code);
-        $data['product_id'] = $product_id;
-        $prodcut = Product::where('id',$product_id)->where('is_del',1)->find();
-        if (!$prodcut)
-            return Common::return_error('商品不存在');
-        $prodcut = $prodcut->toArray();
-        $data['merch_id'] = $prodcut['merch_id'];
-        $data['mobile'] = $mobile;
-        $data['note'] = $note;
-
-
-        $prodcut_price = $prodcut['price'];
-
-        if ($prodcut['first_price']>0){
-            $order = self::where('user_id',$user['id'])->where('product_id',$product_id)->whereNotIn('status','0,4')->count();
-            if (!$order){
-                if ($num>1)
-                    return Common::return_error('商品数量错误');
-                $prodcut_price = $prodcut['first_price'];
-            }
-        }
-
-
-        $price = $prodcut_price*$num;
-        $data['price'] = $price;
-        $data['pay_type'] = $pay_type;
-        //获取商家的类别
-        $type = UserMerchInfo::where('a.id',$prodcut['merch_id'])
-            ->alias('a')
-            ->join('Category b','a.category_one_id=b.id')
-            ->field('b.type,b.proportion,a.collection_type')
-            ->find();
-        if ($type['type']!=1){
-            return Common::return_error('商品信息错误,无法下单');
-        }
-
-        if ($pay_type=='yue'){
-            if (!$difference_pay_type){
-                $password = User::where('id',$user['id'])->value('with_password');
-                if ($password!=md5($pay_pass)) return Common::return_error('支付密码错误');
-            }
-        }
-
-        $openid = User::where('id',$user['id'])->value('openid');
-
-        $order_sn = date('YmdHis').rand(1000, 9999);//商户订单号;
-        $data['merch_order_no'] = $order_sn;
-        $data['type'] = $type['type'];
-        $merch_proportion = $type['proportion'];
-        $data['merch_proportion'] = $merch_proportion;
-        $merch_proportion_money = sprintf("%.2f",substr(sprintf("%.4f", ($price*($merch_proportion/100))), 0, -2));
-        $data['merch_proportion_money'] = $merch_proportion_money;
-        $data['merch_money'] = $price-$merch_proportion_money;
-        $data['coupon_id'] = $coupon_id ? $coupon_id : 0;
-       // $data['mp3_url'] = self::hecheng($price-$merch_proportion_money);
-        $data['mp3_url'] = self::hecheng($price,$pay_type);
-        Db::startTrans();
-        try {
-            $order = self::create($data);
-            $order_id = $order->id;
-            $order_info = array();
-            $order_info['order_id'] = $order->id;
-            $order_info['product_id'] = $product_id;
-            $order_info['info'] = json_encode($prodcut,true);
-            OrderInfo::create($order_info);
-            Common::order_status($order_id,'订单生成');
-            switch ($pay_type){
-                case 'yue':
-                    $userinfo = User::get($user['id']);
-                    //获取手续费
-                    $poundage_proportion = Config::get_values('poundage_proportion');    //手续费百分比
-                    $user_money_proportion = sprintf("%.2f",substr(sprintf("%.4f", ($price * ($poundage_proportion/100))), 0, -2));  //保留两位小数,不四舍五入;  手续费
-                    $all_price = $price + $user_money_proportion;
-                    if ($userinfo->money >= $all_price){
-                        if ($coupon_id){
-                            $coupon = self::checkCoupon($user['id'],$coupon_id,$all_price);
-                            if (!$coupon)  return Common::return_error('优惠券不可用');
-                            $coupon_price = $coupon['coupon_price'];
-                            $yue_money = bcsub($all_price,$coupon_price,2);
-                        }else{
-                            $coupon_price = 0;
-                            $yue_money = $all_price;
-                        }
-                        //余额支付
-                        User::money($yue_money,$user['id'],'订单支付'.$yue_money.'元');
-                        self::where('id',$order_id)->update(['yue_money'=>$yue_money,'coupon_price'=>$coupon_price,'poundage_proportion'=>$poundage_proportion,'proportion'=>$user_money_proportion,'all_money'=>$all_price,'status'=>1,'pay_time'=>time()]);
-                        Db::commit();
-                        Common::order_status($order_id,'余额支付成功');
-                        $retrun_data['order_no'] = $order_no;
-                        $retrun_data['pay'] = 'yue';
-                        return Common::return_success('支付成功',$retrun_data);
-                    }else{
-                        $user_money_proportion = sprintf("%.2f",substr(sprintf("%.4f", ($userinfo->money * ($poundage_proportion/100))), 0, -2));  //保留两位小数,不四舍五入;  手续费
-                        $all_price = $price + $user_money_proportion;
-                        $difference_money = sprintf("%.2f", $all_price - $userinfo->money);  //差价
-                        if ($coupon_id){
-                            $coupon = self::checkCoupon($user['id'],$coupon_id,$difference_money);
-                            if (!$coupon)  return Common::return_error('优惠券不可用');
-                            $coupon_price = $coupon['coupon_price'];
-                            $difference_money = bcsub($difference_money,$coupon_price,2);
-                        }else{
-                            $coupon_price = 0;
-                        }
-                        self::where('id',$order_id)->update(['yue_money'=>$userinfo->money,'coupon_price'=>$coupon_price,'poundage_proportion'=>$poundage_proportion,'proportion'=>$user_money_proportion,'difference_money'=>$difference_money,'all_money'=>$all_price,'pay_type'=>$difference_pay_type]);
-                        switch ($difference_pay_type){
-                            case 'weixin':
-                                //微信支付
-                                $wx = new WxPay();//实例化微信支付控制器
-                                $body = '订单号' . $order_no;//支付说明
-                                $out_trade_no = $order_no;//订单号
-                                $total_fee = $difference_money * 100;//支付金额(乘以100)
-                                $notify_url = 'https://'.$_SERVER['SERVER_NAME'].'/api/pay/pay_order';//回调地址
-                                if ($come=='weixin'){
-                                    $config = $wx->retrunconfig();
-                                    $config['notify_url'] = $notify_url;
-
-                                    $app = Factory::payment($config);
-                                    $trade_type = "JSAPI";
-                                    $order = $app->order->unify([
-                                        'body' => $body,
-                                        'out_trade_no' => $out_trade_no,
-                                        'total_fee' => $total_fee,
-                                        'trade_type' => $trade_type, // JSAPI--JSAPI支付(或小程序支付)、NATIVE--Native支付、APP--app支付,MWEB--H5支付
-                                        'openid' => $openid,
-                                    ]);
-                                    if ($order['return_msg']=='OK'){
-                                        if ($order['result_code']=='FAIL'){
-                                            Db::rollback();
-                                            return Common::return_error($order['err_code_des']);
-                                        }else{
-                                            $order1 = $app->jssdk->bridgeConfig($order['prepay_id']);//执行二次签名返回参数
-                                            self::where('order_no',$order_no)->update(['wx_order'=>$order1]);
-                                            $retrun_data['order_no'] = $order_no;
-                                            $retrun_data['pay'] = json_decode($order1,true);
-                                            Db::commit();
-                                            return Common::return_success('成功',$retrun_data);
-                                        }
-                                    } else {
-                                        Db::rollback();
-                                        return Common::return_error($order['return_msg']);
-                                    }
-                                    break;
-                                }else{
-                                    $config = $wx->retrunconfig2();
-
-                                    try{
-                                        $app    =   Factory::payment($config);
-                                        $result = $app->order->unify([
-                                            'body' => $body,
-                                            'out_trade_no' => $out_trade_no,
-                                            'total_fee' => $total_fee,
-                                            'notify_url' => $notify_url, // 支付结果通知网址,如果不设置则会使用配置里的默认地址
-                                            'trade_type' => 'APP', // 请对应换成你的支付方式对应的值类型
-                                        ]);
-                                        $jssdk      =   $app->jssdk;
-                                        $order1 = $jssdk->appConfig($result['prepay_id']);
-                                        self::where('order_no',$order_no)->update(['wx_order'=>json_encode($order1,true)]);
-                                        Db::commit();
-                                        $retrun_data['order_no'] = $order_no;
-                                        $retrun_data['pay'] = $order1;
-                                        return Common::return_success('成功',$retrun_data);
-
-                                    }catch (Exception $e){
-                                        Db::rollback();
-                                        return Common::return_error($order['return_msg']);
-                                    }
-                                    break;
-//                                    $order = $wx->getPrePayOrder($body, $out_trade_no, $total_fee, $notify_url,$come,$openid);//调用微信支付的方法
-//                                    if ($order['return_msg']=='OK'){
-//                                        if ($order['result_code']=='FAIL'){
-//                                            Db::rollback();
-//                                            return Common::return_error($order['err_code_des']);
-//                                        }else{
-//                                            $order1 = $wx->getOrder($order['prepay_id']);//执行二次签名返回参数
-//                                            self::where('order_no',$order_no)->update(['wx_order'=>json_encode($order1,true)]);
-//                                            $retrun_data['order_no'] = $order_no;
-//                                            $retrun_data['pay'] = $order1;
-//                                            Db::commit();
-//                                            return Common::return_success('成功',$retrun_data);
-//                                        }
-//                                    } else {
-//                                        Db::rollback();
-//                                        return Common::return_error($order['return_msg']);
-//                                    }
-//                                    break;
-                                }
-                            case 'zfb':
-                                $zfb = new AliPay();//实例化支付宝支付控制器
-                                $body = '全民创商品支付';//支付说明
-                                $out_trade_no = $order_no;//订单号
-                                $total_fee = $difference_money;//支付金额
-                                $notify_url = 'http://'.$_SERVER['SERVER_NAME'].'/api/pay/alipay_order';//回调地址
-                                $order = $zfb->aliPay($body, $total_fee, $out_trade_no, $notify_url);//调用支付宝支付的方法
-                                $retrun_data['order_no'] = $order_no;
-                                $retrun_data['pay'] = $order;
-                                Db::commit();
-                                return Common::return_success('成功',$retrun_data);
-                                break;
-                        }
-                    }
-                    break;
-                case 'weixin':
-                    if ($coupon_id){
-                        $coupon = self::checkCoupon($user['id'],$coupon_id,$price);
-                        if (!$coupon)  return Common::return_error('优惠券不可用');
-                        $coupon_price = $coupon['coupon_price'];
-                        $price2 = bcsub($price,$coupon_price,2);
-                        $difference_money = $price2;
-                    }else{
-                        $difference_money = 0;
-                        $coupon_price = 0;
-                        $price2 = $price;
-                    }
-
-                    self::where('order_no',$order_no)->update(['pay_type'=>$pay_type,'coupon_price'=>$coupon_price,'difference_money'=>$difference_money,'all_money'=>$price]);
-
-                    $wx = new WxPay();//实例化微信torganizationid支付控制器
-
-                    $body = '订单号' . $order_no;//支付说明
-                    $total_fee = $price2 * 100;//支付金额(乘以100)
-                    $notify_url = 'https://'.$_SERVER['SERVER_NAME'].'/api/pay/pay_order';//回调地址
-                    $out_trade_no = $order_no;//订单号
-                    if ($come=='weixin'){
-                        $config = $wx->retrunconfig();
-                        $config['notify_url'] = $notify_url;
-                        //dump($config);die;
-                        $app = Factory::payment($config);
-                        $trade_type = "JSAPI";
-                        $order = $app->order->unify([
-                            'body' => $body,
-                            'out_trade_no' => $out_trade_no,
-                            'total_fee' => $total_fee,
-                            'trade_type' => $trade_type, // JSAPI--JSAPI支付(或小程序支付)、NATIVE--Native支付、APP--app支付,MWEB--H5支付
-                            'openid' => $openid,
-                        ]);
-                        if ($order['return_msg']=='OK'){
-                            if ($order['result_code']=='FAIL'){
-                                Db::rollback();
-                                return Common::return_error($order['err_code_des']);
-                            }else{
-                                $order1 = $app->jssdk->bridgeConfig($order['prepay_id']);//执行二次签名返回参数
-                                self::where('order_no',$order_no)->update(['wx_order'=>$order1]);
-                                $retrun_data['order_no'] = $order_no;
-                                $retrun_data['pay'] = json_decode($order1,true);
-                                Db::commit();
-                                return Common::return_success('成功',$retrun_data);
-                            }
-                        } else {
-                            Db::rollback();
-                            return Common::return_error($order['return_msg']);
-                        }
-                        break;
-                    }else{
-                        $config = $wx->retrunconfig2();
-
-                        try{
-                            $app    =   Factory::payment($config);
-                            $result = $app->order->unify([
-                                'body' => $body,
-                                'out_trade_no' => $out_trade_no,
-                                'total_fee' => $total_fee,
-                                'notify_url' => $notify_url, // 支付结果通知网址,如果不设置则会使用配置里的默认地址
-                                'trade_type' => 'APP', // 请对应换成你的支付方式对应的值类型
-                            ]);
-
-                            $jssdk      =   $app->jssdk;
-                            $order1 = $jssdk->appConfig($result['prepay_id']);
-                            self::where('order_no',$order_no)->update(['wx_order'=>json_encode($order1,true)]);
-                            Db::commit();
-                            $retrun_data['order_no'] = $order_no;
-                            $retrun_data['pay'] = $order1;
-                            return Common::return_success('成功',$retrun_data);
-
-                        }catch (Exception $e){
-                            Db::rollback();
-                            return Common::return_error($order['return_msg']);
-                        }
-                        break;
-
-
-                        //app微信支付
-//                        $order = $wx->getPrePayOrder($body, $out_trade_no, $total_fee, $notify_url,$come,$openid);//调用微信支付的方法
-//                        if ($order['return_msg']=='OK'){
-//                            if ($order['result_code']=='FAIL'){
-//                                Db::rollback();
-//                                return Common::return_error($order['err_code_des']);
-//                            }else{
-//                                $order1 = $wx->getOrder($order['prepay_id']);//执行二次签名返回参数
-//                                self::where('order_no',$order_no)->update(['wx_order'=>json_encode($order1,true)]);
-//                                $retrun_data['order_no'] = $order_no;
-//                                $retrun_data['pay'] = $order1;
-//                                Db::commit();
-//                                return Common::return_success('成功',$retrun_data);
-//                            }
-//                        } else {
-//                            Db::rollback();
-//                            return Common::return_error($order['return_msg']);
-//                        }
-//                        break;
-                    }
-
-                case 'zfb':
-                    if ($coupon_id){
-                        $coupon = self::checkCoupon($user['id'],$coupon_id,$price);
-                        if (!$coupon)  return Common::return_error('优惠券不可用');
-                        $coupon_price = $coupon['coupon_price'];
-                        $price2 = bcsub($price,$coupon_price,2);
-                        $difference_money = $price2;
-                    }else{
-                        $difference_money = 0;
-                        $coupon_price = 0;
-                        $price2 = $price;
-                    }
-                    self::where('order_no',$order_no)->update(['pay_type'=>$pay_type,'coupon_price'=>$coupon_price,'difference_money'=>$difference_money,'all_money'=>$price]);
-                    $zfb = new AliPay();//实例化支付宝支付控制器
-                    $body = '全民创商品支付';//支付说明
-                    $out_trade_no = $order_no;//订单号
-                    $total_fee = $price2;//支付金额(乘以100)
-                    $notify_url = 'http://'.$_SERVER['SERVER_NAME'].'/api/pay/alipay_order';//回调地址
-                    $order = $zfb->aliPay($body, $total_fee, $out_trade_no, $notify_url);//调用支付宝支付的方法
-                    $retrun_data['order_no'] = $order_no;
-                    $retrun_data['pay'] = $order;
-                    Db::commit();
-                    return Common::return_success('成功',$retrun_data);
-                    break;
-            }
-        }catch (Exception $e) {
-            Db::rollback();
-            return Common::return_error('失败');
-        }
-    }
-
-    /**
-     * 下单(加油站商品)
-     */
-    public static function setStationOrder($product_id,$num,$pay_type,$price,$difference_pay_type,$specifications,$coupon_id,$come,$pay_pass=''){
-        $user = app()->session->get('us');
-        $data['user_id'] = $user['id'];
-        $order_no = Common::getNewOrderId($user['id']);
-        $data['order_no'] = $order_no;
-        $data['total_num'] = $num;
-        $verify_code = self::nonceStr();
-        $data['verify_code'] = $verify_code;
-        $data['verify_code_img'] = Common::generate_qrcode($verify_code);
-        $data['product_id'] = $product_id;
-        $prodcut = Product::where('id',$product_id)->where('is_del',1)->find();
-        if (!$prodcut)
-            return Common::return_error('商品不存在');
-        $prodcut = $prodcut->toArray();
-        $data['merch_id'] = $prodcut['merch_id'];
-        $data['price'] = $price;
-        $data['pay_type'] = $pay_type;
-        //获取商家的类别
-        $type = UserMerchInfo::where('a.id',$prodcut['merch_id'])->alias('a')->join('Category b','a.category_one_id=b.id')->field('b.type,b.proportion')->find();
-        if ($type['type']!=2){
-            return Common::return_error('商品信息错误,无法下单');
-        }
-
-        if ($pay_type=='yue'){
-            if (!$difference_pay_type){
-                $password = User::where('id',$user['id'])->value('with_password');
-                if ($password!=md5($pay_pass)) return Common::return_error('支付密码错误');
-            }
-        }
-
-        $openid = User::where('id',$user['id'])->value('openid');
-
-        $order_sn = date('YmdHis').rand(1000, 9999);//商户订单号;
-        $data['merch_order_no'] = $order_sn;
-        $data['type'] = $type['type'];
-        $merch_proportion = $type['proportion'];
-        $data['merch_proportion'] = $merch_proportion;
-        $merch_proportion_money = sprintf("%.2f",substr(sprintf("%.4f", ($price*($merch_proportion/100))), 0, -2));
-        $data['merch_proportion_money'] = $merch_proportion_money;
-        $data['merch_money'] = $price-$merch_proportion_money;
-        $data['coupon_id'] = $coupon_id ? $coupon_id : 0;
-        $data['mp3_url'] = self::hecheng($price,$pay_type);
-        Db::startTrans();
-        try {
-            $order = self::create($data);
-            $order_id = $order->id;
-            $order_info = array();
-            $order_info['order_id'] = $order->id;
-            $order_info['product_id'] = $product_id;
-            $prodcut['product_name'] = $prodcut['product_name'].$specifications;
-            $order_info['info'] = json_encode($prodcut,true);
-            OrderInfo::create($order_info);
-            Common::order_status($order_id,'订单生成');
-            switch ($pay_type){
-                case 'yue':
-                    $userinfo = User::get($user['id']);
-                    //获取手续费
-                    $poundage_proportion = Config::get_values('poundage_proportion');    //手续费百分比
-                    $user_money_proportion = sprintf("%.2f",substr(sprintf("%.4f", ($price * ($poundage_proportion/100))), 0, -2));  //保留两位小数,不四舍五入;  手续费
-                    $all_price = $price + $user_money_proportion;
-                    if ($userinfo->money >= $all_price){
-                        if ($coupon_id){
-                            $coupon = self::checkCoupon($user['id'],$coupon_id,$all_price);
-                            $coupon_price = $coupon['coupon_price'];
-                            $yue_money = bcsub($all_price,$coupon_price,2);
-                        }else{
-                            $coupon_price = 0;
-                            $yue_money = $all_price;
-                        }
-                        //余额支付
-                        User::money($yue_money,$user['id'],'订单支付'.$yue_money.'元');
-                        self::where('id',$order_id)->update(['yue_money'=>$yue_money,'coupon_price'=>$coupon_price,'poundage_proportion'=>$poundage_proportion,'proportion'=>$user_money_proportion,'all_money'=>$all_price,'status'=>1,'pay_time'=>time()]);
-//                        //余额支付
-//                        User::money($all_price,$user['id'],'订单支付'.$all_price.'元');
-//                        self::where('id',$order_id)->update(['yue_money'=>$all_price,'poundage_proportion'=>$poundage_proportion,'proportion'=>$user_money_proportion,'all_money'=>$all_price,'status'=>1,'pay_time'=>time()]);
-                        Db::commit();
-                        Common::order_status($order_id,'余额支付成功');
-                        $retrun_data['order_no'] = $order_no;
-                        $retrun_data['pay'] = 'yue';
-                        return Common::return_success('支付成功',$retrun_data);
-                    }else{
-                        $user_money_proportion = sprintf("%.2f",substr(sprintf("%.4f", ($userinfo->money * ($poundage_proportion/100))), 0, -2));  //保留两位小数,不四舍五入;  手续费
-                        $all_price = $price + $user_money_proportion;
-                        $difference_money = sprintf("%.2f", $all_price - $userinfo->money);  //差价
-                        if ($coupon_id){
-                            $coupon = self::checkCoupon($user['id'],$coupon_id,$difference_money);
-                            $coupon_price = $coupon['coupon_price'];
-                            $difference_money = bcsub($difference_money,$coupon_price,2);
-                        }else{
-                            $coupon_price = 0;
-                        }
-                        self::where('id',$order_id)->update(['yue_money'=>$userinfo->money,'coupon_price'=>$coupon_price,'poundage_proportion'=>$poundage_proportion,'proportion'=>$user_money_proportion,'difference_money'=>$difference_money,'all_money'=>$all_price,'pay_type'=>$difference_pay_type]);
-                        //self::where('id',$order_id)->update(['yue_money'=>$userinfo->money,'poundage_proportion'=>$poundage_proportion,'proportion'=>$user_money_proportion,'difference_money'=>$difference_money,'all_money'=>$all_price,'pay_type'=>$difference_pay_type]);
-                        switch ($difference_pay_type){
-                            case 'weixin':
-                                //微信支付
-                                $wx = new WxPay();//实例化微信支付控制器
-                                $body = '订单号' . $order_no;//支付说明
-                                $out_trade_no = $order_no;//订单号
-                                $total_fee = $difference_money * 100;//支付金额(乘以100)
-                                $notify_url = 'https://'.$_SERVER['SERVER_NAME'].'/api/pay/pay_order';//回调地址
-                                if ($come=='weixin'){
-                                    $config = $wx->retrunconfig();
-                                    $config['notify_url'] = $notify_url;
-
-                                    $app = Factory::payment($config);
-                                    $trade_type = "JSAPI";
-                                    $order = $app->order->unify([
-                                        'body' => $body,
-                                        'out_trade_no' => $out_trade_no,
-                                        'total_fee' => $total_fee,
-                                        'trade_type' => $trade_type, // JSAPI--JSAPI支付(或小程序支付)、NATIVE--Native支付、APP--app支付,MWEB--H5支付
-                                        'openid' => $openid,
-                                    ]);
-                                    if ($order['return_msg']=='OK'){
-                                        if ($order['result_code']=='FAIL'){
-                                            Db::rollback();
-                                            return Common::return_error($order['err_code_des']);
-                                        }else{
-                                            $order1 = $app->jssdk->bridgeConfig($order['prepay_id']);//执行二次签名返回参数
-                                            self::where('order_no',$order_no)->update(['wx_order'=>$order1]);
-                                            $retrun_data['order_no'] = $order_no;
-                                            $retrun_data['pay'] = json_decode($order1,true);
-                                            Db::commit();
-                                            return Common::return_success('成功',$retrun_data);
-                                        }
-                                    } else {
-                                        Db::rollback();
-                                        return Common::return_error($order['return_msg']);
-                                    }
-                                    break;
-                                }else{
-
-                                    $config = $wx->retrunconfig2();
-
-                                    try{
-                                        $app    =   Factory::payment($config);
-                                        $result = $app->order->unify([
-                                            'body' => $body,
-                                            'out_trade_no' => $out_trade_no,
-                                            'total_fee' => $total_fee,
-                                            'notify_url' => $notify_url, // 支付结果通知网址,如果不设置则会使用配置里的默认地址
-                                            'trade_type' => 'APP', // 请对应换成你的支付方式对应的值类型
-                                        ]);
-                                        $jssdk      =   $app->jssdk;
-                                        $order1 = $jssdk->appConfig($result['prepay_id']);
-                                        self::where('order_no',$order_no)->update(['wx_order'=>json_encode($order1,true)]);
-                                        Db::commit();
-                                        $retrun_data['order_no'] = $order_no;
-                                        $retrun_data['pay'] = $order1;
-                                        return Common::return_success('成功',$retrun_data);
-
-                                    }catch (Exception $e){
-                                        Db::rollback();
-                                        return Common::return_error($order['return_msg']);
-                                    }
-                                    break;
-
-//                                    $order = $wx->getPrePayOrder($body, $out_trade_no, $total_fee, $notify_url,$come,$openid);//调用微信支付的方法
-//                                    if ($order['return_msg']=='OK'){
-//                                        if ($order['result_code']=='FAIL'){
-//                                            Db::rollback();
-//                                            return Common::return_error($order['err_code_des']);
-//                                        }else{
-//                                            $order1 = $wx->getOrder($order['prepay_id']);//执行二次签名返回参数
-//                                            self::where('order_no',$order_no)->update(['wx_order'=>json_encode($order1,true)]);
-//                                            $retrun_data['order_no'] = $order_no;
-//                                            $retrun_data['pay'] = $order1;
-//                                            Db::commit();
-//                                            return Common::return_success('成功',$retrun_data);
-//                                        }
-//                                    } else {
-//                                        Db::rollback();
-//                                        return Common::return_error($order['return_msg']);
-//                                    }
-//                                    break;
-                                }
-                            case 'zfb':
-                                $zfb = new AliPay();//实例化支付宝支付控制器
-                                $body = '全民创商品支付';//支付说明
-                                $out_trade_no = $order_no;//订单号
-                                $total_fee = $difference_money * 100;//支付金额(乘以100)
-                                $notify_url = 'http://'.$_SERVER['SERVER_NAME'].'/api/pay/alipay_order';//回调地址
-                                $order = $zfb->aliPay($body, $total_fee, $out_trade_no, $notify_url);//调用支付宝支付的方法
-                                $retrun_data['order_no'] = $order_no;
-                                $retrun_data['pay'] = $order;
-                                Db::commit();
-                                return Common::return_success('成功',$retrun_data);
-                                break;
-                        }
-                    }
-                    break;
-                case 'weixin':
-                    if ($coupon_id){
-                        $coupon = self::checkCoupon($user['id'],$coupon_id,$price);
-                        $coupon_price = $coupon['coupon_price'];
-                        $price = bcsub($price,$coupon_price,2);
-                        $difference_money = $price;
-                    }else{
-                        $difference_money = 0;
-                        $coupon_price = 0;
-                    }
-                    self::where('order_no',$order_no)->update(['pay_type'=>$pay_type,'coupon_price'=>$coupon_price,'difference_money'=>$difference_money,'all_money'=>$price]);
-                    //self::where('order_no',$order_no)->update(['pay_type'=>$pay_type,'all_money'=>$price]);
-                    //微信支付
-                    $wx = new WxPay();//实例化微信支付控制器
-                    $body = '订单号' . $order_no;//支付说明
-                    $out_trade_no = $order_no;//订单号
-                    $total_fee = $price * 100;//支付金额(乘以100)
-                    $notify_url = 'https://'.$_SERVER['SERVER_NAME'].'/api/pay/pay_order';//回调地址
-                    if ($come=='weixin'){
-                        $config = $wx->retrunconfig();
-                        $config['notify_url'] = $notify_url;
-
-                        $app = Factory::payment($config);
-                        $trade_type = "JSAPI";
-                        $order = $app->order->unify([
-                            'body' => $body,
-                            'out_trade_no' => $out_trade_no,
-                            'total_fee' => $total_fee,
-                            'trade_type' => $trade_type, // JSAPI--JSAPI支付(或小程序支付)、NATIVE--Native支付、APP--app支付,MWEB--H5支付
-                            'openid' => $openid,
-                        ]);
-                        if ($order['return_msg']=='OK'){
-                            if ($order['result_code']=='FAIL'){
-                                Db::rollback();
-                                return Common::return_error($order['err_code_des']);
-                            }else{
-                                $order1 = $app->jssdk->bridgeConfig($order['prepay_id']);//执行二次签名返回参数
-                                self::where('order_no',$order_no)->update(['wx_order'=>$order1]);
-                                $retrun_data['order_no'] = $order_no;
-                                $retrun_data['pay'] = json_decode($order1,true);
-                                Db::commit();
-                                return Common::return_success('成功',$retrun_data);
-                            }
-                        } else {
-                            Db::rollback();
-                            return Common::return_error($order['return_msg']);
-                        }
-                        break;
-                    }else{
-                        $config = $wx->retrunconfig2();
-
-                        try{
-                            $app    =   Factory::payment($config);
-                            $result = $app->order->unify([
-                                'body' => $body,
-                                'out_trade_no' => $out_trade_no,
-                                'total_fee' => $total_fee,
-                                'notify_url' => $notify_url, // 支付结果通知网址,如果不设置则会使用配置里的默认地址
-                                'trade_type' => 'APP', // 请对应换成你的支付方式对应的值类型
-                            ]);
-                            $jssdk      =   $app->jssdk;
-                            $order1 = $jssdk->appConfig($result['prepay_id']);
-                            self::where('order_no',$order_no)->update(['wx_order'=>json_encode($order1,true)]);
-                            Db::commit();
-                            $retrun_data['order_no'] = $order_no;
-                            $retrun_data['pay'] = $order1;
-                            return Common::return_success('成功',$retrun_data);
-
-                        }catch (Exception $e){
-                            Db::rollback();
-                            return Common::return_error($order['return_msg']);
-                        }
-                        break;
-//                        $order = $wx->getPrePayOrder($body, $out_trade_no, $total_fee, $notify_url,$come,$openid);//调用微信支付的方法
-//                        if ($order['return_msg']=='OK'){
-//                            if ($order['result_code']=='FAIL'){
-//                                Db::rollback();
-//                                return Common::return_error($order['err_code_des']);
-//                            }else{
-//                                $order1 = $wx->getOrder($order['prepay_id']);//执行二次签名返回参数
-//                                self::where('order_no',$order_no)->update(['wx_order'=>json_encode($order1,true)]);
-//                                $retrun_data['order_no'] = $order_no;
-//                                $retrun_data['pay'] = $order1;
-//                                Db::commit();
-//                                return Common::return_success('成功',$retrun_data);
-//                            }
-//                        } else {
-//                            Db::rollback();
-//                            return Common::return_error($order['return_msg']);
-//                        }
-//                        break;
-                    }
-                case 'zfb':
-                    if ($coupon_id){
-                        $coupon = self::checkCoupon($user['id'],$coupon_id,$price);
-                        $coupon_price = $coupon['coupon_price'];
-                        $price = bcsub($price,$coupon_price,2);
-                        $difference_money = $price;
-                    }else{
-                        $difference_money = 0;
-                        $coupon_price = 0;
-                    }
-                    self::where('order_no',$order_no)->update(['pay_type'=>$pay_type,'coupon_price'=>$coupon_price,'difference_money'=>$difference_money,'all_money'=>$price]);
-                    //self::where('order_no',$order_no)->update(['pay_type'=>$pay_type,'all_money'=>$price]);
-                    $zfb = new AliPay();//实例化支付宝支付控制器
-                    $body = '全民创商品支付';//支付说明
-                    $out_trade_no = $order_no;//订单号
-                    $total_fee = $price;//支付金额(乘以100)
-                    $notify_url = 'http://'.$_SERVER['SERVER_NAME'].'/api/pay/alipay_order';//回调地址
-                    $order = $zfb->aliPay($body, $total_fee, $out_trade_no, $notify_url);//调用支付宝支付的方法
-                    $retrun_data['order_no'] = $order_no;
-                    $retrun_data['pay'] = $order;
-                    Db::commit();
-                    return Common::return_success('成功',$retrun_data);
-                    break;
-            }
-        }catch (Exception $e) {
-            Db::rollback();
-            return Common::return_error('失败');
-        }
-    }
-
-
-    /**
-     * 支付
-     */
-    public static function payOrder($order_no,$come){
-        $user = app()->session->get('us');
-        $order = self::where('order_no',$order_no)->where('user_id',$user['id'])->find();
-        if (!$order)
-            return Common::return_error('订单不存在');
-        $order = $order->toArray();
-        if ($order['status'])
-            return Common::return_error('订单已支付');
-        $product = Product::where('id',$order['product_id'])->where('is_del',1)->find();
-        if (!$product)
-            return Common::return_error('商品不存在');
-
-        $userinfo = User::get($user['id']);
-        if ($order['yue_money']){
-            if ($userinfo->money<$order['yue_money']){
-                return Common::return_error('余额不足');
-            }
-        }
-        $openid = User::where('id',$user['id'])->value('openid');
-        $pay_type = $order['pay_type'];
-        $price = $order['difference_money'] > 0 ? $order['difference_money'] : $order['all_money'];
-        switch ($pay_type){
-            case 'weixin':
-                Db::startTrans();
-                self::where('order_no',$order_no)->update(['pay_type'=>$pay_type]);
-                //微信支付
-                $wx = new WxPay();//实例化微信支付控制器
-                $body = '订单号' . $order_no;//支付说明
-                $out_trade_no = $order_no;//订单号
-                $total_fee = $price * 100;//支付金额(乘以100)
-                $notify_url = 'https://'.$_SERVER['SERVER_NAME'].'/api/pay/pay_order';//回调地址
-                if ($come=='weixin'){
-                    $config = $wx->retrunconfig();
-                    $config['notify_url'] = $notify_url;
-
-                    $app = Factory::payment($config);
-                    $trade_type = "JSAPI";
-                    $order = $app->order->unify([
-                        'body' => $body,
-                        'out_trade_no' => $out_trade_no,
-                        'total_fee' => $total_fee,
-                        'trade_type' => $trade_type, // JSAPI--JSAPI支付(或小程序支付)、NATIVE--Native支付、APP--app支付,MWEB--H5支付
-                        'openid' => $openid,
-                    ]);
-                    if ($order['return_msg']=='OK'){
-                        if ($order['result_code']=='FAIL'){
-                            Db::rollback();
-                            return Common::return_error($order['err_code_des']);
-                        }else{
-                            $order1 = $app->jssdk->bridgeConfig($order['prepay_id']);//执行二次签名返回参数
-                            self::where('order_no',$order_no)->update(['wx_order'=>$order1]);
-                            $retrun_data['order_no'] = $order_no;
-                            $retrun_data['pay'] = json_decode($order1,true);
-                            Db::commit();
-                            return Common::return_success('成功',$retrun_data);
-                        }
-                    } else {
-                        Db::rollback();
-                        return Common::return_error($order['return_msg']);
-                    }
-                    break;
-                }else{
-                    $config = $wx->retrunconfig2();
-
-                    try{
-                        $app    =   Factory::payment($config);
-                        $result = $app->order->unify([
-                            'body' => $body,
-                            'out_trade_no' => $out_trade_no,
-                            'total_fee' => $total_fee,
-                            'notify_url' => $notify_url, // 支付结果通知网址,如果不设置则会使用配置里的默认地址
-                            'trade_type' => 'APP', // 请对应换成你的支付方式对应的值类型
-                        ]);
-                        $jssdk      =   $app->jssdk;
-                        $order1 = $jssdk->appConfig($result['prepay_id']);
-                        self::where('order_no',$order_no)->update(['wx_order'=>json_encode($order1,true)]);
-                        Db::commit();
-                        $retrun_data['order_no'] = $order_no;
-                        $retrun_data['pay'] = $order1;
-                        return Common::return_success('成功',$retrun_data);
-
-                    }catch (Exception $e){
-                        Db::rollback();
-                        return Common::return_error($order['return_msg']);
-                    }
-                    break;
-//                    $order = $wx->getPrePayOrder($body, $out_trade_no, $total_fee, $notify_url,$come,$openid);//调用微信支付的方法
-//                    if ($order['return_msg']=='OK'){
-//                        if ($order['result_code']=='FAIL'){
-//                            Db::rollback();
-//                            return Common::return_error($order['err_code_des']);
-//                        }else{
-//                            $order1 = $wx->getOrder($order['prepay_id']);//执行二次签名返回参数
-//                            self::where('order_no',$order_no)->update(['wx_order'=>json_encode($order1,true)]);
-//                            $retrun_data['order_no'] = $order_no;
-//                            $retrun_data['pay'] = $order1;
-//                            Db::commit();
-//                            return Common::return_success('成功',$retrun_data);
-//                        }
-//                    } else {
-//                        Db::rollback();
-//                        return Common::return_error($order['return_msg']);
-//                    }
-//                    break;
-                }
-            case 'zfb':
-                $zfb = new AliPay();//实例化支付宝支付控制器
-                $body = '商品支付';//支付说明
-                $out_trade_no = $order_no;//订单号
-                $total_fee = $price;//支付金额(乘以100)
-                $notify_url = 'http://'.$_SERVER['SERVER_NAME'].'/api/pay/alipay_order';//回调地址
-                $order = $zfb->aliPay($body, $total_fee, $out_trade_no, $notify_url);//调用支付宝支付的方法
-                $retrun_data['order_no'] = $order_no;
-                $retrun_data['pay'] = $order;
-                Db::commit();
-                return Common::return_success('成功',$retrun_data);
-        }
-    }
-
-
-
-    /**
-     * 支付成功修改订单状态
-     */
-    public static function paySuccess($order_no,$result,$status=1){
-        $order = self::where('order_no',$order_no)->find();
-        if ($order['type']==1 && $order['status']==1)
-            return Common::return_error('已成功修改订单');
-        if ($order['type']==2 && $order['status']==2)
-            return Common::return_error('已成功修改订单');
-        $product = Product::where('id',$order['product_id'])->find();
-        Db::startTrans();
-        try {
-            if ($order['type']==1)
-                $order->status = 1;  //修改状态   待使用
-            elseif ($order['type']==2)
-                $order->status = 2;  //修改状态   待评价
-            $order->pay_time = time();
-            $order->return_success_info = json_encode($result,true);
-            $order->save();
-            if ($order['pay_type']=='weixin' || $order['pay_type']=='zfb'){
-                if ($order['yue_money'] > 0){
-                    //扣除余额
-                    User::money($order['yue_money'],$order['user_id'],'订单支付'.$order['yue_money'].'元');
-                }
-            }
-            //更新销量
-            $product->sales = $product->sales+$order['total_num'];
-            $product->save();
-            Db::commit();
-            if ($status == 1)
-                $zf = '微信支付成功';
-            elseif ($status ==2)
-                $zf = '支付宝支付成功';
-            Common::order_status($order['id'],$zf);
-            if ($order['type']==2){
-                self::tuijianBonus($order['id'],1);      //利润分成
-                self::merch($order['id']); //商家打款
-            }
-            return Common::return_success('支付成功');
-        }catch (Exception $e) {
-            Db::rollback();
-            return Common::return_error('支付失败');
-        }
-    }
-
-
-    /**
-     * 订单列表
-     */
-    public static function orderList($type,$keywords,$Nowpage,$limits){
-        $user = app()->session->get('us');
-        $count = self::orderByWhere($type,$user['id'],$keywords)->alias('a')
-            ->join('UserMerchInfo b','a.merch_id=b.id')
-            ->join('User c','b.user_id=c.id')
-            ->leftJoin('Product d','a.product_id=d.id')
-            ->count();
-        $list = self::orderByWhere($type,$user['id'],$keywords)
-            ->alias('a')
-            ->join('UserMerchInfo b','a.merch_id=b.id')
-            ->join('User c','b.user_id=c.id')
-            ->leftJoin('Product d','a.product_id=d.id')
-            ->field('a.*,b.name as merch_name,c.headimg as merch_headimg')
-            ->order('a.id desc')
-            ->page($Nowpage,$limits)
-            ->select();
-        if ($list){
-            $list = $list->toArray();
-            foreach ($list as $k=>$v){
-                if ($v['order_type']==1){
-                    $product = OrderInfo::where('order_id',$v['id'])->find()->toArray();
-                    $info = json_decode($product['info'],true);
-                    $list[$k]['product_name'] = $info['product_name'];
-                    $list[$k]['product_img'] = explode(',',$info['imgs'])[0];
-                }else{
-                    $list[$k]['product_name'] = '';
-                    $list[$k]['product_img'] = '';
-                }
-                $refund = OrderRefund::where('order_id',$v['id'])->order('id desc')->limit(1)->find();
-                if ($refund)
-                    $refund = $refund->toArray();
-                else
-                    $refund = [];
-                $list[$k]['refund'] = $refund;
-            }
-        }else{
-            $list = [];
-        }
-        return Common::return_success('成功',compact('count','list'));
-    }
-
-    /**
-     * 订单条件
-     */
-    public static function orderByWhere($type,$user_id,$keywords){
-        $model = new self;
-        if ($type == -1){
-            //全部
-            if ($keywords)
-                return $model->where('a.user_id',$user_id)->where('a.is_del',1)->where('b.name|d.product_name','like','%'.$keywords.'%');
-            return $model->where('a.user_id',$user_id)->where('a.is_del',1);
-        }elseif ($type == 4){
-            if ($keywords)
-                return $model->where('a.user_id',$user_id)->where('a.is_del',1)->where('a.status','in','-1,-2')->where('b.name|d.product_name','like','%'.$keywords.'%');
-            return $model->where('a.user_id',$user_id)->where('a.is_del',1)->where('a.status','in','-1,-2');
-        } else{
-            if ($keywords)
-                return $model->where('a.user_id',$user_id)->where('a.is_del',1)->where('a.status',$type)->where('b.name|d.product_name','like','%'.$keywords.'%');
-            return $model->where('a.user_id',$user_id)->where('a.is_del',1)->where('a.status',$type);
-        }
-    }
-
-
-    /**
-     * 订单详情
-     */
-    public static function orderDetail($order_no){
-        $order = self::where('order_no',$order_no)->find();
-        if (!$order)
-            return Common::return_error('订单不存在');
-        $order = $order->toArray();
-        if ($order['order_type']==1){
-            $product = OrderInfo::where('order_id',$order['id'])->find()->toArray();
-            $info = json_decode($product['info'],true);
-            $order['product_name'] = $info['product_name'];
-            $order['product_img'] = explode(',',$info['imgs'])[0];
-            $order['product_info'] = $info['product_info'];
-        }else{
-            $order['product_name'] = '';
-            $order['product_img'] = '';
-            $order['product_info'] = '';
-        }
-        $order['pay_time'] = date('Y-m-d H:i:s',$order['pay_time']);
-        $order['address'] = UserMerchInfo::where('id',$order['merch_id'])->value('address');
-
-        $merch = UserMerchInfo::where('id',$order['merch_id'])->field('id,name,user_id,capita,imgs,address,lat,log')->find()->toArray();
-        $merch['image'] = explode(',',$merch['imgs'])[0];
-        $merch['evaluation']  = UserMerchInfo::merchEvaluation($order['merch_id']);   //评价几颗星
-        $merch['distance']  = Common::getDistance($merch['lat'],$merch['log'])."km";   //距离
-        unset($merch['imgs']);
-        $order['merch'] = $merch;
-
-        $refund = OrderRefund::where('order_id',$order['id'])->where('audit',0)->find();
-        if ($refund)
-            $refund = $refund->toArray();
-        else
-            $refund = [];
-        $order['refund'] = $refund;
-        return Common::return_success('成功',$order);
-    }
-
-    /**
-     * 订单详情
-     */
-    public static function verifyOrderDetail($verify_code){
-        $order = self::where('verify_code',$verify_code)->find();
-        if (!$order)
-            return Common::return_error('订单不存在');
-        $order = $order->toArray();
-        $product = OrderInfo::where('order_id',$order['id'])->find()->toArray();
-        $info = json_decode($product['info'],true);
-        $order['product_name'] = $info['product_name'];
-        $order['product_img'] = explode(',',$info['imgs'])[0];
-        $order['product_info'] = $info['product_info'];
-        $order['pay_time'] = date('Y-m-d H:i:s',$order['pay_time']);
-        $order['address'] = UserMerchInfo::where('id',$order['merch_id'])->value('address');
-        $refund = OrderRefund::where('order_id',$order['id'])->where('audit',0)->find();
-        if ($refund)
-            $refund = $refund->toArray();
-        else
-            $refund = [];
-        $order['refund'] = $refund;
-        return Common::return_success('成功',$order);
-    }
-
-
-    /**
-     * 订单评价
-     */
-    public static function evaluationOrder($order_no,$evaluation,$info,$imgs){
-        $user = app()->session->get('us');
-        $order = self::where('order_no',$order_no)->find();
-        if (!$order)
-            return Common::return_error('订单不存在');
-        if ($order['status']!=2)
-            return Common::return_error('订单状态错误');
-        $data['user_id'] = $user['id'];
-        $data['order_id'] = $order['id'];
-        $data['product_id'] = $order['product_id'];
-        $data['merch_id'] = $order['merch_id'];
-        $data['evaluation'] = $evaluation;
-        $data['info'] = $info;
-        if ($imgs){
-            $imgs = implode(',',$imgs);
-        }
-        $data['imgs'] = $imgs;
-        Db::startTrans();
-        try {
-            ProductEvaluation::create($data);
-            $order->status = 3;
-            $order->save();
-            Db::commit();
-            return Common::return_success('评价成功');
-        }catch (Exception $e) {
-            Db::rollback();
-            return Common::return_error('评价失败');
-        }
-    }
-
-    /**
-     * 取消订单
-     */
-    public static function cancelOrder($order_no){
-        $order = self::where('order_no',$order_no)->find();
-        if (!$order)
-            return Common::return_error('订单不存在');
-        if ($order['status'])
-            return Common::return_error('订单无法取消');
-        Db::startTrans();
-        try {
-            $order->status = 4;
-            $order->save();
-            if ($order->coupon_id){
-                CouponUser::where('id',$order->coupon_id)->update(['status'=>0]);
-            }
-            Db::commit();
-            return Common::return_success('取消成功');
-        }catch (Exception $e) {
-            Db::rollback();
-            return Common::return_error('取消失败');
-        }
-
-    }
-
-    /**
-     * 删除订单
-     */
-    public static function delOrder($order_no){
-        $order = self::where('order_no',$order_no)->find();
-        if (!$order)
-            return Common::return_error('订单不存在');
-        Db::startTrans();
-        try {
-            $order->is_del = 0;
-            $order->del_time = time();
-            $order->save();
-            Db::commit();
-            return Common::return_success('删除成功');
-        }catch (Exception $e) {
-            Db::rollback();
-            return Common::return_error('删除失败');
-        }
-
-    }
-
-    /**
-     * 获取退款原因列表
-     */
-    public static function getRefundWhy(){
-        $value = Config::get_values('order_refund_why');
-        return Common::return_success('成功',explode(',',$value));
-    }
-
-    /**
-     * 申请退款
-     */
-    public static function refundOrder($order_no,$type,$refund_why,$instructions,$imgs){
-        $order = self::where('order_no',$order_no)->find();
-        if (!$order)
-            return Common::return_error('订单不存在');
-        if ($order['status']!=1 && $order['status']!=-3)
-            return Common::return_error('订单状态有误');
-        $data['order_id'] = $order['id'];
-        $data['type'] = $type;
-        $data['refund_why'] = $refund_why;
-        if ($order['pay_type']=='yue'){
-            $data['refund_money'] = 0;
-            $data['refund_yue_money'] = $order['yue_money'];
-        }else{
-            if ($order['price']==$order['all_money']){
-                $data['refund_money'] = $order['all_money'];
-                $data['refund_yue_money'] = 0;
-            }else{
-                $data['refund_money'] = $order['difference_money'];
-                $data['refund_yue_money'] = $order['yue_money'];
-            }
-        }
-        $data['instructions'] = $instructions;
-        if ($imgs){
-            $imgs = implode(',',$imgs);
-        }
-        $data['imgs'] = $imgs;
-        Db::startTrans();
-        try {
-            OrderRefund::create($data);
-            Common::order_status($order['id'],'提起退款申请');
-            $order->status = -1;
-            $order->save();
-            Db::commit();
-            return Common::return_success('提交成功');
-        }catch (Exception $e) {
-            Db::rollback();
-            return Common::return_error('提交失败');
-        }
-    }
-
-    /**
-     * 撤销申请退款
-     */
-    public static function undoRefund($order_no){
-        $order = self::where('order_no',$order_no)->find();
-        if (!$order)
-            return Common::return_error('订单不存在');
-        if ($order['status']!=-1)
-            return Common::return_error('订单状态有误');
-        Db::startTrans();
-        try {
-            $order->status = 1;
-            $order->save();
-            OrderRefund::where('order_id',$order['id'])->where('audit',0)->delete();
-            Common::order_status($order['id'],'撤销退款申请');
-            Db::commit();
-            return Common::return_success('撤销成功');
-        }catch (Exception $e) {
-            Db::rollback();
-            return Common::return_error('撤销失败');
-        }
-    }
-
-    /**
-     * 核销订单
-     */
-    public static function verifyOrder($verify_code){
-        $user = app()->session->get('us');
-        $order = self::where('verify_code',$verify_code)->where('is_del',1)->find();
-        if (!$order)
-            return Common::return_error('订单不存在');
-        if ($order['status']!=1)
-            return Common::return_error('订单状态错误');
-
-        $merch = UserMerchInfo::where('user_id',$user['id'])->where('audit',1)->where('status',1)->find();
-        if (!$merch)
-            return Common::return_error('商家信息错误');
-        if ($order['merch_id']!=$merch['id'])
-            return Common::return_error('订单与商家不匹配');
-        Db::startTrans();
-        try {
-            $order->status = 2;
-            $order->verify_time = time();
-            $order->save();
-            Db::commit();
-            Common::order_status($order['id'],'订单核销成功');
-            self::tuijianBonus($order['id'],1);      //利润分成
-
-            if ($merch['collection_type']==1){
-                self::merch($order['id']); //商家打款
-            }else{
-                UserMerchInfo::money($order->merch_money,$order->merch_id,'订单金额'.$order->merch_money.'元',$order->id,1); //商家加余额
-                self::where('id',$order['id'])->update(['merch_collection_type'=>2,'merch_money_is_to'=>1,'merch_to_return'=>'已到商家余额']);
-                //语音播报
-                $info = ['merch_id'=>$order->merch_id,'url'=>$order->mp3_url];
-                self::websocknotice($info);
-            }
-            self::cashBack($order['order_no']); //给推荐人返钱
-            return Common::return_success('核销成功');
-        }catch (Exception $e) {
-            Db::rollback();
-            return Common::return_error('核销失败');
-        }
-
-    }
-
-
-    /**
-     * 核销订单记录
-     */
-    public static function merchVerifyRecord($Nowpage,$limits,$order_type){
-        $user = app()->session->get('us');
-        $merch_id = UserMerchInfo::where('user_id',$user['id'])->value('id');
-        $model = self::where('a.merch_id',$merch_id)->alias('a')
-            ->join('User b','a.user_id=b.id')
-            ->where('a.status','in','2,3')
-            ->field('a.*,b.nickname,b.headimg')
-            ->where('a.order_type',$order_type);
-        $count = $model->count();
-        if ($count){
-            $list = $model->order('a.verify_time desc')->page($Nowpage,$limits)->order('a.id desc')->select()->toArray();
-            if ($order_type==1){
-                foreach ($list as $k=>$v){
-                    $product = OrderInfo::where('order_id',$v['id'])->find()->toArray();
-                    $info = json_decode($product['info'],true);
-                    $list[$k]['verify_time'] = date('Y-m-d H:i:s',$v['verify_time']);
-                    $list[$k]['product_name'] = $info['product_name'];
-                    $list[$k]['product_img'] = explode(',',$info['imgs'])[0];
-                }
-            }else{
-                foreach ($list as $k=>$v){
-                    $list[$k]['pay_time'] = date('Y-m-d H:i:s',$v['pay_time']);
-                }
-            }
-        }else{
-            $list = [];
-        }
-        return Common::return_success('成功',compact('count','list'));
-    }
-
-
-    /**
-     * 扫码付款
-     * $merch_id 商家ID
-     * $money  付款金额
-     * $note   备注
-     */
-    public static function sweepPay($merch_id,$money,$pay_type,$note,$difference_pay_type,$coupon_id,$come,$pay_pass=''){
-        $user = app()->session->get('us');
-        $merch = UserMerchInfo::where('id',$merch_id)->where('audit',1)->where('status',1)->find();
-        if (!$merch)
-            return Common::return_error('商家不存在或商家异常');
-
-        if ($pay_type=='yue'){
-            if (!$difference_pay_type){
-                $password = User::where('id',$user['id'])->value('with_password');
-                if ($password!=md5($pay_pass)) return Common::return_error('支付密码错误');
-            }
-        }
-
-        $openid = User::where('id',$user['id'])->value('openid');
-
-        //下单
-        $data['user_id'] = $user['id'];
-        $order_no = Common::getNewOrderId($user['id']);
-        $data['order_no'] = $order_no;
-        $data['merch_id'] = $merch_id;
-        $data['note'] = $note;
-        $data['total_num'] = 1;
-        $data['price'] = $money;
-        $data['pay_type'] = $pay_type;
-        $data['type'] = 2;
-        $data['order_type'] = 2;
-        $order_sn = date('YmdHis').rand(1000, 9999);//商户订单号;
-        $data['merch_order_no'] = $order_sn;
-        $verify_code = self::nonceStr();
-        $data['verify_code'] = $verify_code;
-        $data['verify_code_img'] = Common::generate_qrcode($verify_code);
-        $merch_proportion = Category::where('id',$merch['category_one_id'])->value('proportion');
-        $data['merch_proportion'] = $merch_proportion;
-        $merch_proportion_money = sprintf("%.2f",substr(sprintf("%.4f", ($money*($merch_proportion/100))), 0, -2));
-        $data['merch_proportion_money'] = $merch_proportion_money;
-        $merch_money = $money-$merch_proportion_money;
-        $data['merch_money'] = $merch_money;
-        $data['coupon_id'] = $coupon_id ? $coupon_id : 0;
-        $mp3 = self::hecheng($money,$pay_type);
-        $data['mp3_url'] = $mp3;
-        Db::startTrans();
-        try {
-            //存入订单
-            switch ($pay_type){
-                case 'yue':
-                    $order = self::create($data);
-                    $order_id = $order->id;
-                    Common::order_status($order_id,'扫码订单生成');
-                    $userinfo = User::get($user['id']);
-                    //获取手续费
-                    $poundage_proportion = Config::get_values('poundage_proportion');    //手续费百分比
-                    $user_money_proportion = sprintf("%.2f",substr(sprintf("%.4f", ($money * ($poundage_proportion/100))), 0, -2));  //保留两位小数,不四舍五入;  手续费
-                    $all_price = $money + $user_money_proportion;
-                    if ($userinfo->money >= $all_price){
-                        if ($coupon_id){
-                            $coupon = self::checkCoupon($user['id'],$coupon_id,$all_price,2);
-                            if (!$coupon)  return Common::return_error('优惠券不可用');
-                            $coupon_price = $coupon['coupon_price'];
-                            $yue_money = bcsub($all_price,$coupon_price,2);
-                        }else{
-                            $coupon_price = 0;
-                            $yue_money = $all_price;
-                        }
-                        //余额支付
-                        User::money($yue_money,$user['id'],'扫码支付'.$yue_money.'元');
-                        self::where('id',$order_id)->update(['yue_money'=>$yue_money,'coupon_price'=>$coupon_price,'poundage_proportion'=>$poundage_proportion,'proportion'=>$user_money_proportion,'all_money'=>$all_price,'status'=>3,'pay_time'=>time()]);
-//                        //余额支付
-//                        User::money($all_price,$user['id'],'扫码支付'.$all_price.'元');
-//                        self::where('id',$order_id)->update(['yue_money'=>$all_price,'poundage_proportion'=>$poundage_proportion,'proportion'=>$user_money_proportion,'all_money'=>$all_price,'status'=>3,'pay_time'=>time()]);
-                        Db::commit();
-                        CouponUser::where('id',$coupon_id)->update(['use_time'=>time(),'status'=>1]);
-                        Common::order_status($order_id,'余额支付成功');
-                        self::tuijianBonus($order_id,2);      //利润分成
-                        if ($merch->collection_type==1){
-                            self::merch($order['id']); //商家打款
-                        }else{
-                            self::where('id',$order_id)->update(['merch_collection_type'=>2,'merch_money_is_to'=>1,'merch_to_return'=>'已到商家余额']);
-                            UserMerchInfo::money($merch_money,$merch_id,'订单金额'.$merch_money.'元',$order_id,1); //商家加余额
-                            //语音播报
-                            $info = ['merch_id'=>$merch_id,'url'=>$mp3];
-                            self::websocknotice($info);
-                        }
-                        self::cashBack($order_no); //给推荐人返钱
-                        $retrun_data['order_no'] = $order_no;
-                        $retrun_data['pay'] = 'yue';
-                        return Common::return_success('支付成功',$retrun_data);
-                    }else{
-                        $user_money_proportion = sprintf("%.2f",substr(sprintf("%.4f", ($userinfo->money * ($poundage_proportion/100))), 0, -2));  //保留两位小数,不四舍五入;  手续费
-                        $all_price = $money + $user_money_proportion;
-                        $difference_money = sprintf("%.2f", $all_price - $userinfo->money);  //差价
-                        if ($coupon_id){
-                            $coupon = self::checkCoupon($user['id'],$coupon_id,$difference_money,2);
-                            if (!$coupon)  return Common::return_error('优惠券不可用');
-                            $coupon_price = $coupon['coupon_price'];
-                            $difference_money = bcsub($difference_money,$coupon_price,2);
-                        }else{
-                            $coupon_price = 0;
-                        }
-                        self::where('id',$order_id)->update(['yue_money'=>$userinfo->money,'coupon_price'=>$coupon_price,'poundage_proportion'=>$poundage_proportion,'proportion'=>$user_money_proportion,'difference_money'=>$difference_money,'all_money'=>$all_price,'pay_type'=>$difference_pay_type]);
-                        //self::where('id',$order_id)->update(['yue_money'=>$userinfo->money,'poundage_proportion'=>$poundage_proportion,'proportion'=>$user_money_proportion,'difference_money'=>$difference_money,'all_money'=>$all_price,'pay_type'=>$difference_pay_type]);
-                        switch ($difference_pay_type){
-                            case 'weixin':
-                                //微信支付
-                                $wx = new WxPay();//实例化微信支付控制器
-                                $body = '订单号' . $order_no;//支付说明
-                                $out_trade_no = $order_no;//订单号
-                                $total_fee = $difference_money * 100;//支付金额(乘以100)
-                                $notify_url = 'https://'.$_SERVER['SERVER_NAME'].'/api/pay/sweep_pay_order';//回调地址
-                                if ($come=='weixin'){
-                                    $config = $wx->retrunconfig();
-                                    $config['notify_url'] = $notify_url;
-
-                                    $app = Factory::payment($config);
-                                    $trade_type = "JSAPI";
-                                    $order = $app->order->unify([
-                                        'body' => $body,
-                                        'out_trade_no' => $out_trade_no,
-                                        'total_fee' => $total_fee,
-                                        'trade_type' => $trade_type, // JSAPI--JSAPI支付(或小程序支付)、NATIVE--Native支付、APP--app支付,MWEB--H5支付
-                                        'openid' => $openid,
-                                    ]);
-                                    if ($order['return_msg']=='OK'){
-                                        if ($order['result_code']=='FAIL'){
-                                            Db::rollback();
-                                            return Common::return_error($order['err_code_des']);
-                                        }else{
-                                            $order1 = $app->jssdk->bridgeConfig($order['prepay_id']);//执行二次签名返回参数
-                                            self::where('order_no',$order_no)->update(['wx_order'=>$order1]);
-                                            $retrun_data['order_no'] = $order_no;
-                                            $retrun_data['pay'] = json_decode($order1,true);
-                                            Db::commit();
-                                            return Common::return_success('成功',$retrun_data);
-                                        }
-                                    } else {
-                                        Db::rollback();
-                                        return Common::return_error($order['return_msg']);
-                                    }
-                                    break;
-                                }else{
-                                    $config = $wx->retrunconfig2();
-
-                                    try{
-                                        $app    =   Factory::payment($config);
-                                        $result = $app->order->unify([
-                                            'body' => $body,
-                                            'out_trade_no' => $out_trade_no,
-                                            'total_fee' => $total_fee,
-                                            'notify_url' => $notify_url, // 支付结果通知网址,如果不设置则会使用配置里的默认地址
-                                            'trade_type' => 'APP', // 请对应换成你的支付方式对应的值类型
-                                        ]);
-                                        $jssdk      =   $app->jssdk;
-                                        $order1 = $jssdk->appConfig($result['prepay_id']);
-                                        self::where('order_no',$order_no)->update(['wx_order'=>json_encode($order1,true)]);
-                                        Db::commit();
-                                        $retrun_data['order_no'] = $order_no;
-                                        $retrun_data['pay'] = $order1;
-                                        return Common::return_success('成功',$retrun_data);
-
-                                    }catch (Exception $e){
-                                        Db::rollback();
-                                        return Common::return_error($order['return_msg']);
-                                    }
-                                    break;
-//                                    $order = $wx->getPrePayOrder($body, $out_trade_no, $total_fee, $notify_url,$come,$openid);//调用微信支付的方法
-//                                    if ($order['return_msg']=='OK'){
-//                                        if ($order['result_code']=='FAIL'){
-//                                            Db::rollback();
-//                                            return Common::return_error($order['err_code_des']);
-//                                        }else{
-//                                            $order1 = $wx->getOrder($order['prepay_id']);//执行二次签名返回参数
-//                                            self::where('order_no',$order_no)->update(['wx_order'=>json_encode($order1,true)]);
-//                                            $retrun_data['order_no'] = $order_no;
-//                                            $retrun_data['pay'] = $order1;
-//                                            Db::commit();
-//                                            return Common::return_success('成功',$retrun_data);
-//                                        }
-//                                    } else {
-//                                        Db::rollback();
-//                                        return Common::return_error($order['return_msg']);
-//                                    }
-//                                    break;
-                                }
-                            case 'zfb':
-                                $zfb = new AliPay();//实例化支付宝支付控制器
-                                $body = '全民创扫码支付';//支付说明
-                                $out_trade_no = $order_no;//订单号
-                                $total_fee = $difference_money;//支付金额(乘以100)
-                                $notify_url = 'http://'.$_SERVER['SERVER_NAME'].'/api/pay/zfb_sweep_pay_order';//回调地址
-                                $order = $zfb->aliPay($body, $total_fee, $out_trade_no, $notify_url);//调用支付宝支付的方法
-                                $retrun_data['order_no'] = $order_no;
-                                $retrun_data['pay'] = $order;
-                                Db::commit();
-                                return Common::return_success('成功',$retrun_data);
-                                break;
-                        }
-                    }
-                    break;
-                case 'weixin':
-                    $data['all_money'] = $money;
-                    if ($coupon_id){
-                        $coupon = self::checkCoupon($user['id'],$coupon_id,$money,2);
-                        if (!$coupon)  return Common::return_error('优惠券不可用');
-                        $data['coupon_price'] = $coupon['coupon_price'];
-                        $data['difference_money'] =  bcsub($money,$coupon['coupon_price'],2);
-                        $money =  $data['difference_money'];
-                    }
-                    $order = self::create($data);
-                    $order_id = $order->id;
-                    Common::order_status($order_id,'扫码订单生成');
-                    //微信支付
-                    $wx = new WxPay();//实例化微信支付控制器
-                    $body = '订单号' . $order_no;//支付说明
-                    $out_trade_no = $order_no;//订单号
-                    $total_fee = $money * 100;//支付金额(乘以100)
-                    $notify_url = 'https://'.$_SERVER['SERVER_NAME'].'/api/pay/sweep_pay_order';//回调地址
-                    if ($come=='weixin'){
-                        $config = $wx->retrunconfig();
-                        $config['notify_url'] = $notify_url;
-
-                        $app = Factory::payment($config);
-                        $trade_type = "JSAPI";
-                        $order = $app->order->unify([
-                            'body' => $body,
-                            'out_trade_no' => $out_trade_no,
-                            'total_fee' => $total_fee,
-                            'trade_type' => $trade_type, // JSAPI--JSAPI支付(或小程序支付)、NATIVE--Native支付、APP--app支付,MWEB--H5支付
-                            'openid' => $openid,
-                        ]);
-                        if ($order['return_msg']=='OK'){
-                            if ($order['result_code']=='FAIL'){
-                                Db::rollback();
-                                return Common::return_error($order['err_code_des']);
-                            }else{
-                                $order1 = $app->jssdk->bridgeConfig($order['prepay_id']);//执行二次签名返回参数
-                                self::where('order_no',$order_no)->update(['wx_order'=>$order1]);
-                                $retrun_data['order_no'] = $order_no;
-                                $retrun_data['pay'] = json_decode($order1,true);
-                                Db::commit();
-                                return Common::return_success('成功',$retrun_data);
-                            }
-                        } else {
-                            Db::rollback();
-                            return Common::return_error($order['return_msg']);
-                        }
-                        break;
-                    }else{
-                        $config = $wx->retrunconfig2();
-                        try{
-                            $app    =   Factory::payment($config);
-                            $result = $app->order->unify([
-                                'body' => $body,
-                                'out_trade_no' => $out_trade_no,
-                                'total_fee' => $total_fee,
-                                'notify_url' => $notify_url, // 支付结果通知网址,如果不设置则会使用配置里的默认地址
-                                'trade_type' => 'APP', // 请对应换成你的支付方式对应的值类型
-                            ]);
-                            $jssdk      =   $app->jssdk;
-                            $order1 = $jssdk->appConfig($result['prepay_id']);
-                            self::where('order_no',$order_no)->update(['wx_order'=>json_encode($order1,true)]);
-                            Db::commit();
-                            $retrun_data['order_no'] = $order_no;
-                            $retrun_data['pay'] = $order1;
-                            return Common::return_success('成功',$retrun_data);
-
-                        }catch (Exception $e){
-                            Db::rollback();
-                            return Common::return_error($order['return_msg']);
-                        }
-                        break;
-
-//
-//                        $order = $wx->getPrePayOrder($body, $out_trade_no, $total_fee, $notify_url,$come,$openid);//调用微信支付的方法
-//                        if ($order['return_msg']=='OK'){
-//                            if ($order['result_code']=='FAIL'){
-//                                Db::rollback();
-//                                return Common::return_error($order['err_code_des']);
-//                            }else{
-//                                $order1 = $wx->getOrder($order['prepay_id']);//执行二次签名返回参数
-//                                self::where('order_no',$order_no)->update(['wx_order'=>json_encode($order1,true)]);
-//                                $retrun_data['order_no'] = $order_no;
-//                                $retrun_data['pay'] = $order1;
-//                                Db::commit();
-//                                return Common::return_success('成功',$retrun_data);
-//                            }
-//                        } else {
-//                            Db::rollback();
-//                            return Common::return_error($order['return_msg']);
-//                        }
-//                        break;
-                    }
-                case 'zfb':
-                    $data['all_money'] = $money;
-                    if ($coupon_id){
-                        $coupon = self::checkCoupon($user['id'],$coupon_id,$money,2);
-                        if (!$coupon)  return Common::return_error('优惠券不可用');
-                        $data['coupon_price'] = $coupon['coupon_price'];
-                        $data['difference_money'] =  bcsub($money,$coupon['coupon_price'],2);
-                        $money =  $data['difference_money'];
-                    }
-                    $order = self::create($data);
-                    $order_id = $order->id;
-                    Common::order_status($order_id,'扫码订单生成');
-                    $zfb = new AliPay();//实例化支付宝支付控制器
-                    $body = '全民创扫码支付';//支付说明
-                    $out_trade_no = $order_no;//订单号
-                    $total_fee = $money;//支付金额(乘以100)
-                    $notify_url = 'http://'.$_SERVER['SERVER_NAME'].'/api/pay/zfb_sweep_pay_order';//回调地址
-                    $order = $zfb->aliPay($body, $total_fee, $out_trade_no, $notify_url);//调用支付宝支付的方法
-                    $retrun_data['order_no'] = $order_no;
-                    $retrun_data['pay'] = $order;
-                    Db::commit();
-                    return Common::return_success('成功',$retrun_data);
-                    break;
-            }
-        }catch (Exception $e) {
-            Db::rollback();
-            return Common::return_error('失败');
-        }
-    }
-
-    /**
-     * 扫码支付成功修改订单状态
-     */
-    public static function sweepPaySuccess($order_no,$result,$status=1){
-        $order = self::where('order_no',$order_no)->find();
-        if ($order['status']==3)
-            return Common::return_error('已完成订单');
-
-
-        if ($order['status']==4)
-            return Common::return_error('订单已取消');
-
-        $merch_collection_type = UserMerchInfo::where('id',$order->merch_id)->value('collection_type');
-        Db::startTrans();
-        try {
-            $order->status = 3;  //修改状态   已完成
-            $order->pay_time = time();
-            $order->return_success_info = json_encode($result,true);
-            if ($merch_collection_type!=1){
-                $order->merch_collection_type = 2;
-                $order->merch_money_is_to = 1;
-                $order->merch_to_return = '已到商家余额';
-            }
-            $order->save();
-            if ($order['pay_type']=='weixin' || $order['pay_type']=='zfb'){
-                if ($order['yue_money'] > 0){
-                    //扣除余额
-                    User::money($order['yue_money'],$order['user_id'],'扫码支付'.$order['yue_money'].'元');
-                }
-            }
-            Db::commit();
-            if ($status == 1)
-                $zf = '微信支付成功';
-            elseif ($status ==2)
-                $zf = '支付宝支付成功';
-            Common::order_status($order['id'],$zf);
-            self::tuijianBonus($order->id,2);      //利润分成
-            if ($merch_collection_type==1){
-                self::merch($order['id']); //商家打款
-            }else{
-                UserMerchInfo::money($order->merch_money,$order->merch_id,'订单金额'.$order->merch_money.'元',$order->id,1); //商家加余额
-                //语音播报
-                $info = ['merch_id'=>$order->merch_id,'url'=>$order->mp3_url];
-                self::websocknotice($info);
-            }
-            if ($order['coupon_id'])
-                CouponUser::where('id',$order['coupon_id'])->update(['use_time'=>time(),'status'=>1]);
-            self::cashBack($order_no); //给推荐人返钱
-            return Common::return_success('支付成功');
-        }catch (Exception $e) {
-            Db::rollback();
-            return Common::return_error('支付失败');
-        }
-    }
-
-
-
-    /**
-     * 给推荐的商家或用户返金额
-     */
-    public static function cashBack($order_no){
-        $order = self::where('order_no',$order_no)->find();
-        if ($order['coupon_id']){
-            $coupon = CouponUser::where('id',$order['coupon_id'])->find();
-            if ($coupon && $coupon['user_or_merch_id']){
-                //加余额
-                User::money($coupon['user_or_merch_price'],$coupon['user_or_merch_id'],'推荐会员获得'.$coupon['user_or_merch_price'].'元',1,$coupon['user_id']);
-            }
-        }
-        return true;
-    }
-
-
-    /**
-     * 订单超时自动关闭
-     */
-    public static function orderTimeOut(){
-        $time = Config::get_values('store_order_wait_time');
-        $time = 60 * $time;
-        $date = date('Y-m-d H:i:s',time()-($time*60));
-        $list = self::where('status',0)->where('create_at','<',$date)->select();
-        if ($list){
-            foreach ($list as $k=>$v){
-                self::where('id',$v['id'])->update(['status'=>4,'remark'=>'订单未支付已超过系统预设时间']);
-                Common::order_status($v['id'],'订单未支付超过系统预设时间,系统已取消');
-                if ($v['coupon_id'] && $v['order_type']!=2){
-                    CouponUser::where('id',$v['coupon_id'])->update(['status'=>0]);
-                }
-            }
-        }
-    }
-
-
-
-
-    /**
-     * 收款记录
-     */
-    public static function sweepPayRecord($Nowpage,$limits){
-        $user = app()->session->get('us');
-        $merch_id = UserMerchInfo::where('user_id',$user['id'])->value('id');
-        $count = self::where('merch_id',$merch_id)
-            ->where('status',3)
-            ->where('order_type',2)
-            ->count();
-        if ($count){
-            $list = self::where('a.merch_id',$merch_id)
-                ->alias('a')
-                ->where('a.status',3)
-                ->where('a.order_type',2)
-                ->join('User b','a.user_id=b.id')
-                ->field('a.user_id,a.price,a.pay_time,b.nickname,b.headimg')
-                ->order('a.id desc')
-                ->page($Nowpage,$limits)
-                ->select()
-                ->toArray();
-            foreach ($list as $k=>$v){
-                $list[$k]['pay_time'] = date('Y-m-d H:i',$v['pay_time']);
-            }
-        }else{
-            $list = [];
-        }
-        $data['count'] = $count;
-        $data['list'] = $list;
-        return Common::return_success('成功',$data);
-    }
-
-
-
-    /**
-     * 自用算利息
-     */
-    public static function personalUse($order_no,$type){
-        if ($type==1){
-            $order = self::where('order_no',$order_no)->find();
-            if (!$order)
-                return Common::return_error('订单不存在');
-            $merch = UserMerchInfo::where('id',$order['merch_id'])->field('user_id,category_one_id')->find();
-            //获取商家的分成百分比
-            $merch_proportion = Category::where('id',$merch['category_one_id'])->value('proportion');
-            $f['total_proportion'] = $merch_proportion;
-            $total_profits_money = sprintf("%.2f",substr(sprintf("%.4f", ($order['price'] * ($merch_proportion/100))), 0, -2));  //保留两位小数,不四舍五入
-            $tuijian_profits_money = sprintf("%.2f",substr(sprintf("%.4f", ($total_profits_money * 0.4)), 0, -2)); //保留两位小数,不四舍五入
-            $data['price'] = $order['price'];
-            $data['profits_money'] = $tuijian_profits_money;
-        }else{
-            $order = MobileRecharge::where('order_no',$order_no)->find();
-            if (!$order)
-                return Common::return_error('订单不存在');
-            $total_profits_money = sprintf("%.2f",substr(sprintf("%.4f", ($order['money'] * 0.05)), 0, -2));  //保留两位小数,不四舍五入
-            $tuijian_profits_money = sprintf("%.2f",substr(sprintf("%.4f", ($total_profits_money * 0.4)), 0, -2)); //保留两位小数,不四舍五入
-            $data['price'] = $order['money'];
-            $data['profits_money'] = $tuijian_profits_money;
-        }
-        return Common::return_success('成功',$data);
-    }
-
-
-
-    /**
-     * 推荐奖分利润
-     * 推荐商家入驻平台,享有商家在平台销售额的永久利润。
-     * 以下返利均以用户A在某商家消费100元来举例,用户在商家消费100元,商家拿出10%利润进行返利即10元
-     */
-    public static function tuijianBonus($order_id,$status){
-        $order = self::get($order_id);
-        if ($order){
-            $f['status'] = $status;
-            $f['order_id'] = $order_id;
-            $f['total_price'] = $order['price'];
-            $merch = UserMerchInfo::where('id',$order['merch_id'])->field('user_id,category_one_id')->find();
-            //获取商家的分成百分比
-            $merch_proportion = Category::where('id',$merch['category_one_id'])->value('proportion');
-            $f['total_proportion'] = $merch_proportion;
-            $total_profits_money = sprintf("%.2f",substr(sprintf("%.4f", ($order['price'] * ($merch_proportion/100))), 0, -2));  //保留两位小数,不四舍五入
-            $f['total_profits_money'] = $total_profits_money;
-            Db::startTrans();
-            //推荐商家入驻奖;总计15%(1.5)直接推荐10%(1)一代推荐 3%(0.3)  二代推荐 2%(0.2)
-            $f['tuijian_proprotion'] = 15;
-            $tuijian_profits_money = sprintf("%.2f",substr(sprintf("%.4f", ($total_profits_money * 0.15)), 0, -2)); //保留两位小数,不四舍五入
-            $f['tuijian_profits_money'] = $tuijian_profits_money;
-            $f_user = User::where('id',$merch['user_id'])->field('fid,ffid')->find();
-            if ($f_user['fid']){
-                $ins = '商家入驻分佣';
-                $f['user_id'] = $f_user['fid'];
-                $f['fid'] = 1;
-                $f['proportion'] = 10;
-                $f['ins'] = $ins;
-                $f['profits_money'] = sprintf("%.2f",substr(sprintf("%.4f", ($total_profits_money * 0.1)), 0, -2)); //保留两位小数,不四舍五入
-                OrderTuijian::create($f);
-                User::money($f['profits_money'],$f_user['fid'],$ins.$f['profits_money'].'元',1);
-
-                if ($f_user['ffid']){
-                    $ins = '下级推荐商家分佣';
-                    $f['user_id'] = $f_user['ffid'];
-                    $f['fid'] = 2;
-                    $f['proportion'] = 3;
-                    $f['ins'] = $ins;
-                    $f['profits_money'] = sprintf("%.2f",substr(sprintf("%.4f", ($total_profits_money * 0.03)), 0, -2));  //保留两位小数,不四舍五入
-                    OrderTuijian::create($f);
-                    User::money($f['profits_money'],$f_user['ffid'],$ins.$f['profits_money'].'元',1);
-
-                    $fff_id = User::where('id',$f_user['ffid'])->value('fid');
-                    if ($fff_id){
-                        $f['user_id'] = $fff_id;
-                        $f['fid'] = 3;
-                        $f['proportion'] = 2;
-                        $f['ins'] = $ins;
-                        $f['profits_money'] = sprintf("%.2f",substr(sprintf("%.4f", ($total_profits_money * 0.02)), 0, -2)); //保留两位小数,不四舍五入
-                        OrderTuijian::create($f);
-                        User::money($f['profits_money'],$fff_id,$ins.$f['profits_money'].'元',1);
-                    }
-                }
-            }
-
-            //自用加分享用户;总计45% (4.5)  自用;利润20%(2)一代;利润15%  二代;利润10%  (改为65% ,自用加20%)
-            $f['tuijian_proprotion'] = 65;
-            $f['type'] = 2;
-            $tuijian_profits_money = sprintf("%.2f",substr(sprintf("%.4f", ($total_profits_money * 0.65)), 0, -2)); //保留两位小数,不四舍五入
-            $f['tuijian_profits_money'] = $tuijian_profits_money;
-            $ins = '消费返利';
-            $f['user_id'] = $order['user_id'];
-            $f['fid'] = 1;
-            $f['proportion'] = 40;
-            $f['ins'] = $ins;
-            $f['profits_money'] = sprintf("%.2f",substr(sprintf("%.4f", ($total_profits_money * 0.4)), 0, -2)); //保留两位小数,不四舍五入
-            OrderTuijian::create($f);
-            User::money($f['profits_money'],$order['user_id'],$ins.$f['profits_money'].'元',1);
-            //获取推荐人和推荐人的推荐人
-            $tj_user = User::where('id',$order['user_id'])->field('fid,ffid')->find();
-            if ($tj_user['fid']){
-                $ins = '推荐下级消费返利';
-                $f['user_id'] = $tj_user['fid'];
-                $f['fid'] = 2;
-                $f['proportion'] = 15;
-                $f['ins'] = $ins;
-                $f['profits_money'] = sprintf("%.2f",substr(sprintf("%.4f", ($total_profits_money * 0.15)), 0, -2)); //保留两位小数,不四舍五入
-                OrderTuijian::create($f);
-                User::money($f['profits_money'],$tj_user['fid'],$ins.$f['profits_money'].'元',1);
-
-                if ($tj_user['ffid']){
-                    $f['user_id'] = $tj_user['ffid'];
-                    $f['fid'] = 3;
-                    $f['proportion'] = 10;
-                    $f['ins'] = $ins;
-                    $f['profits_money'] = sprintf("%.2f",substr(sprintf("%.4f", ($total_profits_money * 0.1)), 0, -2)); //保留两位小数,不四舍五入
-                    OrderTuijian::create($f);
-                    User::money($f['profits_money'],$tj_user['ffid'],$ins.$f['profits_money'].'元',1);
-                }
-            }
-
-
-            //商家分红挂售; 总计30%  自投平台任意商家,商家产生交易利润后30%归投资所得。(平台设计回报率按千分之0.5—千分之1来浮动计算)  自投分红;20%(2/投该商家份数*自投份数) 一代分红; 5% 二代分红: 5%  注:一代、二代分红始终是自投分红的四分之一
-            //(改为 总计20%  投分红;15%(2/投该商家份数*自投份数)一代分红; 2.5% 二代分红: 2.5%  注:一代、二代分红始终是自投分红的六分之一)
-            $f['tuijian_proprotion'] = 20;
-            $f['type'] = 3;
-            $tuijian_profits_money = sprintf("%.2f",substr(sprintf("%.4f", ($total_profits_money * 0.2)), 0, -2)); //保留两位小数,不四舍五入
-            $f['tuijian_profits_money'] = $tuijian_profits_money;
-            //获取投资用户
-            $all = InvestMerch::where('merch_id',$order['merch_id'])->where('copies','>',0)->where('money','>',0)->sum('copies');
-            if ($all){
-                $touzi = InvestMerch::where('merch_id',$order['merch_id'])->where('copies','>',0)->where('money','>',0)->field('copies,user_id,money')->select()->toArray();
-                $f['note'] = json_encode($touzi,true);
-                $two = sprintf("%.2f",substr(sprintf("%.4f", ($total_profits_money * 0.15)), 0, -2)); //保留两位小数,不四舍五入
-                foreach ($touzi as $k=>$v){
-                    $max_rate = $v['money'] * 0.001; //平台设计回报率最大千分之一
-                    $this_rate = sprintf("%.2f",substr(sprintf("%.4f", ($two/$all)*$v['copies']), 0, -2)); //保留两位小数,不四舍五入
-                    $profits_money = $max_rate > $this_rate ? $this_rate : $max_rate;
-                    $ins = '自投商家分红';
-                    $f['user_id'] = $v['user_id'];
-                    $f['fid'] = 1;
-                    $f['proportion'] = 15;
-                    $f['ins'] = $ins;
-                    $f['profits_money'] = $profits_money;
-                    OrderTuijian::create($f);
-                    User::money($profits_money,$v['user_id'],$ins.$profits_money.'元',1);
-
-                    //推荐用户
-                    $t_j = User::where('id',$v['user_id'])->field('fid,ffid')->find();
-                    if ($t_j['fid']){
-                        $profits_money = sprintf("%.2f",substr(sprintf("%.4f", ($profits_money * 0.16)), 0, -2)); //保留两位小数,不四舍五入
-                        $ins = '下级创投商家分红';
-                        $f['user_id'] = $t_j['fid'];
-                        $f['fid'] = 2;
-                        $f['proportion'] = 2.5;
-                        $f['ins'] = $ins;
-                        $f['profits_money'] = $profits_money;
-                        OrderTuijian::create($f);
-                        User::money($profits_money,$t_j['fid'],$ins.$profits_money.'元',1);
-
-                        if ($t_j['ffid']){
-                            $f['user_id'] = $t_j['ffid'];
-                            $f['fid'] = 3;
-                            $f['proportion'] = 2.5;
-                            $f['ins'] = $ins;
-                            $f['profits_money'] = $profits_money;
-                            OrderTuijian::create($f);
-                            User::money($profits_money,$t_j['ffid'],$ins.$profits_money.'元',1);
-                        }
-                    }
-                }
-            }
-
-            //领导人奖   10%  预存到leader表
-//            $leader['order_id'] = $order_id;
-//            $leader['total_price'] = $order['price'];
-//            $leader['total_proportion'] = $merch_proportion;
-//            $total_profits_money = sprintf("%.2f",substr(sprintf("%.4f", ($order['price'] * ($merch_proportion/100))), 0, -2));  //保留两位小数,不四舍五入
-//            $leader['total_profits_money'] = $total_profits_money;
-//            $leader['tuijian_proprotion'] = 10;   //10%
-//            $leader['tuijian_profits_money'] = sprintf("%.2f",substr(sprintf("%.4f", ($total_profits_money * 0.1)), 0, -2));  //保留两位小数,不四舍五入
-//            Leader::create($leader);
-            Db::commit();
-        }
-    }
-
-
-
-
-    /**
-     * 领导人奖   10%
-     * 每月初执行
-     * 随着团队不断的变大消费金额也会逐渐增加,市场领导人需要有差异化的收益。每级1%,市场出现同级,收益拆分为2份。
-        等级     团队月交易额     领导人收益
-        L1:        5万;           1%
-        L2:        15万;          1%
-        L3:         45万;          1%
-        L4:         135万;         1%
-        L5:         400万;         1%
-        L6:        1200万;         1%
-        L7:        3600万;         1%
-        L8:       1亿;            1%
-        L9:        3亿;            1%
-        L10:       6亿;            1%
-        团队月交易额是每月月底进行计算,用户及用户一代、用户二代在平台产生的所有交易额进行相加,达到基线去计算交易额的利润进行返利
-        平级情况:用户自身的团队交易额和一代团队交易额都达到基线,即视为同级,收益进行拆分
-     */
-    public static function leader(){
-        $user = User::field('id')->select();
-        if ($user){
-            foreach ($user as $k=>$v){
-                $money = 0;
-                $all_count = 1;
-                $one = self::leaderByWhere()->where('user_id',$v['id'])->sum('price');
-                $money = $money+$one;
-                $one_order_array = array();
-                if ($one){
-                    $one_order_array = self::leaderByWhere()->where('user_id',$v['id'])->column('id');
-                }
-                //下级用户消费金额
-                $two_order_array = array();
-                $two_user_ids = User::where('fid',$v['id'])->column('id');
-                if ($two_user_ids){
-                    $two = self::leaderByWhere()->where('user_id','in',$two_user_ids)->sum('price');
-                    if ($two){
-                        $two_order_array = self::leaderByWhere()->where('user_id','in',$two_user_ids)->column('id');
-                    }
-                    $money = $money + $two;
-                }
-                //下下级用户消费金额
-                $three_order_array = array();
-                $three_user_ids = User::where('ffid',$v['id'])->column('id');
-                if ($three_user_ids){
-                    $three = self::leaderByWhere()->where('user_id','in',$three_user_ids)->sum('price');
-                    if ($three){
-                        $three_order_array = self::leaderByWhere()->where('user_id','in',$three_user_ids)->column('id');
-                    }
-                    $money = $money + $three;
-                }
-                $order_ids_array = array_merge($one_order_array,$two_order_array,$three_order_array);
-                $all_profits_money = 0;
-                if ($order_ids_array){
-                    $all_profits_money = Leader::where('order_id','in',$order_ids_array)->sum('tuijian_profits_money');    //总金额
-                }
-                $check_money = Common::checkMoneyGrade($money);
-                if ($check_money){
-                    $f['status'] = 3;
-                    $f['order_id'] = implode(',',$order_ids_array);
-                    $f['total_price'] = $money;
-                    $f['total_profits_money'] = 0;
-                    $f['tuijian_proprotion'] = 10;
-                    $tuijian_profits_money = $all_profits_money;
-                    $f['tuijian_profits_money'] = $tuijian_profits_money;
-                    $f['type'] = 4;
-                    //如果判断有区间
-                    if ($two_user_ids){
-                        $usids = self::leaderByWhere()->where('user_id','in',$two_user_ids)->field('sum(price) as all_price,user_id')->group('user_id')->having('sum(price)>'.$check_money)->select();
-                        $count = count($usids);
-                        if ($count){
-                            $usids = $usids->toArray();
-                            $all_count = $all_count+$count;
-                        }
-                    }
-                    $f['note'] = Common::getNewOrderId($v['id']);
-                    $ins = "团队收益";
-                    $f['ins'] = $ins;
-                    $f['user_id'] = $v['id'];
-                    $f['fid'] = 1;
-                    $f['proportion'] = 1;
-                    $profits_money = sprintf("%.2f",substr(sprintf("%.4f", ($tuijian_profits_money*0.1)), 0, -2));  //保留两位小数,不四舍五入;
-                    $profits_money = sprintf("%.2f",substr(sprintf("%.4f", ($profits_money/$all_count)), 0, -2));  //保留两位小数,不四舍五入;
-                    $f['profits_money'] = $profits_money;
-                    OrderTuijian::create($f);
-                    User::money($profits_money,$v['id'],$ins.$profits_money.'元',1);
-                    if ($all_count>1){
-                        foreach ($usids as $i=>$j){
-                            $f['user_id'] = $j['user_id'];
-                            $f['fid'] = 2;
-                            $f['proportion'] = 1;
-                            $f['profits_money'] = $profits_money;
-                            OrderTuijian::create($f);
-                            User::money($profits_money,$j['user_id'],$ins.$profits_money.'元',1);
-                        }
-                    }
-                }
-            }
-        }
-    }
-
-
-    /**
-     * 领导人奖 where条件
-     */
-    public static function leaderByWhere(){
-        $last = strtotime("-1 month", time());
-        $last_lastday = strtotime(date("Y-m-t 23:59:59", $last));//上个月最后一天
-        $last_firstday = strtotime(date('Y-m-01 00:00:00 ', $last));//上个月第一天
-        $model = new self();
-        return $model->where('status','in','2,3')
-              ->whereBetweenTime('pay_time',$last_firstday,$last_lastday);
-    }
-
-
-    /**
-     * 给商家打钱
-     */
-    public static function merch($order_id){
-//        $info = ['merch_id'=>1,'url'=>'http://tsn.baidu.com/text2audio?tex=%25E5%2585%25A8%25E6%25B0%2591%25E5%2588%259B%25E5%2595%2586%25E5%25AE%25B6%25E5%25BE%25AE%25E4%25BF%25A1%25E6%2594%25B6%25E6%25AC%25BE167%25E5%2585%2583%25E3%2580%2582&per=0&spd=4&pit=5&vol=6&aue=3&cuid=1597121601&tok=24.a6ea181932f396d4c0d3701307ad39f5.2592000.1599713601.282335-21649984&lan=zh&ctp=1'];
-//        self::websocknotice($info);
-        $order = self::where('id',$order_id)->find();
-        if (!$order)
-            return false;
-        if ($order['merch_money_is_to']==1)
-            return false;
-
-        $user_id = UserMerchInfo::where('id',$order['merch_id'])->value('user_id');
-        $order_sn = $order['merch_order_no'];
-//        $order_sn = date('YmdHis').rand(1000, 9999);//商户订单号;
-//        $order->merch_order_no = $order_sn;
-//        $order->save();
-        if ($order['pay_type']=='weixin' || $order['pay_type']=='yue'){
-            $opend_id = UserWeixin::where('user_id',$user_id)->value('openid');
-            if (!$opend_id){
-                self::where('id',$order['id'])->update(['merch_to_return'=>'未绑定微信号']);
-                return false;
-            }
-            $wx = new WxMerchPay();
-            $result = $wx->sendMoney($order['merch_money'],$opend_id,$order_sn,'全民创商家收款');
-            if ($result['return_code']=='SUCCESS' && $result['result_code']=='SUCCESS'){
-                self::where('id',$order['id'])->update(['merch_money_is_to'=>1,'merch_to_return'=>json_encode($result,true)]);
-                //语音播报
-                $info = ['merch_id'=>$order['merch_id'],'url'=>$order['mp3_url']];
-                self::websocknotice($info);
-            }else{
-                //self::where('id',$order['id'])->update(['merch_to_return'=>json_encode($result,true)]);
-                self::where('id',$order['id'])->update(['merch_to_return'=>'失败']);
-            }
-        }elseif ($order['pay_type']=='zfb'){
-            $userinfo = User::where('id',$user_id)->field('zfb_account,zfb_real_name')->find();
-            if (!$userinfo['zfb_account'] || !$userinfo['zfb_real_name']){
-                self::where('id',$order['id'])->update(['merch_to_return'=>'未绑定支付宝']);
-                return false;
-            }
-            $zfb = new AliPay();//实例化支付宝支付控制器
-            $result = $zfb->FundTransToaccount($order_sn, $userinfo['zfb_account'], $userinfo['zfb_real_name'], $order['merch_money'],'全民创商家收款');//调用支付宝支付的方法
-            if (!empty($result) && $result == 10000){
-                self::where('id',$order['id'])->update(['merch_money_is_to'=>1,'merch_to_return'=>json_encode($result,true)]);
-                //语音播报
-                $info = ['merch_id'=>$order['merch_id'],'url'=>$order['mp3_url']];
-                self::websocknotice($info);
-            }else{
-//                if (!$result)
-//                    $result = '稍后重试';
-                self::where('id',$order_id)->update(['merch_to_return'=>'稍后重试']);
-            }
-        }
-    }
-
-    /**
-     * 商家到账失败后续到账
-     */
-    public static function merchToMoney(){
-        $orderlist = self::where('status','in','2,3')
-            ->where('merch_collection_type',1)
-            ->where('merch_money_is_to',0)
-            ->where('merch_order_no','neq',' ')
-            ->where('create_at','>','2020-08-07 10:41:38')
-            ->where('merch_to_return','neq',' ')
-            ->order('id asc')
-            ->select();
-        if ($orderlist){
-            foreach ($orderlist as $k=>$v){
-                $user_id = UserMerchInfo::where('id',$v['merch_id'])->value('user_id');
-                if ($v['pay_type']=='weixin' || $v['pay_type']=='yue'){
-                    $opend_id = UserWeixin::where('user_id',$user_id)->value('openid');
-                    if (!$opend_id){
-                        self::where('id',$v['id'])->update(['merch_to_return'=>'未绑定微信']);
-                        continue;
-                    }else{
-                        $wx = new WxMerchPay();
-                        $result = $wx->sendMoney($v['merch_money'],$opend_id,$v['merch_order_no'],'全民创商家收款');
-                        if ($result['return_code']=='SUCCESS' && $result['result_code']=='SUCCESS'){
-                            self::where('id',$v['id'])->update(['merch_money_is_to'=>1,'merch_to_return'=>json_encode($result,true)]);
-                            //语音播报
-                            $info = ['merch_id'=>$v['merch_id'],'url'=>$v['mp3_url']];
-                            self::websocknotice($info);
-                        }else{
-                            self::where('id',$v['id'])->update(['merch_to_return'=>json_encode($result,true)]);
-                        }
-                    }
-                }elseif ($v['pay_type']=='zfb'){
-                    $userinfo = User::where('id',$user_id)->field('zfb_account,zfb_real_name')->find();
-                    if (!$userinfo['zfb_account'] || !$userinfo['zfb_real_name']){
-                        self::where('id',$v['id'])->update(['merch_to_return'=>'未绑定支付宝']);
-                        continue;
-                    }
-                    $zfb = new AliPay();//实例化支付宝支付控制器
-                    $result = $zfb->FundTransToaccount($v['merch_order_no'], $userinfo['zfb_account'], $userinfo['zfb_real_name'], $v['merch_money'],'全民创商家收款');//调用支付宝支付的方法
-                    if (!empty($result) && $result == 10000){
-                        self::where('id',$v['id'])->update(['merch_money_is_to'=>1,'merch_to_return'=>json_encode($result,true)]);
-                        //语音播报
-                        $info = ['merch_id'=>$v['merch_id'],'url'=>$v['mp3_url']];
-                        self::websocknotice($info);
-                    }else{
-                        if (!$result)
-                            $result = '稍后重试';
-                        self::where('id',$v['id'])->update(['merch_to_return'=>$result]);
-                    }
-                }
-            }
-        }
-
-    }
-
-
-
-    /**
-     * 判断时间内是否有商家到账
-     */
-    public static function selMerchToMoney($merch_id,$seconds){
-        //获取当前秒
-        $now_seconds = date('s');
-        //取余
-        $yu = fmod(floatval($now_seconds),5);
-        $start = time()-$yu-$seconds;
-        $end = time()-$yu;
-        $time = time()-$seconds;
-//        $count = self::where('merch_id',$merch_id)->where('merch_money_is_to',1)->where(function ($query) use ($time){
-//            $query->where('pay_time','>',$time)->whereor('verify_time','>',$time);
-//        })->count();
-        $count = self::where('merch_id',$merch_id)->where('merch_money_is_to',1)->where(function ($query) use ($start,$end){
-            $query->where('pay_time','>=',$start)->where('pay_time','<=',$end);
-        })->whereor(function ($query) use ($start,$end){
-            $query->where('verify_time','>=',$start)->where('verify_time','<=',$end);
-        })->count();
-//        $order = self::where('merch_id',$merch_id)->where('merch_money_is_to',1)->where(function ($query) use ($time){
-//            $query->where('pay_time','>',$time)->whereor('verify_time','>',$time);
-//        })->order('id desc')->limit(1)->field('price,mp3_url,pay_type')->find();
-        $order = self::where('merch_id',$merch_id)->where('merch_money_is_to',1)->where(function ($query) use ($start,$end){
-            $query->where('pay_time','>=',$start)->where('pay_time','<=',$end);
-        })->whereor(function ($query) use ($start,$end){
-            $query->where('verify_time','>=',$start)->where('verify_time','<=',$end);
-        })->order('id desc')->limit(1)->field('price,mp3_url,pay_type')->find();
-        $money = $order['price'] ? $order['price'] : 0;
-        $data['count'] = $count;
-        $data['money'] = $money;
-        $data['pay_type'] = $order['pay_type'];
-        $data['url'] = $order['mp3_url'];
-        return $data;
-    }
-
-
-    /**
-     * 生成订单唯一核销码
-     * @return string
-     */
-    public static function nonceStr(){
-        //随机生成8位数字
-        static $seed = array(0,1,2,3,4,5,6,7,8,9);
-        $str = '';
-        for($i=0;$i<8;$i++) {
-            $rand = rand(0,count($seed)-1);
-            $temp = $seed[$rand];
-            $str .= $temp;
-            unset($seed[$rand]);
-            $seed = array_values($seed);
-        }
-        if (self::check_noncestr($str)) self::nonceStr();
-        return $str;
-    }
-
-    /**
-     * 查看核销码是否存在
-     */
-    public static function check_noncestr($str){
-        $order = self::where('verify_code',$str)->find();
-        if ($order)
-            return true;
-        return false;
-    }
-
-
-    /**
-     * @param $info
-     * websock通知
-     */
-    public static function websocknotice($info){
-        $data['merch_id'] = $info['merch_id'];
-        $data['mp3'] = $info['url'];
-        $data['create_at'] = date('Y-m-d H:i:s');
-        RedisTongzhi::create($data);
-        if ($_SERVER['HTTP_HOST']!='test.qmc.hdlkeji.com'){
-            $info = json_encode($info,true);
-            $redis = new \Rediscache();
-            $result = $redis->rPush("merch_tongzhi",$info);
-        }
-
-        //直接把数据转发到ws处理
-//        $client = new \swoole_http_client('0.0.0.0', 8000, false);
-//        $client->on('message', function($client, $frame) {
-//
-//        });
-//        $client->upgrade('/', function($client) use ($info) {
-//            //发送json消息
-//            $client->push($info);
-//            usleep(1000);
-//            $client->close();
-//        });
-//        $client->start();
-
-//        echo  "<script>
-//            var websocket = new WebSocket('ws://47.111.157.216:8000');
-//            websocket.onopen = function (evt) {
-//                if (websocket.readyState == 1) {
-//                    console.log('WebSocket 连接成功...');
-//                    websocket.send('$info');
-//                } else {
-//                    console.log('WebSocket 连接失败...');
-//                }
-//            };
-//            websocket.onclose = function (evt) {
-//                console.log(\"Disconnected\");
-//            };
-//            //监听服务端回推的消息
-//            websocket.onmessage = function (evt) {
-//                console.log('返回');
-//            };
-//            websocket.onerror = function (evt, e) {
-//                console.log('Error occured: ' + evt.data);
-//            };
-//            </script>";
-    }
-
-
-    public static function bu(){
-        $orders = self::where('merch_id',43)->column('id');
-        if ($orders){
-            $tuijian = OrderTuijian::where('order_id','in',$orders)->where('type',2)->where('fid','in','2,3')->select();
-            foreach ($tuijian as $k=>$v){
-                $log = Db::name('UserMoneyLog')->where('user_id',$v['user_id'])->where('pm',1)->where('change_money',$v['profits_money'])->where('create_at',$v['create_at'])->find();
-                if (!$log){
-                    echo $v['user_id']."--".$v['profits_money']."<br />";
-//                    $user = User::get($v['user_id']);
-//                    if ($user)
-//                    {
-//                        $before = $user->money;
-//                        $after = $user->money + $v['profits_money'];
-//                        //更新会员信息
-//                        $user->save(['money' => $after]);
-//                        //写入日志
-//                        MoneyLog::create(['user_id' => $v['user_id'],'pm' => 1, 'change_money' => $v['profits_money'], 'before' => $before, 'after' => $after, 'title' => $v['ins'].$v['profits_money'].'元']);
-//                    }
-                }
-            }
-        }
-    }
-
-
-
-    public static function jian(){
-
-        $order = self::where('order_no','2020101910069257101984')->find();
-
-        $merch_collection_type = UserMerchInfo::where('id',$order->merch_id)->value('collection_type');
-        if (!$merch_collection_type==1)
-            echo 2222;
-        else
-            echo 111;
-
-
-
-//        $list = OrderTuijian::whereIn('order_id','1195,1196,1197,1198')->select();
-//        foreach ($list as $k=>$v){
-//            $money_log = MoneyLog::where('user_id',$v['user_id'])->where('change_money',$v['profits_money'])->where('create_at',$v['create_at'])->find();
-//            if ($money_log){
-               // $user = Db::name('User')->where('id',$v['user_id'])->find();
-//                User::where('id',$v['user_id'])->update(['money'=>bcsub($user['money'],$money_log['change_money'],2)]);
-//                MoneyLog::where('id',$money_log['id'])->delete();
-//            }
-//        }
-    }
-
-
-
-    public static function jianqu(){
-        $list = MerchMoneyLog::where('a.user_id',42)->alias('a')
-            ->field('a.*,b.merch_collection_type,b.merch_money_is_to,b.merch_to_return')
-            ->join('Order b','a.order_id=b.id')->select()->toArray();
-        foreach ($list as $k=>$v){
-            if ($v['merch_collection_type']==1 && $v['merch_money_is_to']==0){
-                self::where('id',$v['order_id'])->update(['merch_collection_type'=>2,'merch_money_is_to'=>1,'merch_to_return'=>'已到商家余额']);
-            }
-            if ($v['merch_collection_type']==1 && $v['merch_money_is_to']==1){
-//                $user = Db::name('UserMerchInfo')->where('id',$v['user_id'])->find();
-//                echo $v['id']."<br />";
-//                UserMerchInfo::where('id',$v['user_id'])->update(['money'=>bcsub($user['money'],$v['change_money'],2)]);
-//                MerchMoneyLog::where('id',$v['id'])->delete();
-            }
-        }
-    }
-
-
-
-}

+ 0 - 25
application/common/model/OrderInfo.php

@@ -1,25 +0,0 @@
-<?php
-
-namespace app\common\model;
-
-use think\Model;
-use app\common\library\Common;
-
-/**
- * 订单详情model
- */
-class OrderInfo Extends Model
-{
-
-    // 开启自动写入时间戳字段
-    protected $autoWriteTimestamp = 'TIMESTAMP';
-    // 定义时间戳字段名
-    protected $createTime = 'create_at';
-    protected $updateTime = false;
-    // 追加属性
-    protected $append = [
-    ];
-    
-
-
-}

+ 0 - 22
application/common/model/OrderRefund.php

@@ -1,22 +0,0 @@
-<?php
-
-namespace app\common\model;
-
-use think\Model;
-
-/**
- * 订单退款model
- */
-class OrderRefund extends Model
-{
-    // 自动写入时间戳字段
-    protected $autoWriteTimestamp = 'TIMESTAMP';
-    // 定义时间戳字段名
-    protected $createTime = 'create_at';
-    protected $updateTime = false;
-    // 追加属性
-    protected $append = [
-    ];
-
-
-}

+ 0 - 25
application/common/model/OrderStatus.php

@@ -1,25 +0,0 @@
-<?php
-
-namespace app\common\model;
-
-use think\Model;
-use app\common\library\Common;
-use think\Db;
-
-
-/**
- * 订单model
- */
-class OrderStatus Extends Model
-{
-
-    // 开启自动写入时间戳字段
-    protected $autoWriteTimestamp = 'int';
-    // 定义时间戳字段名
-    protected $createTime = 'change_time';
-    protected $updateTime = false;
-    // 追加属性
-    protected $append = [
-    ];
-
-}

+ 0 - 21
application/common/model/OrderTuijian.php

@@ -1,21 +0,0 @@
-<?php
-
-namespace app\common\model;
-
-use think\Model;
-
-/**
- * 推荐分成
- */
-class OrderTuijian Extends Model
-{
-
-    // 开启自动写入时间戳字段
-    protected $autoWriteTimestamp = 'TIMESTAMP';
-    // 定义时间戳字段名
-    protected $createTime = 'create_at';
-    protected $updateTime = false;
-
-
-
-}

+ 0 - 25
application/common/model/PopEnvelopHistory.php

@@ -1,25 +0,0 @@
-<?php
-
-namespace app\common\model;
-
-use think\Model;
-use app\common\library\Common;
-use think\Db;
-
-/**
- * 弹出红包记录
- */
-class PopEnvelopHistory Extends Model
-{
-
-    // 开启自动写入时间戳字段
-    protected $autoWriteTimestamp = 'TIMESTAMP';
-    // 定义时间戳字段名
-    protected $createTime = 'create_at';
-    protected $updateTime = false;
-    // 追加属性
-    protected $append = [
-    ];
-
-
-}

+ 0 - 312
application/common/model/Product.php

@@ -1,312 +0,0 @@
-<?php
-
-namespace app\common\model;
-
-use think\Model;
-use app\common\library\Common;
-use think\Db;
-
-/**
- * 商品信息model
- */
-class Product Extends Model
-{
-
-    // 开启自动写入时间戳字段
-    protected $autoWriteTimestamp = 'TIMESTAMP';
-    // 定义时间戳字段名
-    protected $createTime = 'create_at';
-    protected $updateTime = 'update_at';
-    // 追加属性
-    protected $append = [
-    ];
-
-
-    /**
-     * 添加、编辑商品信息(普通商品)
-     * @param $data
-     * @return array
-     */
-    public static function add_edit($data){
-        $user =  app()->session->get('us');
-        $userinfo = User::where('id',$user['id'])->find();
-        if ($userinfo['type'] != 2)
-            return Common::return_error('非商家,无法添加!');
-        $merchInfo = UserMerchInfo::where('user_id',$user['id'])->where('audit',1)->where('status',1)->find();
-        if (!$merchInfo)
-            return Common::return_error('商家审核未通过或被禁用,无法添加!');
-
-        $cate_id = $merchInfo['category_one_id'];
-        $twocate = Category::get($cate_id);
-        if ($twocate['type'] != 1){
-            return Common::return_error('商家类别错误,无法添加!');
-        }
-
-        $data['label'] = implode(',',$data['label']);
-        $data['imgs'] = implode(',',$data['imgs']);
-
-        Db::startTrans();
-        try {
-            if ($data['id']){
-                $data['update_at'] = date('Y-m-d H:i:s');
-                self::where('id',$data['id'])->update($data);
-                Db::commit();
-                self::price_log($data['id'],$data['price'],$data['first_price']);
-                return Common::return_success('编辑成功');
-            }else{
-                $data['user_id'] = $userinfo->id;
-                $data['merch_id'] = $merchInfo->id;
-                $product = self::create($data);
-                Db::commit();
-                self::price_log($product->id,$data['price'],$data['first_price']);
-                return Common::return_success('添加成功');
-            }
-        } catch (Exception $e) {
-            Db::rollback();
-            return Common::return_error('失败');
-        }
-    }
-
-
-    /**
-     * 商品价格变动记录
-     */
-    public static function price_log($product_id,$o_price,$first_price){
-         $data['product_id'] = $product_id;
-         $data['o_price'] = $o_price;
-         $data['first_price'] = $first_price;
-         ProductPriceLog::create($data);
-    }
-
-
-
-    /**
-     * 添加、编辑商品信息(加油站商品)
-     * @param $data
-     * @return array
-     */
-    public static function add_edit_station($data){
-        $user =  app()->session->get('us');
-        $userinfo = User::where('id',$user['id'])->find();
-        if ($userinfo['type'] != 2)
-            return Common::return_error('非商家,无法添加!');
-        $merchInfo = UserMerchInfo::where('user_id',$user['id'])->where('audit',1)->where('status',1)->find();
-        if (!$merchInfo)
-            return Common::return_error('商家审核未通过或被禁用,无法添加!');
-
-        $cate_id = $merchInfo['category_one_id'];
-        $twocate = Category::get($cate_id);
-        if ($twocate['type'] != 2){
-            return Common::return_error('商家类别错误,无法添加!');
-        }
-        $data['specifications'] = json_encode($data['specifications'],true);
-        $data['imgs'] = implode(',',$data['imgs']);
-        Db::startTrans();
-        try {
-            if ($data['id']){
-                $data['update_at'] = date('Y-m-d H:i:s');
-                self::where('id',$data['id'])->update($data);
-                Db::commit();
-                return Common::return_success('编辑成功');
-            }else{
-                $data['user_id'] = $userinfo->id;
-                $data['merch_id'] = $merchInfo->id;
-                self::create($data);
-                Db::commit();
-                return Common::return_success('添加成功');
-            }
-        } catch (Exception $e) {
-            Db::rollback();
-            return Common::return_error('失败');
-        }
-    }
-
-    /**
-     * 获取商品信息列表
-     */
-    public static function product_list($Nowpage,$limits){
-        $user =  app()->session->get('us');
-        $count = self::where('is_del',1)->where('user_id',$user['id'])->count();
-        $data['count'] = $count;
-        $list = self::where('is_del',1)->where('user_id',$user['id'])->page($Nowpage, $limits)->order('id desc')->select();
-        if ($list){
-            $list = $list->toArray();
-            foreach ($list as $k=>$v){
-                $list[$k]['label'] = explode(',',$v['label']);
-                $list[$k]['image'] = explode(',',$v['imgs'])[0];
-                $list[$k]['imgs']  = explode(',',$v['imgs']);
-                $list[$k]['specifications'] = json_decode($v['specifications'],true);
-            }
-        } else{
-            $list =  [];
-        }
-        $data['list'] = $list;
-        return Common::return_success('成功',$data);
-    }
-
-    /**
-     * 删除商品信息
-     */
-    public static function del_product($id){
-        $user =  app()->session->get('us');
-        $job = self::get($id);
-        if (!$job)
-            return Common::return_error('信息不存在');
-        if ($job->user_id!=$user['id'])
-            return Common::return_error('无法删除');
-        $job->is_del = 0;
-        if ($job->save())
-            return Common::return_success('删除成功');
-        else
-            return Common::return_error('删除失败');
-    }
-
-
-
-    /**
-     * 商品列表
-     */
-    public static function productList($merch_id,$Nowpage,$limits){
-        $user = app()->session->get('us');
-        $merch = UserMerchInfo::where('id',$merch_id)->where('audit',1)->where('status',1)->find();
-        if (!$merch)
-            return Common::return_error('商家不存在');
-        //商品
-        $product['count'] = self::where('merch_id',$merch_id)->where('is_del',1)->order('id desc')->count();
-        $product_list = self::where('merch_id',$merch_id)->where('is_del',1)
-            ->order('id desc')->field('id,merch_id,user_id,product_name,price,product_info,imgs,specifications')
-            ->page($Nowpage, $limits)
-            ->select();
-        if ($product_list){
-            $product_list = $product_list->toArray();
-            foreach ($product_list as $k=>$v){
-                if ($v['price']==0){
-                    $product_list[$k]['price'] = json_decode($v['specifications'],true)[0]['price'];
-                    $product[$k]['is_first_buy'] = false;
-                }else{
-                    if ($v['first_price']>0){
-                        $order = Order::where('user_id',$user['id'])->where('product_id',$v['id'])->whereNotIn('status','0,4')->count();
-                        if ($order){
-                            $product[$k]['is_first_buy'] = false;
-                        }else{
-                            $product[$k]['is_first_buy'] = true;
-                            $product[$k]['price'] = $v['first_price'];
-                        }
-                    }else{
-                        $product[$k]['is_first_buy'] = false;
-                    }
-                }
-                $product_list[$k]['image'] = explode(',',$v['imgs'])[0];
-                $product_list[$k]['is_collect'] = self::checkUserCollect($v['id']) ? 'true' : 'false';
-                unset($product_list[$k]['imgs']);
-            }
-            $product['list'] = $product_list;
-        } else{
-            $product['list'] = [];
-        }
-        return Common::return_success('成功',$product);
-    }
-
-    /**
-     * 商品详情页
-     */
-    public static function productDetail($product_id,$Nowpage,$limits){
-        $user = app()->session->get('us');
-        $detail = self::where('id',$product_id)->where('is_del',1)->find();
-        if (!$detail)
-            return Common::return_error('商品不存在');
-
-        $merch = UserMerchInfo::where('id',$detail['merch_id'])->where('audit',1)->where('status',1)->field('id,user_id,name,category_one_id,category_two_id,log,lat,address,phone,capita,imgs,lat,log')->find()->toArray();
-        $merch['imgs'] = explode(',',$merch['imgs']);
-        $merch['evaluation'] = UserMerchInfo::merchEvaluation($merch['id']);  //评价几颗星
-        $merch['distance']  = Common::getDistance($merch['lat'],$merch['log'])."km";   //距离
-
-        $detail = $detail->toArray();
-
-        if ($detail['price']==0){
-            $detail['is_first_buy'] = false;
-        }else{
-            if ($detail['first_price']>0){
-                $order = Order::where('user_id',$user['id'])->where('product_id',$product_id)->whereNotIn('status','0,4')->count();
-                if ($order){
-                    $detail['is_first_buy'] = false;
-                }else{
-                    $detail['is_first_buy'] = true;
-                    $detail['price'] = $detail['first_price'];
-                }
-            }else{
-                $detail['is_first_buy'] = false;
-            }
-        }
-
-
-        $d[0]['id'] = $detail['id'];
-        $d[0]['product_name'] = $detail['product_name'];
-        $productlist = self::where('merch_id',$detail['merch_id'])->where('id','<>',$product_id)->where('is_del',1)->field('id,product_name')->select();
-        if ($productlist){
-            $product_list = array_merge($d,$productlist->toArray());
-        }else{
-            $product_list = $d;
-        }
-        self::browseAdd($product_id);  //浏览数
-        //获取商家的类别
-        $type = UserMerchInfo::where('a.id',$detail['merch_id'])->alias('a')->join('Category b','a.category_one_id=b.id')->value('b.type');
-        $detail['imgs'] = $detail['imgs'] ? explode(',',$detail['imgs']) : [];
-        $detail['type'] = $type;
-        $detail['label'] = explode(',',$detail['label']);
-        $detail['specifications'] = json_decode($detail['specifications'],true);
-        $dates =  date('Y-m');
-        $timebegin = strtotime($dates) ; //开始时间戳
-        $day = date('t',$timebegin);
-        $timeend = $timebegin + 86400 * $day  - 1; //结束时间戳
-        $start = date('Y-m-d H:i:s',$timebegin);
-        $end = date('Y-m-d H:i:s',$timeend);
-        //商品月销量
-        $detail['sales'] = Order::where('product_id',$product_id)->where('status','in','2,3')->count();
-        //$detail['sales'] = Order::where('product_id',$product_id)->whereBetweenTime('create_at',$start,$end)->where('status','in','2,3')->count();
-        //评论
-        $evaluation['count'] = ProductEvaluation::where('product_id',$product_id)->where('is_del',1)->count();
-        $evaluation_list = ProductEvaluation::where('a.product_id',$product_id)
-            ->alias('a')
-            ->where('a.is_del',1)
-            ->join('User b','a.user_id=b.id')
-            ->field('a.*,b.nickname,b.headimg')
-            ->order('a.is_optimization desc,a.id desc')
-            ->page($Nowpage, $limits)
-            ->select();
-        if ($evaluation_list){
-            $evaluation_list = $evaluation_list->toArray();
-            foreach ($evaluation_list as $k=>$v){
-                $evaluation_list[$k]['imgs'] = $v['imgs'] ? explode(',',$v['imgs']) : [];
-                $evaluation_list[$k]['create_at'] = date('Y-m-d',strtotime($v['create_at']));
-                $evaluation_list[$k]['is_zan'] = ProductEvaluation::checkUserEvaluationZan($v['id']) ? 'true' : 'false';
-            }
-            $evaluation['list'] = $evaluation_list;
-        }else {
-            $evaluation['list'] = [];
-        }
-        return Common::return_success('成功',compact('product_list','detail','evaluation','merch'));
-    }
-
-
-    /**
-     * 判断用户是否收藏商品
-     */
-    public static function checkUserCollect($product_id){
-        $user = app()->session->get('us');
-        if ($user){
-            $collect = ProductCollect::where('user_id',$user['id'])->where('product_id',$product_id)->count();
-            if ($collect)
-                return true;
-        }
-        return false;
-    }
-
-    /**
-     * 商品浏览量增加
-     */
-    public static function browseAdd($product_id){
-        self::where('id',$product_id)->setInc('browse');
-    }
-
-}

+ 0 - 73
application/common/model/ProductCollect.php

@@ -1,73 +0,0 @@
-<?php
-
-namespace app\common\model;
-
-use think\Model;
-use think\Db;
-use app\common\library\Common;
-
-/**
- * 收藏
- */
-class ProductCollect Extends Model
-{
-
-    // 开启自动写入时间戳字段
-    protected $autoWriteTimestamp = 'TIMESTAMP';
-    // 定义时间戳字段名
-    protected $createTime = 'create_at';
-    protected $updateTime = false;
-    // 追加属性
-    protected $append = [
-    ];
-
-
-    /**
-     * 添加收藏
-     */
-    public static function collectAdd($product_id){
-        $user = app()->session->get('us');
-        $product = Product::where('id',$product_id)->where('is_del',1)->count();
-        if (!$product)
-            return Common::return_error('商品不存在!');
-        $collect = self::where('user_id',$user['id'])->where('product_id',$product_id)->count();
-        if ($collect)
-            return Common::return_error('已经收藏过!');
-        $data['user_id'] = $user['id'];
-        $data['merch_id'] = Product::where('id',$product_id)->value('merch_id');
-        $data['product_id'] = $product_id;
-        Db::startTrans();
-        try {
-            self::create($data);
-            Db::commit();
-            return Common::return_success('收藏成功');
-        }catch (Exception $e) {
-            Db::rollback();
-            return Common::return_error('收藏失败');
-        }
-    }
-
-    /**
-     * 取消收藏
-     */
-    public static function collectDel($product_id){
-        $user = app()->session->get('us');
-        $product = Product::where('id',$product_id)->where('is_del',1)->count();
-        if (!$product)
-            return Common::return_error('商品不存在!');
-        $collect = self::where('user_id',$user['id'])->where('product_id',$product_id)->count();
-        if (!$collect)
-            return Common::return_error('未找到收藏信息!');
-        Db::startTrans();
-        try {
-            self::where('user_id',$user['id'])->where('product_id',$product_id)->delete();
-            Db::commit();
-            return Common::return_success('取消成功');
-        }catch (Exception $e) {
-            Db::rollback();
-            return Common::return_error('取消失败');
-        }
-    }
-
-
-}

+ 0 - 388
application/common/model/ProductEvaluation.php

@@ -1,388 +0,0 @@
-<?php
-
-namespace app\common\model;
-
-use think\Model;
-use think\Db;
-use app\common\library\Common;
-
-/**
- * 评价model
- */
-class ProductEvaluation Extends Model
-{
-
-    // 开启自动写入时间戳字段
-    protected $autoWriteTimestamp = 'TIMESTAMP';
-    // 定义时间戳字段名
-    protected $createTime = 'create_at';
-    protected $updateTime = false;
-    // 追加属性
-    protected $append = [
-    ];
-
-
-    /**
-     * 评价列表
-     */
-    public static function productEvaluationList($merch_id,$Nowpage,$limits){
-        $merch = UserMerchInfo::where('id',$merch_id)->where('audit',1)->where('status',1)->find();
-        if (!$merch)
-            return Common::return_error('商家不存在');
-        //评论
-        $evaluation['count'] = self::where('merch_id',$merch_id)->where('type',0)->where('is_del',1)->count();
-        $evaluation_list = self::where('merch_id',$merch_id)
-            ->alias('a')
-            ->where('a.is_del',1)
-            ->where('a.type',0)
-            ->join('User b','a.user_id=b.id')
-            ->field('a.*,b.nickname,b.headimg')
-            ->order('a.is_optimization desc,a.id desc')
-            ->page($Nowpage, $limits)
-            ->select();
-        if ($evaluation_list){
-            $evaluation_list = $evaluation_list->toArray();
-            foreach ($evaluation_list as $k=>$v){
-                $evaluation_list[$k]['imgs'] = $v['imgs'] ? explode(',',$v['imgs']) : [];
-                $evaluation_list[$k]['create_at'] = date('Y-m-d',strtotime($v['create_at']));
-                $evaluation_list[$k]['is_zan'] = self::checkUserEvaluationZan($v['id']) ? true : false;
-                $merch_reply = self::where('type',1)->where('eva_id',$v['id'])->field('id,info,create_at')->find();
-                if ($merch_reply){
-                    $merch_reply =  $merch_reply->toArray();
-                    $evaluation_list[$k]['merch_reply'] = $merch_reply;
-                }else{
-                    $evaluation_list[$k]['merch_reply'] = [];
-                }
-            }
-            $evaluation['list'] = $evaluation_list;
-        }else{
-            $evaluation['list'] = [];
-        }
-        return Common::return_success('成功',$evaluation);
-    }
-
-
-    /**
-     * 发现页评论列表
-     */
-    public static function foundEvaluationList($city,$Nowpage,$limits){
-        $evaluation['count'] = self::where('is_optimization',1)->where('type',0)->where('is_del',1)->count();
-        $evaluation_list = self::where('is_optimization',1)
-            ->alias('a')
-            ->where('a.type',0)
-            ->where('a.is_del',1)
-            ->when($city,function ($query) use ($city){
-                if ($city)
-                    $query->whereLike('c.city','%'.$city.'%');
-            })
-            ->join('User b','a.user_id=b.id')
-            ->join('UserMerchInfo c','a.merch_id=c.id')
-            ->field('a.*,b.nickname,b.headimg')
-            ->order('a.id desc')
-            ->page($Nowpage, $limits)
-            ->select();
-        if ($evaluation_list){
-            $evaluation_list = $evaluation_list->toArray();
-            foreach ($evaluation_list as $k=>$v){
-                $evaluation_list[$k]['imgs'] = $v['imgs'] ? explode(',',$v['imgs']) : [];
-                $evaluation_list[$k]['create_at'] = date('Y-m-d',strtotime($v['create_at']));
-                $evaluation_list[$k]['is_zan'] = self::checkUserEvaluationZan($v['id']) ? true : false;
-                $merch_reply = self::where('type',1)->where('eva_id',$v['id'])->field('id,info,create_at')->find();
-                if ($merch_reply){
-                    $merch_reply =  $merch_reply->toArray();
-                    $evaluation_list[$k]['merch_reply'] = $merch_reply;
-                }else{
-                    $evaluation_list[$k]['merch_reply'] = [];
-                }
-                $merch = UserMerchInfo::where('id',$v['merch_id'])->field('id,name,user_id,capita,list_img,imgs,address,lat,log')->find()->toArray();
-                $merch['image'] = explode(',',$merch['imgs'])[0];
-                if (!$merch['list_img'])
-                    $merch['list_img'] = explode(',',$merch['imgs'])[0];
-                $merch['evaluation']  = UserMerchInfo::merchEvaluation($v['merch_id']);   //评价几颗星
-                $merch['distance']  = Common::getDistance($merch['lat'],$merch['log'])."km";   //距离
-                unset($merch['imgs']);
-                $evaluation_list[$k]['merch'] = $merch;
-            }
-            $evaluation['list'] = $evaluation_list;
-        }else{
-            $evaluation['list'] = [];
-        }
-        return Common::return_success('成功',$evaluation);
-    }
-
-    /**
-     * 发现页评论详情页面
-     */
-    public static function foundEvaluationDetail($eva_id,$Nowpage,$limits){
-        $detail = self::where('a.id',$eva_id)
-            ->alias('a')
-            ->where('a.type',0)
-            ->where('a.is_del',1)
-            ->join('User b','a.user_id=b.id')
-            ->field('a.*,b.nickname,b.headimg')
-            ->find();
-        if (!$detail)
-            return Common::return_error('找不到评论信息');
-        $detail = $detail->toArray();
-        $detail['create_at'] = date('Y-m-d',strtotime($detail['create_at']));
-        $detail['imgs'] = explode(',',$detail['imgs']);
-        $detail['is_zan'] = self::checkUserEvaluationZan($detail['id']) ? true : false;
-        $merch_reply = self::where('type',1)->where('eva_id',$eva_id)->field('id,info,create_at')->find();
-        if ($merch_reply){
-            $merch_reply =  $merch_reply->toArray();
-            $detail['merch_reply'] = $merch_reply;
-        }else{
-            $detail['merch_reply'] = [];
-        }
-        $merch = UserMerchInfo::where('id',$detail['merch_id'])->field('id,name,user_id,capita,imgs,address,lat,log')->find()->toArray();
-        $merch['image'] = explode(',',$merch['imgs'])[0];
-        $merch['evaluation']  = UserMerchInfo::merchEvaluation($detail['merch_id']);   //评价几颗星
-        $merch['distance']  = Common::getDistance($merch['lat'],$merch['log'])."km";   //距离
-        unset($merch['imgs']);
-        $zan_list = ProductEvaluationZan::where('a.eva_id',$eva_id)->alias('a')->join('User b','a.user_id=b.id')->field('a.user_id,b.headimg')->order('a.id desc')->select();
-        if ($zan_list)
-            $zan_list = $zan_list->toArray();
-        else
-            $zan_list = [];
-
-
-        $eva_list['count'] = ProductEvaluationComments::where('eva_id',$eva_id)->where('is_del',1)->count();
-        //评论列表
-        $list = ProductEvaluationComments::where('a.eva_id',$eva_id)
-            ->alias('a')
-            ->join('User b','a.user_id=b.id')
-            ->field('a.id,a.user_id,a.info,a.create_at,b.nickname,b.headimg')
-            ->where('a.is_del',1)
-            ->page($Nowpage,$limits)
-            ->order('a.id desc')
-            ->select();
-        if ($list){
-            $eva_list['list'] = $list->toArray();
-        } else{
-            $eva_list['list'] = [];
-        }
-        return Common::return_success('成功',compact('detail','merch','zan_list','eva_list'));
-    }
-
-    /**
-     * 点赞列表
-     */
-    public static function zanList($eva_id,$Nowpage,$limits){
-        $detail = self::get($eva_id);
-        if (!$detail)
-            return Common::return_error('找不到评论信息');
-        $zan['count'] = ProductEvaluationZan::where('eva_id',$eva_id)->count();
-        $list = ProductEvaluationZan::where('a.eva_id',$eva_id)
-            ->alias('a')
-            ->join('User b','a.user_id=b.id')
-            ->order('a.id desc')
-            ->field('a.id,a.user_id,a.create_at,b.nickname,b.headimg')
-            ->page($Nowpage,$limits)->select();
-        if ($list){
-            $list = $list->toArray();
-            foreach ($list as $k=>$v){
-                $list[$k]['create_at'] = self::timediff(strtotime($v['create_at']),time());
-            }
-            $zan['list'] = $list;
-        }else{
-            $zan['list'] = [''];
-        }
-        return Common::return_success('成功',$zan);
-    }
-
-
-    //功能:计算两个时间戳之间相差的日时分秒
-   //$begin_time  开始时间戳
-   //$end_time 结束时间戳
-   public static function  timediff($begin_time,$end_time)
-    {
-        if($begin_time < $end_time){
-            $starttime = $begin_time;
-            $endtime = $end_time;
-        }else{
-            $starttime = $end_time;
-            $endtime = $begin_time;
-        }
-
-        //计算天数
-        $timediff = $endtime-$starttime;
-        $days = intval($timediff/86400);
-        //计算小时数
-        $remain = $timediff%86400;
-        $hours = intval($remain/3600);
-        //计算分钟数
-        $remain = $remain%3600;
-        $mins = intval($remain/60);
-        //计算秒数
-        $secs = $remain%60;
-        if (date('Y',$starttime)!=date('Y',$end_time)){
-            return date('Y年m月d日 H:i',$starttime);
-        }elseif (date('m',$starttime)!=date('m',$end_time)){
-            return date('m月d日',$starttime);
-        }elseif ($days){
-            return $days.'天前';
-        }elseif ($hours){
-            return $hours.'小时前';
-        }elseif ($mins){
-            return $mins.'分钟前';
-        }elseif ($secs){
-            return $secs.'秒前';
-        }
-    }
-
-
-    /**
-     * 评论点赞
-     */
-    public static function evaluationZan($eva_id){
-        $user = app()->session->get('us');
-        $evaluation = self::where('id',$eva_id)->where('is_del',1)->count();
-        if (!$evaluation)
-            return Common::return_error('评论不存在');
-        $zan = ProductEvaluationZan::where('user_id',$user['id'])->where('eva_id',$eva_id)->count();
-        if ($zan)
-            return Common::return_error('已经点赞过!');
-        $data['user_id'] = $user['id'];
-        $data['eva_id'] = $eva_id;
-        Db::startTrans();
-        try {
-            ProductEvaluationZan::create($data);
-            self::where('id',$eva_id)->setInc('zan');  //点赞数+1
-            Db::commit();
-            return Common::return_success('点赞成功');
-        }catch (Exception $e) {
-            Db::rollback();
-            return Common::return_error('点赞失败');
-        }
-    }
-
-    /**
-     * 取消点赞
-     */
-    public static function evalutionDelZan($eva_id){
-        $user = app()->session->get('us');
-        $evaluation = self::where('id',$eva_id)->where('is_del',1)->count();
-        if (!$evaluation)
-            return Common::return_error('评论不存在');
-        $zan = ProductEvaluationZan::where('user_id',$user['id'])->where('eva_id',$eva_id)->count();
-        if (!$zan)
-            return Common::return_error('未点赞过!');
-        Db::startTrans();
-        try {
-            ProductEvaluationZan::where('user_id',$user['id'])->where('eva_id',$eva_id)->delete();
-            self::where('id',$eva_id)->setDec('zan');  //点赞数-1
-            Db::commit();
-            return Common::return_success('取消成功');
-        }catch (Exception $e) {
-            Db::rollback();
-            return Common::return_error('取消失败');
-        }
-    }
-
-
-    /**
-     * 评论
-     */
-    public static function evaluationComments($eva_id,$info){
-        $user = app()->session->get('us');
-        $evaluation = self::where('id',$eva_id)->where('type',0)->where('is_del',1)->count();
-        if (!$evaluation)
-            return Common::return_error('评论不存在');
-        $data['user_id'] = $user['id'];
-        $data['eva_id'] = $eva_id;
-        $data['info']   = $info;
-        Db::startTrans();
-        try {
-            ProductEvaluationComments::create($data);
-            Db::commit();
-            return Common::return_success('评论成功');
-        }catch (Exception $e) {
-            Db::rollback();
-            return Common::return_error('评论失败');
-        }
-    }
-
-    /**
-     * 判断用户是否点赞评价
-     */
-    public static function checkUserEvaluationZan($eva_id){
-        $user = app()->session->get('us');
-        if ($user){
-            $zan = ProductEvaluationZan::where('user_id',$user['id'])->where('eva_id',$eva_id)->count();
-            if ($zan)
-                return true;
-        }
-        return false;
-    }
-
-
-    /**
-     * 商家中心评论列表
-     */
-    public static function merchEvaluationList($Nowpage,$limits){
-        $user = app()->session->get('us');
-        $merch_id = UserMerchInfo::where('user_id',$user['id'])->value('id');
-        $evaluation['count'] = self::where('merch_id',$merch_id)->where('type',0)->where('is_del',1)->count();
-        $evaluation_list = self::where('a.merch_id',$merch_id)
-            ->alias('a')
-            ->where('a.type',0)
-            ->where('a.is_del',1)
-            ->join('User b','a.user_id=b.id')
-            ->field('a.*,b.nickname,b.headimg')
-            ->order('a.id desc')
-            ->page($Nowpage, $limits)
-            ->select();
-        if ($evaluation_list){
-            $evaluation_list = $evaluation_list->toArray();
-            foreach ($evaluation_list as $k=>$v){
-                $evaluation_list[$k]['imgs'] = $v['imgs'] ? explode(',',$v['imgs']) : [];
-                $evaluation_list[$k]['create_at'] = date('Y-m-d',strtotime($v['create_at']));
-                $evaluation_list[$k]['is_zan'] = self::checkUserEvaluationZan($v['id']) ? true : false;
-                $merch_reply = self::where('type',1)->where('eva_id',$v['id'])->field('id,info,create_at')->find();
-                if ($merch_reply){
-                    $merch_reply =  $merch_reply->toArray();
-                    $evaluation_list[$k]['merch_reply'] = $merch_reply;
-                }else{
-                    $evaluation_list[$k]['merch_reply'] = [];
-                }
-
-            }
-            $evaluation['list'] = $evaluation_list;
-        }else{
-            $evaluation['list'] = [];
-        }
-        return Common::return_success('成功',$evaluation);
-    }
-
-
-    /**
-     * 商家回复评论
-     */
-    public static function merchReplyEvalution($eva_id,$info){
-        $user = app()->session->get('us');
-        $merch_id = UserMerchInfo::where('user_id',$user['id'])->value('id');
-        $evaluation = self::where('id',$eva_id)->where('type',0)->where('merch_id',$merch_id)->where('is_del',1)->find();
-        if (!$evaluation)
-            return Common::return_error('评论不存在');
-        $reply = self::where('eva_id',$eva_id)->where('type',1)->find();
-        if ($reply)
-            return Common::return_error('已经回复过');
-        $data['user_id'] = $user['id'];
-        $data['order_id'] = $evaluation['order_id'];
-        $data['product_id'] = $evaluation['product_id'];
-        $data['merch_id'] = $evaluation['merch_id'];
-        $data['info'] = $info;
-        $data['type'] = 1;
-        $data['eva_id'] = $eva_id;
-        Db::startTrans();
-        try {
-            self::create($data);
-            Db::commit();
-            return Common::return_success('回复成功');
-        }catch (Exception $e) {
-            Db::rollback();
-            return Common::return_error('回复失败');
-        }
-    }
-
-}

+ 0 - 26
application/common/model/ProductEvaluationComments.php

@@ -1,26 +0,0 @@
-<?php
-
-namespace app\common\model;
-
-use think\Model;
-use think\Db;
-use app\common\library\Common;
-
-/**
- * 评论的评论model
- */
-class ProductEvaluationComments Extends Model
-{
-
-    // 开启自动写入时间戳字段
-    protected $autoWriteTimestamp = 'TIMESTAMP';
-    // 定义时间戳字段名
-    protected $createTime = 'create_at';
-    protected $updateTime = false;
-    // 追加属性
-    protected $append = [
-    ];
-
-
-
-}

+ 0 - 26
application/common/model/ProductEvaluationZan.php

@@ -1,26 +0,0 @@
-<?php
-
-namespace app\common\model;
-
-use think\Model;
-use app\common\library\Common;
-
-/**
- * 短信验证码
- */
-class ProductEvaluationZan Extends Model
-{
-
-    // 开启自动写入时间戳字段
-    protected $autoWriteTimestamp = 'TIMESTAMP';
-    // 定义时间戳字段名
-    protected $createTime = 'create_at';
-    protected $updateTime = false;
-    // 追加属性
-    protected $append = [
-    ];
-
-
-
-
-}

+ 0 - 25
application/common/model/ProductPriceLog.php

@@ -1,25 +0,0 @@
-<?php
-
-namespace app\common\model;
-
-use think\Model;
-use app\common\library\Common;
-use think\Db;
-
-/**
- * 商品价格变动
- */
-class ProductPriceLog Extends Model
-{
-
-    // 开启自动写入时间戳字段
-    protected $autoWriteTimestamp = 'TIMESTAMP';
-    // 定义时间戳字段名
-    protected $createTime = 'create_at';
-    protected $updateTime = false;
-    // 追加属性
-    protected $append = [
-    ];
-
-
-}

+ 0 - 18
application/common/model/ProductUserFootprint.php

@@ -1,18 +0,0 @@
-<?php
-
-namespace app\common\model;
-
-use think\Cache;
-use think\Model;
-
-/**
- * 浏览足迹
- */
-class ProductUserFootprint extends Model
-{
-    // 开启自动写入时间戳字段
-    protected $autoWriteTimestamp = 'TIMESTAMP';
-    // 定义时间戳字段名
-    protected $createTime = 'create_at';
-    protected $updateTime = false;
-}

+ 0 - 24
application/common/model/RecommendConfig.php

@@ -1,24 +0,0 @@
-<?php
-
-namespace app\common\model;
-
-use think\Model;
-use app\common\library\Common;
-use think\Db;
-
-/**
- * 推荐奖励model
- */
-class RecommendConfig Extends Model
-{
-
-    // 开启自动写入时间戳字段
-    protected $autoWriteTimestamp = 'timestamp';
-    // 定义时间戳字段名
-    protected $createTime = 'create_at';
-    protected $updateTime = 'update_at';
-    // 追加属性
-    protected $append = [
-    ];
-
-}

+ 0 - 25
application/common/model/RedisTongzhi.php

@@ -1,25 +0,0 @@
-<?php
-
-namespace app\common\model;
-
-use think\Model;
-use app\common\library\Common;
-use think\Db;
-
-/**
- * 百问百答model
- */
-class RedisTongzhi Extends Model
-{
-
-    // 开启自动写入时间戳字段
-    protected $autoWriteTimestamp = 'TIMESTAMP';
-    // 定义时间戳字段名
-    protected $createTime = 'create_at';
-    protected $updateTime = false;
-    // 追加属性
-    protected $append = [
-    ];
-
-
-}

+ 0 - 23
application/common/model/ScoreLog.php

@@ -1,23 +0,0 @@
-<?php
-
-namespace app\common\model;
-
-use think\Model;
-
-/**
- * 会员积分日志模型
- */
-class ScoreLog Extends Model
-{
-
-    // 表名
-    protected $name = 'user_score_log';
-    // 开启自动写入时间戳字段
-    protected $autoWriteTimestamp = 'int';
-    // 定义时间戳字段名
-    protected $createTime = 'createtime';
-    protected $updateTime = '';
-    // 追加属性
-    protected $append = [
-    ];
-}

+ 0 - 68
application/common/model/SearchHistory.php

@@ -1,68 +0,0 @@
-<?php
-
-namespace app\common\model;
-
-use think\Model;
-use app\common\library\Common;
-use think\Db;
-
-/**
- * 招聘信息model
- */
-class SearchHistory Extends Model
-{
-
-    // 开启自动写入时间戳字段
-    protected $autoWriteTimestamp = 'TIMESTAMP';
-    // 定义时间戳字段名
-    protected $createTime = 'create_at';
-    protected $updateTime = false;
-    // 追加属性
-    protected $append = [
-    ];
-
-
-    /**
-     * 获取搜索历史
-     */
-    public static function getHistoryData(){
-        $user = app()->session->get('us');
-        $history = self::where('user_id',$user['id'])->where('is_del',1)->order('create_at desc,num desc')->select();
-        if ($history)
-            $history = $history->toArray();
-        else
-            $history = [];
-        return $history;
-    }
-
-    /**
-     * 搜索关键词插入数据库
-     * @param uid  keyword
-     * @return
-     */
-    public static function setKeyword($keyword){
-        $user_id = app()->session->get('us')['id'];
-        if ($user_id){
-            $where['user_id'] = $user_id;
-            $where['keywords'] = $keyword;
-            $keys = self::where($where)->find();
-            if ($keys){
-                self::where($where)->update(['num'=>$keys['num'] + 1]);
-            }else{
-                $data['user_id']  = $user_id;
-                $data['keywords']  = $keyword;
-                $data['add_time']  = time();
-                self::create($data);
-            }
-        }
-    }
-
-    /**
-     * 删除搜索记录
-     */
-    public static function delUserHistory(){
-        $user_id = app()->session->get('us')['id'];
-        return self::where('user_id',$user_id)->update(['is_del'=>0]);
-    }
-
-}

+ 0 - 113
application/common/model/Sms.php

@@ -1,113 +0,0 @@
-<?php
-
-namespace app\common\model;
-
-use app\common\model\Config;
-use think\Model;
-use app\common\library\Common;
-use AlibabaCloud\Client\AlibabaCloud;
-use AlibabaCloud\Client\Exception\ClientException;
-use AlibabaCloud\Client\Exception\ServerException;
-
-/**
- * 短信验证码
- */
-class Sms Extends Model
-{
-
-    // 开启自动写入时间戳字段
-    protected $autoWriteTimestamp = 'int';
-    // 定义时间戳字段名
-    protected $createTime = 'createtime';
-    protected $updateTime = false;
-    // 追加属性
-    protected $append = [
-    ];
-
-
-    /**
-     * 发送短信
-     * @param $mobile
-     * @param $event
-     * @return array
-     */
-    public static function send_sms($mobile,$event){
-        $last = self::where(['mobile' => $mobile, 'event' => $event])
-            ->order('id', 'DESC')
-            ->find();
-        if ($last && time() - strtotime($last->createtime) < 60) {
-            return Common::return_error('发送频繁!');
-        }
-        $ipSendTotal = Sms::where(['ip' => request()->ip()])->whereTime('createtime', '-1 hours')->count();
-        if ($ipSendTotal >= 5) {
-            return Common::return_error('发送频繁!');
-        }
-        $userinfo = User::getByMobile($mobile);
-        if ($event!='bindwechat'){
-            if ($event == 'register' && $userinfo) {
-                //已被注册
-                return Common::return_error('已被注册!');
-            } else if (in_array($event, ['changepwd', 'login','withpass','other']) && !$userinfo) {
-                //未注册
-                return Common::return_error('未注册!');
-            }
-        }
-
-        //发送阿里云短信
-        $ret = self::accessKeyClient($event, $mobile, mt_rand(100000, 999999));
-
-        if ($ret['Code'] === 'OK') {
-            return Common::return_success('发送成功');
-        } elseif ($ret['Code'] === 'isv.BUSINESS_LIMIT_CONTROL') {
-            return Common::return_error('发送太过频繁!');
-        } else {
-            return Common::return_error($ret['msg']);
-        }
-    }
-
-    public static function accessKeyClient($event, $mobile, $num)
-    {
-
-//        $ip = request()->ip();
-//        Sms::create(['event' => $event, 'mobile' => $mobile, 'code' => $num, 'ip' => $ip]);
-//        $info['Code'] = "OK";
-//        return $info;
-        $ali_accesskey = Config::get_values('ali_accesskey');
-        $ali_accesskey_secret = Config::get_values('ali_accesskey_secret');
-        $templateCode = Config::get_values('templateCode');
-        AlibabaCloud::accessKeyClient($ali_accesskey, $ali_accesskey_secret)
-            ->regionId('cn-hangzhou')
-            ->asDefaultClient();
-
-        try {
-            $result = AlibabaCloud::rpc()
-                ->product('Dysmsapi')
-                // ->scheme('https') // https | http
-                ->version('2017-05-25')
-                ->action('SendSms')
-                ->method('POST')
-                ->host('dysmsapi.aliyuncs.com')
-                ->options([
-                    'query' => [
-                        'PhoneNumbers' => $mobile,
-                        'SignName' => '全民创',
-                        'TemplateCode' => $templateCode,
-                        'TemplateParam' => '{"code":' . $num . '}',
-                    ],
-                ])
-                ->request();
-            $info = $result->toArray();
-            if ($info['Code'] == 'OK') {
-                $ip = request()->ip();
-                Sms::create(['event' => $event, 'mobile' => $mobile, 'code' => $num, 'ip' => $ip]);
-            }
-            return $info;
-        } catch (ClientException $e) {
-            echo $e->getErrorMessage() . PHP_EOL;
-        } catch (ServerException $e) {
-            echo $e->getErrorMessage() . PHP_EOL;
-        }
-    }
-
-
-}

+ 0 - 1285
application/common/model/User.php

@@ -1,1285 +0,0 @@
-<?php
-
-namespace app\common\model;
-
-use app\common\model\Sms;
-use app\common\library\Email;
-use OSS\OssClient;
-use phpDocumentor\Reflection\Type;
-use think\Model;
-use app\common\library\Common;
-use think\facade\Validate;
-use think\Request;
-use think\Db;
-
-header('Access-Control-Allow-Origin: *');
-/**
- * 会员模型
- */
-class User Extends Model
-{
-    // 开启自动写入时间戳字段
-    protected $autoWriteTimestamp = 'TIMESTAMP';
-    // 定义时间戳字段名
-    protected $createTime = 'create_at';
-    protected $updateTime = 'update_at';
-    // 追加属性
-    protected $append = [
-        'url',
-    ];
-
-
-    /**
-     * 获取微信session_key
-     */
-    public static function getSessionKey($code){
-//        $appid = Config::get_values('wechat_appid');
-//        $secret = Config::get_values('wechat_appsecret');
-        $appid = Config::get_values('small_wechat_id');
-        $secret = Config::get_values('small_wechat_appsecret');
-        $url = "https://api.weixin.qq.com/sns/jscode2session?appid=" . $appid . "&secret=" . $secret . "&js_code=" . $code . "&grant_type=authorization_code";
-        $session_key = Common::curlRequest($url);
-        return $session_key;
-    }
-
-    /**
-     * 微信授权登录
-     */
-    public static function wechatLogin($code,$city){
-        $session_key = self::getSessionKey($code);
-        if (!empty($session_key['session_key'])) {
-            $openid = $session_key['openid'];
-            //数据库是否已注册
-            $user = Db::name('User')->where('openid',$openid)->find();
-            if ($user){
-                self::where('id',$user['id'])->update(['ip'=>request()->ip()]);
-                LoginLog::create(['user_id'=>$user['id'],'ip'=>request()->ip()]);
-                if ($user['create_at']>'2020-10-25 00:00:00')
-                    self::sendCoupon($user['id'],$city,$user['fid']); //优惠券
-                app()->session->set('us', $user);
-                return Common::return_success('登录成功',$user);
-            }else{
-                return Common::return_error('未注册!');
-            }
-        }else{
-            return Common::return_error('获取session_key失败!');
-        }
-    }
-
-
-
-    /**
-     * 微信登录绑定手机号
-     */
-    public static function wechatLoginBindPhone($code,$rawData,$city,$phone,$ver_code,$invite_code){
-        header('Access-Control-Allow-Origin: *');
-        $phone_use = Db::name('user')->where('phone',$phone)->find();
-        if ($phone_use && $phone_use['openid']!=''){
-            return Common::return_error('手机号已被绑定!');
-        }
-        if ($phone_use['status']!=1){
-            return Common::return_error('账号已禁用!');
-        }
-        //获取最后的验证码
-        $time = time()-90;
-        $sms = Sms::where(['mobile' => $phone, 'event' => 'bindwechat'])
-            ->where('createtime','>',$time)
-            ->order('id', 'DESC')
-            ->find();
-        if (!$sms || $sms->code != $ver_code){
-            return Common::return_error('短信验证码不正确!');
-        }
-        $ffid = 0;
-        if ($invite_code){
-            $invite = self::get($invite_code);
-            if (!$invite)
-                return Common::return_error('邀请码不存在!');
-            else
-                $ffid = Common::get_ffid($invite_code);
-        }
-        $session_key = self::getSessionKey($code);
-        if (empty($session_key['session_key'])) {
-            return Common::return_error('获取session_key失败!');
-        }
-        $openid = $session_key['openid'];
-        if (!$phone_use){
-            $data['phone'] = $phone;
-            $data['nickname'] = $rawData['nickName'];
-            $data['headimg'] = $rawData['avatarUrl'];
-            $data['openid'] = $openid;
-            $data['password'] = md5('123456');
-            $data['ip'] = request()->ip();
-            $data['fid'] = $invite_code ? $invite_code : 0;
-            $data['ffid'] = $ffid;
-            Db::startTrans();
-            try {
-                $user = self::create($data);
-                Db::commit();
-                $userId =$user->id;
-                $invite_qr_code = Common::setintivecode($userId,1);
-                $mer_qr_code = Common::setintivecode($userId,2);
-                self::where('id',$userId)->update(['invite_qr_code'=>$invite_qr_code,'mer_qr_code'=>$mer_qr_code]);
-                $us = Db::name('user')->where('id',$userId)->find();
-                app()->session->set('us', $us);
-                self::sendCoupon($userId,$city,$data['fid']); //优惠券
-                return Common::return_success('绑定成功',$us);
-            }catch (Exception $e) {
-                Db::rollback();
-                return Common::return_error('失败');
-            }
-        }else{
-            if (self::where('id',$phone_use['id'])->update(['openid'=>$openid])){
-                app()->session->set('us', $phone_use);
-                if ($phone_use['create_at']>'2020-10-25 00:00:00')
-                    self::sendCoupon($phone_use['id'],$city,$phone_use['fid']); //优惠券
-                return Common::return_success('绑定成功',$phone_use);
-            }else{
-                return Common::return_error('失败');
-            }
-        }
-    }
-
-
-
-
-
-
-
-
-
-    /**
-     * 注册
-     */
-    public static function register($phone,$password,$ver_code,$invite_code){
-        $phone_use = self::checkPhoneIsRegister($phone);
-        if ($phone_use){
-            return Common::return_error('手机号已注册!');
-        }
-
-        //获取最后的验证码
-        $time = time()-90;
-        $sms = Sms::where(['mobile' => $phone, 'event' => 'register'])
-            ->where('createtime','>',$time)
-            ->order('id', 'DESC')
-            ->find();
-        if (!$sms || $sms->code != $ver_code){
-            return Common::return_error('短信验证码不正确!');
-        }
-
-        $ffid = 0;
-        if ($invite_code){
-            $invite = self::get($invite_code);
-            if (!$invite)
-                return Common::return_error('邀请码不存在!');
-            else
-                $ffid = Common::get_ffid($invite_code);
-        }
-        $data['phone'] = $phone;
-//        $data['headimg'] = 'http://'.$_SERVER['SERVER_NAME']."/upload/default.png";
-        $data['headimg'] = 'https://qminc.oss-cn-beijing.aliyuncs.com/default/default.png';
-        $data['password'] = md5($password);
-        $data['ip'] = request()->ip();
-        $data['fid'] = $invite_code ? $invite_code : 0;
-        $data['ffid'] = $ffid;
-        Db::startTrans();
-        try {
-            $user = self::create($data);
-            Db::commit();
-            $userId =$user->id;
-            $nickname = "全民创".$userId;
-            $invite_qr_code = Common::setintivecode($userId,1);
-            $mer_qr_code = Common::setintivecode($userId,2);
-            self::where('id',$userId)->update(['nickname'=>$nickname,'invite_qr_code'=>$invite_qr_code,'mer_qr_code'=>$mer_qr_code]);
-            $us = Db::name('user')->where('id',$userId)->find();
-            app()->session->set('us', $us);
-            return Common::return_success('注册成功',$us);
-        }catch (Exception $e) {
-            Db::rollback();
-            return Common::return_error('注册失败');
-        }
-    }
-
-
-
-    /**
-     * 新用户登录赠送优惠券
-     */
-    public static function sendCoupon($user_id,$city,$invite_code){
-        $user_coupon = CouponUser::where('user_id',$user_id)->find();
-        if (!$user_coupon){
-            if ($city){
-                $reco = RecommendConfig::where('status',1)
-                    ->where('is_del',1)
-                    ->whereLike('city','%'.$city.'%')
-                    ->find();
-                if ($reco){
-                    $data['user_id'] = $user_id;
-                    $data['coupon_title'] = "新用户尊享红包";
-                    $data['coupon_price'] = $reco->recommend_new;
-                    $data['start_time'] = time();
-                    $data['end_time'] = $reco['validity'] > 0 ? time()+($reco['validity']*24*60*60) : $reco['validity'];
-                    $data['validity'] = $reco['validity'];
-                    if ($invite_code){
-                        $invite = self::where('id',$invite_code)->find();
-                        $data['user_or_merch_id'] = $invite_code;
-                        $data['user_or_merch_price'] = $invite['type'] == 1 ? $reco['user_recommend'] : $reco['merch_recommend'];
-                    }
-                    CouponUser::create($data);
-                }
-            }
-        }
-        return true;
-    }
-
-
-
-
-    /**
-     * 登录
-     */
-    public static function login($phone,$password,$type,$ver_code,$city){
-        header('Access-Control-Allow-Origin: *');
-        $phone_use = Db::name('user')->where('phone',$phone)->find();
-        if (!$phone_use){
-            return Common::return_error('手机号未注册!');
-        }
-        if ($phone_use['status']!=1){
-            return Common::return_error('账号已禁用!');
-        }
-        if ($type==1){
-            if ($phone_use['password'] != md5($password)){
-                return Common::return_error('密码错误!');
-            }
-        }elseif ($type==2){
-            //获取最后的验证码
-            $time = time()-90;
-            $sms = Sms::where(['mobile' => $phone, 'event' => 'login'])
-                ->where('createtime','>',$time)
-                ->order('id', 'DESC')
-                ->find();
-            if (!$sms || $sms->code != $ver_code){
-                return Common::return_error('短信验证码不正确!');
-            }
-        }
-        self::where('id',$phone_use['id'])->update(['ip'=>request()->ip()]);
-        LoginLog::create(['user_id'=>$phone_use['id'],'ip'=>request()->ip()]);
-        if ($phone_use['create_at']>'2020-10-25 00:00:00')
-            self::sendCoupon($phone_use['id'],$city,$phone_use['fid']); //优惠券
-        app()->session->set('us', $phone_use);
-        return Common::return_success('登录成功',$phone_use);
-    }
-
-    /**
-     * 商家注册第一步
-     */
-    public static function merch_register_one($phone,$ver_code,$invite_code){
-        $phone_use = self::checkPhoneIsRegister($phone);
-        if ($phone_use){
-            return Common::return_error('手机号已注册!');
-        }
-        //获取最后的验证码
-        $time = time()-90;
-        $sms = Sms::where(['mobile' => $phone, 'event' => 'register'])
-            ->where('createtime','>',$time)
-            ->order('id', 'DESC')
-            ->find();
-        if (!$sms || $sms->code != $ver_code){
-            return Common::return_error('短信验证码不正确!');
-        }
-
-        $invite = self::get($invite_code);
-        if (!$invite) return Common::return_error('邀请码不存在!');
-
-        return Common::return_success('验证成功');
-    }
-
-    /**
-     * 商家注册第二步
-     */
-    public static function merch_register_two($data){
-        header('Access-Control-Allow-Origin: *');
-        $phone_use = self::checkPhoneIsRegister($data['phone']);
-        if ($phone_use){
-            return Common::return_error('手机号已注册!');
-        }
-        //判断商户名是否存在
-        $name = UserMerchInfo::where('name',$data['name'])->find();
-        if ($name){
-            return Common::return_error('商户名称已存在!');
-        }
-        //判断分类是否存在
-        $cate = Category::get($data['category_one_id']);
-        if (!$cate){
-            return Common::return_error('分类不存在!');
-        }
-        if ($data['category_two_id']){
-            $cate2 = Category::get($data['category_two_id']);
-            if (!$cate2){
-                return Common::return_error('分类不存在!');
-            }
-            if ($cate2->pid != $data['category_one_id']){
-                return Common::return_error('分类信息错误!');
-            }
-        }
-        //判断身份证
-        $idcard = Common::setCard($data['identity_card']);
-        if (!$idcard){
-            return Common::return_error('身份证格式错误!');
-        }
-        $invite = self::get($data['invite_code']);
-        if (!$invite)
-            return Common::return_error('邀请码不存在!');
-        else
-            $ffid = Common::get_ffid($data['invite_code']);
-        $us['phone'] = $data['phone'];
-        //$us['headimg'] = 'http://'.$_SERVER['SERVER_NAME']."/upload/default.png";
-        $us['headimg'] = 'https://qminc.oss-cn-beijing.aliyuncs.com/default/default.png';
-        $us['password'] = md5($data['password']);
-        $us['ip'] = request()->ip();
-        $us['fid'] = $data['invite_code'];
-        $us['ffid'] = $ffid;
-        $us['type'] = 2;
-        $data['imgs'] = implode(',',$data['imgs']);
-        Db::startTrans();
-        try {
-            $user = self::create($us);
-            $data['user_id'] = $user->id;
-            $nickname = "全民创".$data['user_id'];
-            $invite_qr_code = Common::setintivecode($data['user_id'],1);
-            $mer_qr_code = Common::setintivecode($data['user_id'],2);
-            self::where('id',$data['user_id'])->update(['nickname'=>$nickname,'invite_qr_code'=>$invite_qr_code,'mer_qr_code'=>$mer_qr_code]);
-            UserMerchInfo::create($data);   //商户注册
-            Db::commit();
-            return Common::return_success('注册成功',$us);
-        }catch (Exception $e) {
-            Db::rollback();
-            return Common::return_error('注册失败');
-        }
-    }
-
-
-    /**
-     * 普通用户申请成为商家
-     */
-    public static function applyToMerch($data){
-        $user = app()->session->get('us');
-        $userinfo = self::get($user['id']);
-        if ($userinfo['type']==2){
-            $merch = UserMerchInfo::where('user_id',$user['id'])->find();
-            if ($merch['audit']==0){
-                return Common::return_error('商家信息审核中!');
-            }elseif($merch['audit']==1){
-                return Common::return_error('已经是商家!');
-            }
-        }
-
-        //判断商户名是否存在
-        $name = UserMerchInfo::where('name',$data['name'])->find();
-        if ($name){
-            return Common::return_error('商户名称已存在!');
-        }
-        //判断分类是否存在
-        $cate = Category::get($data['category_one_id']);
-        if (!$cate){
-            return Common::return_error('分类不存在!');
-        }
-        if ($data['category_two_id']){
-            $cate2 = Category::get($data['category_two_id']);
-            if (!$cate2){
-                return Common::return_error('分类不存在!');
-            }
-            if ($cate2->pid != $data['category_one_id']){
-                return Common::return_error('分类信息错误!');
-            }
-        }
-        //判断身份证
-        $idcard = Common::setCard($data['identity_card']);
-        if (!$idcard){
-            return Common::return_error('身份证格式错误!');
-        }
-        $data['imgs'] = implode(',',$data['imgs']);
-        Db::startTrans();
-        try {
-            self::where('id',$user['id'])->update(['type'=>2]);
-            $data['user_id'] = $user['id'];
-            UserMerchInfo::create($data);   //商户注册
-            Db::commit();
-            return Common::return_success('申请成功');
-        }catch (Exception $e) {
-            Db::rollback();
-            return Common::return_error('注册失败');
-        }
-    }
-
-
-    /**
-     * 根据手机号判断是否注册
-     */
-    public static function checkPhoneIsRegister($phone){
-        $phone_use = self::where('phone',$phone)->find();
-        if ($phone_use){
-           return true;
-        }
-        return false;
-    }
-
-    /**
-     * 根据手机号获取用户信息
-     */
-    public static function getByMobile($phone){
-        $userinfo = Db::name('user')->where('phone',$phone)->find();
-        return $userinfo;
-    }
-
-
-    /**
-     * 获取用户信息
-     */
-    public static function getUserInfo(){
-        $user = app()->session->get('us');
-        $userinfo = Db::name('user')->where('id',$user['id'])->find();
-        $userinfo['poundage_proportion'] = Config::get_values('poundage_proportion');    //提现,消费余额服务费百分比
-        $weixin_bind = UserWeixin::where('user_id',$user['id'])->find();
-        $userinfo['bind_weixin'] = $weixin_bind['nickname'];
-        $userinfo['platform_telphone'] = Config::get_values('platform_telphone');
-        $userinfo['income_is_show'] = Config::get_values('income_is_show');
-        if (!$userinfo['eva_background_img']) $userinfo['eva_background_img'] = 'https://qminc.oss-cn-beijing.aliyuncs.com/default/backimg.jpeg';
-        if ($userinfo['with_password'] == null) $userinfo['with_password'] = '';
-        $merch_info = [];
-        if ($userinfo['type']==2){
-            $merch_info = UserMerchInfo::where('a.user_id',$userinfo['id'])
-                ->alias('a')
-                ->join('Category b','a.category_one_id=b.id')
-                ->leftJoin('Category c','a.category_two_id=c.id')
-                ->field('a.*,b.type as category_type,b.name as one_category_name,c.name as two_category_name')
-                ->find()
-                ->toArray();
-            $merch_info['trading_img'] = explode(',',$merch_info['trading_img']);
-            $merch_info['imgs'] = explode(',',$merch_info['imgs']);
-            $merch_info['all_earnings'] = Order::where('merch_id',$merch_info['id'])->where('status','in','2,3')->sum('price');
-            $start = strtotime(date('Y-m-d 00:00:00'));
-            $end = strtotime(date('Y-m-d 23:59:59'));
-            $merch_info['day_earnings'] = Order::where('merch_id',$merch_info['id'])->where('status','in','2,3')->whereBetweenTime('pay_time',$start,$end)->sum('price');
-            $timebegin = strtotime(date('Y-m')) ; //开始时间戳
-            $day = date('t',$timebegin);
-            $timeend = $timebegin + 86400 * $day  - 1; //结束时间戳
-            $merch_info['month_earnings'] = Order::where('merch_id',$merch_info['id'])->where('status','in','2,3')->whereBetweenTime('pay_time',$timebegin,$timeend)->sum('price');
-            $merch_info['month_count'] = Order::where('merch_id',$merch_info['id'])->where('status','in','2,3')->where('order_type',1)->whereBetweenTime('pay_time',$timebegin,$timeend)->count();
-            $merch_info['month_scan_count'] = Order::where('merch_id',$merch_info['id'])->where('status','in','2,3')->where('order_type',2)->whereBetweenTime('pay_time',$timebegin,$timeend)->count();
-        }
-        $userinfo['merch_info'] = $merch_info;
-        return $userinfo;
-    }
-
-
-    /**
-     * 编辑商家信息
-     */
-    public static function merchEdit($data){
-        $user = app()->session->get('us');
-        $merch = UserMerchInfo::where('user_id',$user['id'])->where('status',1)->find();
-        if (!$merch)
-            return Common::return_error('商家信息异常');
-
-        $data['imgs'] = implode(',',$data['imgs']);
-        //判断商户名是否存在
-        $name = UserMerchInfo::where('name',$data['name'])->where('id','neq',$merch['id'])->find();
-        if ($name){
-            return Common::return_error('商户名称已存在!');
-        }
-        Db::startTrans();
-        try {
-            UserMerchInfo::where('id',$merch['id'])->update($data);
-            Db::commit();
-            return Common::return_success('修改成功');
-        }catch (Exception $e) {
-            Db::rollback();
-            return Common::return_error('修改失败');
-        }
-    }
-
-
-    /**
-     * 修改密码
-     */
-    public static function changePass($phone,$password,$ver_code){
-        $user_id =  app()->session->get('us')['id'];
-        $userinfo = self::where('id',$user_id)->find();
-        if ($phone!=$userinfo->phone){
-            return Common::return_error('手机号与注册手机号不一致');
-        }
-        //获取最后的验证码
-        $time = time()-90;
-        $sms = Sms::where(['mobile' => $phone, 'event' => 'changepwd'])
-            ->where('createtime','>',$time)
-            ->order('id', 'DESC')
-            ->find();
-        if (!$sms || $sms->code != $ver_code){
-            return Common::return_error('短信验证码不正确!');
-        }
-        $userinfo->password = md5($password);
-        if ($userinfo->save()){
-            return Common::return_success('修改成功');
-        }
-        return Common::return_error('修改失败!');
-    }
-
-    /**
-     * 设置提现密码
-     */
-    public static function setWithPass($password,$ver_code){
-        $user_id =  app()->session->get('us')['id'];
-        $userinfo = self::where('id',$user_id)->find();
-        //获取最后的验证码
-        $time = time()-90;
-        $sms = Sms::where(['mobile' => $userinfo['phone'], 'event' => 'withpass'])
-            ->where('createtime','>',$time)
-            ->order('id', 'DESC')
-            ->find();
-        if (!$sms || $sms->code != $ver_code){
-            return Common::return_error('短信验证码不正确!');
-        }
-        $userinfo->with_password = md5($password);
-        if ($userinfo->save()){
-            return Common::return_success('设置成功');
-        }
-        return Common::return_error('设置失败!');
-    }
-
-
-    /**
-     * 填写邀请码
-     */
-    public static function saveInviteCode($invite_code){
-        $user = app()->session->get('us');
-        if ($user['id']==$invite_code)
-            return Common::return_error('不能填写自己的邀请码!');
-
-        $userinfo = self::where('id',$user['id'])->find();
-        if ($userinfo['fid'])
-            return Common::return_error('已有邀请人!');
-        //判断邀请码是否存在
-        $invite = self::where('id',$invite_code)->find();
-        if (!$invite)
-            return Common::return_error('邀请码不存在!');
-        if ($invite->fid == $userinfo->id)
-            return Common::return_error('邀请码错误!');
-        $ffid = Common::get_ffid($invite_code);
-        $userinfo->fid = $invite_code;
-        $userinfo->ffid = $ffid;
-        if ($userinfo->save()){
-            return Common::return_success('成功');
-        }
-        return Common::return_error('修改失败!');
-    }
-
-
-    /**
-     * 修改用户信息
-     */
-    public static function upUserInfo($nickname,$headimg){
-        $user = app()->session->get('us');
-        $data['nickname'] = $nickname;
-        $data['headimg'] = $headimg;
-        Db::startTrans();
-        try {
-            self::where('id',$user['id'])->update($data);
-            Db::commit();
-            return Common::return_success('修改成功');
-        }catch (Exception $e) {
-            Db::rollback();
-            return Common::return_error('修改失败');
-        }
-    }
-
-    /**
-     * 变更会员余额
-     * @param int $money    余额
-     * @param int $user_id  会员ID
-     * @param string $memo  备注
-     */
-    public static function money($money, $user_id, $memo, $pm = 0,$link_id = 0)
-    {
-        $user = self::get($user_id);
-        if ($user)
-        {
-            $before = $user->money;
-            if ($pm==1){
-                $after = $user->money + $money;
-            }else{
-                $after = $user->money - $money;
-            }
-            //更新会员信息
-            $user->save(['money' => $after]);
-            //写入日志
-            MoneyLog::create(['user_id' => $user_id,'pm' => $pm, 'change_money' => $money, 'before' => $before, 'after' => $after,'link_id'=>$link_id, 'title' => $memo]);
-        }
-    }
-
-
-    /**
-     *  我的收藏
-     */
-    public static function myCollect($Nowpage,$limits){
-        $user = app()->session->get('us');
-        $count = ProductCollect::where('user_id',$user['id'])->field('user_id,merch_id')->group('merch_id')->count();
-        if ($count){
-            $merch_list = ProductCollect::where('a.user_id',$user['id'])
-                ->alias('a')
-                ->join('UserMerchInfo b','a.merch_id=b.id')
-                ->field('a.user_id,a.merch_id,b.name,b.imgs,b.category_one_id')
-                ->group('a.merch_id')
-                ->page($Nowpage,$limits)
-                ->select()->toArray();
-            foreach ($merch_list as $k=>$v){
-                $merch_list[$k]['image'] = explode(',',$v['imgs'])[0];
-                $merch_list[$k]['type']  = Category::where('id',$v['category_one_id'])->value('type');
-                unset($merch_list[$k]['imgs']);
-                $list = ProductCollect::where('a.user_id',$user['id'])
-                    ->alias('a')
-                    ->where('a.merch_id',$v['merch_id'])
-                    ->join('Product b','a.product_id=b.id')
-                    ->where('b.is_del',1)
-                    ->order('a.id desc')
-                    ->field('a.user_id,b.product_name,b.id as product_id,b.price,b.label,b.product_info,b.imgs')
-                    ->select();
-                if ($list){
-                    $list = $list->toArray();
-                    foreach ($list as $a=>$b){
-                        $list[$a]['label'] = explode(',',$b['label']);
-                        $list[$a]['image'] = explode(',',$b['imgs'])[0];
-                        unset($list[$a]['imgs']);
-                    }
-                }else{
-                    $list = [];
-                }
-                $merch_list[$k]['list'] = $list;
-            }
-        }else{
-            $merch_list = [];
-        }
-        $data['count'] = $count;
-        $data['list'] = $merch_list;
-        return Common::return_success('成功',$data);
-    }
-
-    /**
-     * 我的足迹
-     */
-    public static function myFootprint($Nowpage,$limits){
-        $user = app()->session->get('us');
-        $list = ProductUserFootprint::where('a.user_id',$user['id'])->alias('a')
-            ->join('UserMerchInfo b','a.merch_id=b.id')
-            ->where('b.audit',1)
-            ->where('b.status',1)
-            ->group('merch_id')
-            ->field('a.user_id,b.id,b.name,b.capita,b.imgs,b.address,b.lat,b.log')
-            ->page($Nowpage,$limits)
-            ->order('a.create_at desc')
-            ->select();
-        if ($list){
-            $list = $list->toArray();
-            foreach ($list as $k=>$v){
-                $list[$k]['image'] = explode(',',$v['imgs'])[0];
-                $list[$k]['evaluation']  = UserMerchInfo::merchEvaluation($v['id']);   //评价几颗星
-                $list[$k]['distance']  = Common::getDistance($v['lat'],$v['log'])."km";   //距离
-                unset($list[$k]['imgs']);
-            }
-        }else{
-            $list = [];
-        }
-        return Common::return_success('成功',$list);
-    }
-
-    /**
-     * 我的评价
-     */
-    public static function myEvaluation($Nowpage,$limits){
-        $user = app()->session->get('us');
-        $data['count'] = ProductEvaluation::where('user_id',$user['id'])->where('is_del',1)->where('type',0)->count();
-        $list = ProductEvaluation::where('a.user_id',$user['id'])
-            ->alias('a')
-            ->where('a.is_del',1)
-            ->where('a.type',0)
-            ->join('User b','a.user_id=b.id')
-            ->field('a.*,b.nickname,b.headimg')
-            ->order('a.id desc')
-            ->page($Nowpage,$limits)
-            ->select();
-        if ($list){
-            $list = $list->toArray();
-            foreach ($list as $k=>$v){
-                $list[$k]['imgs'] = $v['imgs'] ? explode(',',$v['imgs']) : [];
-                $list[$k]['create_at'] = date('Y-m-d',strtotime($v['create_at']));
-                $merch = UserMerchInfo::where('id',$v['merch_id'])->field('id,name,user_id,capita,imgs,address,lat,log')->find()->toArray();
-                $merch['image'] = explode(',',$merch['imgs'])[0];
-                $merch['evaluation']  = UserMerchInfo::merchEvaluation($v['merch_id']);   //评价几颗星
-                $merch['distance']  = Common::getDistance($merch['lat'],$merch['log'])."km";   //距离
-                unset($merch['imgs']);
-                $list[$k]['merch'] = $merch;
-                $merch_eva = ProductEvaluation::where('type',1)->where('eva_id',$v['id'])->where('is_del',1)->select();
-                if ($merch_eva){
-                    $list[$k]['merch_reply'] = $merch_eva->toArray();
-                }else{
-                    $list[$k]['merch_reply'] = [];
-                }
-            }
-            $data['list'] = $list;
-        }else{
-            $data['list'] = [];
-        }
-        return Common::return_success('成功',$data);
-    }
-
-    /**
-     * $type  //1:用户  2:商家
-     * $recommend   //1:直推  2:间推
-     * 我的团队
-     */
-    public static function myTeam($type,$recommend,$Nowpage,$limits){
-        $user = app()->session->get('us');
-        switch ($type){
-            case 1:
-                switch ($recommend){
-                    case 1:
-                        $where['fid'] = $user['id'];
-                        break;
-                    case 2:
-                        $where['ffid'] = $user['id'];
-                        break;
-                }
-                $data['count'] = self::where($where)->where('type',1)->count();
-                $list = Db::name('user')->where($where)->where('type',1)->field('id,nickname,headimg,phone')->page($Nowpage,$limits)->order('id desc')->select();
-                if ($list){
-                    foreach ($list as $k=>$v){
-                        $list[$k]['phone'] = substr_replace($v['phone'], '****', 3, 4);
-                    }
-                }else{
-                    $list = [];
-                }
-                $data['list'] = $list;
-                break;
-            case 2:
-                switch ($recommend){
-                    case 1:
-                        $where['a.fid'] = $user['id'];
-                        break;
-                    case 2:
-                        $where['a.ffid'] = $user['id'];
-                        break;
-                }
-                $data['count'] = Db::name('user')->where($where)->where('a.type',2)->alias('a')->join('UserMerchInfo b','a.id=b.user_id')->count();
-                $list = Db::name('user')->where($where)->where('a.type',2)
-                    ->alias('a')
-                    ->join('UserMerchInfo b','a.id=b.user_id')
-                    ->field('b.id,b.user_id,b.name,b.category_one_id,b.category_two_id,b.imgs,b.lat,b.log')
-                    ->page($Nowpage,$limits)
-                    ->order('a.id desc')
-                    ->select();
-                if ($list){
-                    foreach ($list as $k=>$v){
-                        $list[$k]['one_category'] = Category::where('id',$v['category_one_id'])->value('name');
-                        $list[$k]['two_category'] = Category::where('id',$v['category_two_id'])->value('name');
-                        $list[$k]['image'] = explode(',',$v['imgs'])[0];
-                        $list[$k]['evaluation']  = UserMerchInfo::merchEvaluation($v['id']);   //评价几颗星
-                        $list[$k]['distance']  = Common::getDistance($v['lat'],$v['log'])."km";   //距离
-                        unset($list[$k]['imgs']);
-                    }
-                }else{
-                    $list = [];
-                }
-                $data['list'] = $list;
-                break;
-        }
-        return Common::return_success('成功',$data);
-    }
-
-
-    /**
-     * 百问百答列表
-     */
-    public static function askAnswerList($type,$Nowpage,$limits){
-        $data['count'] = AskAnswer::where('is_del',1)->where('is_show',1)->count();
-        $list = AskAnswer::where('is_del',1)->where('type',$type)->where('is_show',1)->order('sort desc,id desc')->page($Nowpage,$limits)->select();
-        if ($list)
-            $data['list'] = $list->toArray();
-        else
-            $data['list'] = [];
-        return Common::return_success('成功',$data);
-    }
-
-
-    /**
-     * 收益记录
-     */
-    public static function earningsRecord($Nowpage,$limits){
-        $user = app()->session->get('us');
-        $tuijian = MoneyLog::where('user_id',$user['id'])
-            ->where('is_del',0)
-            ->whereLike('title','%推荐会员%')
-            ->select();
-        if (count($tuijian)>0){
-            $tuijian = $tuijian->toArray();
-            foreach ($tuijian as $k=>$v){
-                $tj[$k]['id'] = $v['id'];
-                $tj[$k]['user_id'] = $v['user_id'];
-                $tj[$k]['profits_money'] = $v['change_money'];
-                $tj[$k]['create_at'] = $v['create_at'];
-                $tj[$k]['ins'] = '推荐会员';
-                $tj[$k]['xf_user_id'] = $v['link_id'];
-                $tj[$k]['order_id'] = 0;
-                $tj[$k]['merch_id'] = 0;
-                $tj[$k]['status'] = 5;
-                $tj[$k]['merch_name'] = User::where('id',$v['link_id'])->value('nickname');
-                $tj[$k]['mobile'] =  substr_replace(User::where('id',$v['link_id'])->value('phone'),'****',3,4);
-            }
-        }else{
-            $tj = [];
-        }
-        $count = OrderTuijian::where('user_id',$user['id'])->where('is_del',0)->count();
-        if ($count){
-            $list = OrderTuijian::where('a.user_id',$user['id'])
-                ->alias('a')
-                ->where('a.is_del',0)
-                ->join('Order b','a.order_id=b.id')
-                ->order('a.id desc')
-                ->field('a.id,a.user_id,profits_money,a.create_at,ins,b.user_id as xf_user_id,a.order_id,b.merch_id,a.status')
-                //->page($Nowpage,$limits)
-                ->select()->toArray();
-            foreach ($list as $k=>$v){
-                if ($v['status']==3){
-                    $list[$k]['merch_name'] = '团队收益';
-                    $list[$k]['mobile'] = substr_replace(User::where('id',$v['user_id'])->value('phone'),'****',3,4);
-                }elseif ($v['status']==4){
-                    $list[$k]['merch_name'] = '话费充值';
-                    $list[$k]['mobile'] = substr_replace(MobileRecharge::where('a.id',$v['order_id'])->alias('a')->join('User b','a.user_id=b.id')->value('b.phone'),'****',3,4);
-                }else{
-                    $list[$k]['merch_name'] = UserMerchInfo::where('id',$v['merch_id'])->value('name');
-                    $list[$k]['mobile'] = substr_replace(User::where('id',$v['xf_user_id'])->value('phone'),'****',3,4);
-                }
-                $list[$k]['ins'] = str_replace("推荐", "", $v['ins']);
-               // $list[$k]['create_at'] = date('Y-m-d',strtotime($v['create_at']));
-            }
-        }else{
-            $list = [];
-        }
-        $list2 = array_merge($tj,$list);
-        $data['count'] = count($list2);
-        array_multisort(array_column($list2,'create_at'),SORT_DESC,$list2);
-        $list2 = array_slice($list2,($Nowpage-1)*$limits,$limits);
-        foreach ($list2 as $k=>$v){
-            $list2[$k]['create_at'] = date('Y-m-d',strtotime($v['create_at']));
-        }
-        $data['list'] = $list2;
-        return Common::return_success('成功',$data);
-    }
-
-
-    /**
-     * 删除收益记录
-     */
-    public static function delEarningsRecord($id,$status){
-        $user = app()->session->get('us');
-        if ($status==5){
-            if (MoneyLog::where('id',$id)->update(['is_del'=>time()])){
-                return Common::return_success('删除成功');
-            }else{
-                return Common::return_error('删除失败');
-            }
-        }else{
-            if (OrderTuijian::where('id',$id)->update(['is_del'=>time()])){
-                return Common::return_success('删除成功');
-            }else{
-                return Common::return_error('删除失败');
-            }
-        }
-    }
-
-
-
-    /**
-     * 商家分红(创投信息)
-     */
-    public static function investMerch(){
-        $user = app()->session->get('us');
-        $value['all_invest_money'] = InvestMerch::where('user_id',$user['id'])->sum('money');
-        $value['all_earnings']  = sprintf("%.2f",OrderTuijian::where('user_id',$user['id'])->where('type',3)->sum('profits_money'));
-        $count = InvestMerch::where('user_id',$user['id'])->where('money','>',0)->count();
-        if ($count){
-            $list1 = InvestMerch::where('a.user_id',$user['id'])
-                ->alias('a')
-                ->where('a.money','>',0)
-                ->field('a.merch_id,a.copies,a.money,b.name,b.imgs')
-                ->join('UserMerchInfo b','a.merch_id=b.id')
-                ->order('a.money desc')
-                ->select()
-                ->toArray();
-            foreach ($list1 as $k=>$v){
-                $list1[$k]['image'] = explode(',',$v['imgs'])[0];
-                $list1[$k]['evaluation'] = UserMerchInfo::merchEvaluation($v['merch_id']);  //评价几颗星
-                unset($list1[$k]['imgs']);
-            }
-        }else{
-            $list1 = [];
-        }
-        $list['count'] = $count;
-        $list['list'] = $list1;
-        return Common::return_success('成功',compact('value','list'));
-    }
-
-
-    /**
-     * 创投记录
-     */
-    public static function inverstRecord($Nowpage,$limits){
-        $user = app()->session->get('us');
-        $count = InvestMerchLog::where('user_id',$user['id'])->where('paid',1)->count();
-        if ($count){
-            $list1 = InvestMerchLog::where('a.user_id',$user['id'])
-                ->alias('a')
-                ->where('a.paid',1)
-                ->join('UserMerchInfo b','a.merch_id=b.id')
-                ->field('a.user_id,a.merch_id,a.change_money,b.name,b.imgs,a.pm,a.pay_time')
-                ->order('a.id desc')
-                ->page($Nowpage,$limits)
-                ->select()->toArray();
-            foreach ($list1 as $k=>$v){
-                $list1[$k]['pay_time'] = date('Y-m-d',$v['pay_time']);
-                $list1[$k]['image'] = explode(',',$v['imgs'])[0];
-                $list1[$k]['evaluation'] = UserMerchInfo::merchEvaluation($v['merch_id']);  //评价几颗星
-                unset($list1[$k]['imgs']);
-            }
-        }else{
-            $list1 = [];
-        }
-        $list['count'] = $count;
-        $list['list'] = $list1;
-        return Common::return_success('成功',$list);
-
-    }
-
-
-    /**
-     * 创投记录
-     */
-    public static function userInverstRecord($merch_id){
-        $user = app()->session->get('us');
-        $count = InvestMerchLog::where('user_id',$user['id'])->where('merch_id',$merch_id)->where('paid',1)->count();
-        if ($count){
-            $list1 = InvestMerchLog::where('user_id',$user['id'])
-                ->where('merch_id',$merch_id)
-                ->where('paid',1)
-                ->field('user_id,merch_id,change_money,pm,pay_time')
-                ->order('id desc')
-                ->select()->toArray();
-            foreach ($list1 as $k=>$v){
-                $list1[$k]['pay_time'] = date('Y-m-d H:i:s',$v['pay_time']);
-            }
-        }else{
-            $list1 = [];
-        }
-        $list['count'] = $count;
-        $list['list'] = $list1;
-        return Common::return_success('成功',$list);
-
-    }
-
-
-
-    /**
-     * 商家分红(创投信息)--商家收益
-     */
-    public static function investMerchOne($merch_id){
-        $user = app()->session->get('us');
-        $merch = UserMerchInfo::where('id',$merch_id)->where('audit',1)->where('status',1)->field('id,user_id,name,category_one_id,category_two_id,log,lat,address,phone,capita,imgs,lat,log')->find();
-        if (!$merch)
-            return Common::return_error('商家不存在');
-        $merch =  $merch->toArray();
-        $merch['image'] = explode(',',$merch['imgs'])[0];
-        $merch['all_invest_money'] = InvestMerch::where('user_id',$user['id'])->where('merch_id',$merch_id)->sum('money');
-        $merch['evaluation'] = UserMerchInfo::merchEvaluation($merch_id);  //评价几颗星
-        $all_earnings = OrderTuijian::where('a.user_id',$user['id'])
-            ->alias('a')
-            ->where('b.merch_id',$merch_id)
-            ->where('a.type',3)
-            ->join('Order b','a.order_id=b.id')
-            ->sum('a.profits_money');
-        $merch['all_earnings']  = sprintf("%.2f",$all_earnings);
-        return Common::return_success('成功',$merch);
-    }
-    /**
-     * 商家分红(创投信息)--商家收益、日收益、月收益
-     */
-    public static function investMerchOneDayMonth($merch_id,$type,$dates,$Nowpage,$limits){
-        $user = app()->session->get('us');
-        $count = self::investByWhere($type,$dates)->where('a.user_id',$user['id'])
-            ->alias('a')
-            ->where('b.merch_id',$merch_id)
-            ->where('a.type',3)
-            ->join('Order b','a.order_id=b.id')
-            ->count();
-        if ($count){
-            $all_earnings = self::investByWhere($type,$dates)->where('a.user_id',$user['id'])
-                ->alias('a')
-                ->where('b.merch_id',$merch_id)
-                ->where('a.type',3)
-                ->join('Order b','a.order_id=b.id')
-                ->field('a.profits_money,a.create_at,a.ins')
-                ->order('a.id desc')
-                ->page($Nowpage,$limits)
-                ->select()->toArray();
-        }else{
-            $all_earnings = [];
-        }
-        $data['count'] = $count;
-        $data['list'] = $all_earnings;
-        return Common::return_success('成功',$data);
-    }
-
-    /**
-     * where条件
-     */
-    public static function investByWhere($type,$dates){
-        $model = new OrderTuijian();
-        if ($type==1){
-            $start = $dates." 00:00:00";
-            $end = $dates." 23:59:59";
-        }else{
-            $timebegin = strtotime($dates) ; //开始时间戳
-            $day = date('t',$timebegin);
-            $timeend = $timebegin + 86400 * $day  - 1; //结束时间戳
-            $start = date('Y-m-d H:i:s',$timebegin);
-            $end = date('Y-m-d H:i:s',$timeend);
-        }
-        return $model->whereBetweenTime('a.create_at',$start,$end);
-    }
-
-
-    /**
-     * 商家收益--商家收益、日收益、月收益
-     */
-    public static function merchOrderEarnings($type,$dates,$Nowpage,$limits){
-        $user = app()->session->get('us');
-        $merch = UserMerchInfo::where('user_id',$user['id'])->find();
-
-        $count = self::merchOrderByWhere($type,$dates)
-            ->where('a.isdel',0)
-            ->alias('a')
-            ->where('a.merch_id',$merch['id'])
-            ->where('a.status','in','2,3')
-            //->where('a.merch_money_is_to',1)
-            ->join('User b','a.user_id=b.id')
-            ->count();
-        if ($count){
-            $list = self::merchOrderByWhere($type,$dates)
-                ->where('a.isdel',0)
-                ->alias('a')
-                ->where('a.merch_id',$merch['id'])
-                ->where('a.status','in','2,3')
-               // ->where('a.merch_money_is_to',1)
-                ->join('User b','a.user_id=b.id')
-                ->order('a.id desc')
-                ->field('a.id,a.price,a.pay_time,a.order_type,b.phone,a.pay_type,a.merch_money,a.all_money')
-                ->page($Nowpage,$limits)
-                ->select()
-                ->toArray();
-            foreach ($list as $k=>$v){
-                $list[$k]['phone'] = substr_replace($v['phone'],'****',3,4);
-                $list[$k]['pay_time'] = date('Y-m-d H:i:s',$v['pay_time']);
-                if ($v['pay_type']=='yue')
-                    $list[$k]['pay_type'] = "余额支付";
-                elseif ($v['pay_type']=='weixin')
-                    $list[$k]['pay_type'] = "微信支付";
-                elseif ($v['pay_type']=='zfb')
-                    $list[$k]['pay_type'] = "支付宝支付";
-                if ($v['order_type']==1){
-                    $info = OrderInfo::where('order_id',$v['id'])->value('info');
-                    $list[$k]['product_name'] = json_decode($info,true)['product_name'];
-                }else{
-                    $list[$k]['product_name'] = "扫码支付";
-                }
-            }
-        }else{
-            $list = [];
-        }
-        $data['count'] = $count;
-        $data['list'] = $list;
-        return Common::return_success('成功',$data);
-    }
-
-
-    /**
-     * 删除商家收益记录
-     */
-    public static function delMerchOrderEarnings($id){
-        if (Order::where('id',$id)->update(['isdel'=>time()])){
-            return Common::return_success('删除成功');
-        }else{
-            return Common::return_error('删除失败');
-        }
-    }
-
-
-    /**
-     * where条件
-     */
-    public static function merchOrderByWhere($type,$dates){
-        $model = new Order();
-        if ($type==-1){
-            return $model;
-        } elseif ($type==1){
-            $start = strtotime($dates." 00:00:00");
-            $end = strtotime($dates." 23:59:59");
-        } elseif ($type==2){
-            $start = strtotime($dates) ; //开始时间戳
-            $day = date('t',$start);
-            $end = $start + 86400 * $day  - 1; //结束时间戳
-        }
-        return $model->whereBetweenTime('a.pay_time',$start,$end);
-    }
-
-    /**
-     * 通讯录
-     */
-    public static function addressBook($mobiles){
-//        $mobiles = json_decode($mobiles,true);
-        $arr = array();
-        foreach ($mobiles as $k=>$v){
-            $array['mobile'] = $v;
-            $mob = User::where('phone',str_replace(' ', '', $v))->count();
-            $array['is_reg'] = $mob > 0 ? true : false;
-            array_push($arr,$array);
-        }
-        return Common::return_success('成功',$arr);
-    }
-
-    /**
-     * 绑定支付宝
-     */
-    public static function bindZfb($account,$real_name){
-        $user = app()->session->get('us');
-        $userInfo = self::get($user['id']);
-        $userInfo->zfb_account = $account;
-        $userInfo->zfb_real_name = $real_name;
-        Db::startTrans();
-        try {
-            $userInfo->save();
-            Db::commit();
-            return Common::return_success('成功');
-        }catch (Exception $e) {
-            Db::rollback();
-            return Common::return_error('失败');
-        }
-    }
-
-    /**
-     * 解绑zfb
-     */
-    public static function delBindZfb($ver_code){
-        $user = app()->session->get('us');
-        $userInfo = self::get($user['id']);
-        //获取最后的验证码
-        $sms = Sms::where(['mobile' => $userInfo['phone'], 'event' => 'other'])
-            ->order('id', 'DESC')
-            ->find();
-        if (!$sms || $sms->code != $ver_code){
-            return Common::return_error('短信验证码不正确!');
-        }
-        $userInfo->zfb_account = null;
-        $userInfo->zfb_real_name = null;
-        Db::startTrans();
-        try {
-            $userInfo->save();
-            Db::commit();
-            return Common::return_success('成功');
-        }catch (Exception $e) {
-            Db::rollback();
-            return Common::return_error('失败');
-        }
-    }
-
-    /**
-     * 设置用户当前位置经纬度
-     */
-    public static function setNowLatLog($lat,$log){
-        $user = app()->session->get('us');
-        $userinfo = self::get($user['id']);
-        $userinfo->now_lat = $lat;
-        $userinfo->now_log = $log;
-        Db::startTrans();
-        try {
-            $userinfo->save();
-            Db::commit();
-            return Common::return_success('成功');
-        }catch (Exception $e) {
-            Db::rollback();
-            return Common::return_error('失败');
-        }
-    }
-
-    /**
-     * 设置用户当前位置经纬度
-     */
-    public static function setEvaBackgGroundImg($img){
-        $user = app()->session->get('us');
-        $userinfo = self::get($user['id']);
-        $userinfo->eva_background_img = $img;
-        Db::startTrans();
-        try {
-            $userinfo->save();
-            Db::commit();
-            return Common::return_success('成功');
-        }catch (Exception $e) {
-            Db::rollback();
-            return Common::return_error('失败');
-        }
-    }
-
-    /**
-     * 弹出红包
-     */
-    public static function popEnvelope(){
-        $user = app()->session->get('us');
-        $userinfo = self::where('id',$user['id'])->find();
-        $data['is_pop'] = 0;
-        if ($userinfo['create_at']>'2020-10-25 00:00:00'){
-            $pop_history = PopEnvelopHistory::where('user_id',$user['id'])->count();
-            if ($pop_history){
-                $data['is_pop'] = 0;
-                $data['data'] = [];
-            }else{
-                $coupon = CouponUser::where('user_id',$user['id'])
-                    ->where('type',1)
-                    ->field('coupon_title,coupon_price,start_time,end_time,validity')
-                    ->find();
-                if ($coupon){
-                    $data['is_pop'] = 1;
-                    $coupon['start_time'] = date('Y-m-d H:i:s',$coupon['start_time']);
-                    $coupon['end_time'] = date('Y-m-d H:i:s',$coupon['end_time']);
-                }
-                $data['data'] = $coupon;
-                PopEnvelopHistory::create(['user_id'=>$user['id']]);
-            }
-        }else{
-            $data['data'] = [];
-        }
-        return Common::return_success('成功',$data);
-    }
-
-
-
-
-    /**
-     * 生成二维码
-     */
-    public static function setCode(){
-        $list = Db::name('user')->where(1)->select();
-        if ($list){
-            foreach ($list as &$v){
-                $invite_qr_code = Common::setintivecode($v['id'],1);
-                $mer_qr_code = Common::setintivecode($v['id'],2);
-                self::where('id',$v['id'])->update(['invite_qr_code'=>$invite_qr_code,'mer_qr_code'=>$mer_qr_code]);
-            }
-        }
-    }
-}

+ 0 - 21
application/common/model/UserGroup.php

@@ -1,21 +0,0 @@
-<?php
-
-namespace app\common\model;
-
-use think\Model;
-
-class UserGroup extends Model
-{
-
-    // 表名
-    protected $name = 'user_group';
-    // 自动写入时间戳字段
-    protected $autoWriteTimestamp = 'int';
-    // 定义时间戳字段名
-    protected $createTime = 'createtime';
-    protected $updateTime = 'updatetime';
-    // 追加属性
-    protected $append = [
-    ];
-
-}

+ 0 - 555
application/common/model/UserMerchInfo.php

@@ -1,555 +0,0 @@
-<?php
-
-namespace app\common\model;
-
-use app\common\library\AliPay;
-use EasyWeChat\Factory;
-use think\Model;
-use app\common\library\Common;
-use think\Db;
-use app\common\library\WxPay;
-
-/**
- * 商家model
- */
-class UserMerchInfo Extends Model
-{
-
-    // 开启自动写入时间戳字段
-    protected $autoWriteTimestamp = 'TIMESTAMP';
-    // 定义时间戳字段名
-    protected $createTime = 'create_at';
-    protected $updateTime = false;
-    // 追加属性
-    protected $append = [
-    ];
-
-    /**
-     * 搜索商家
-     */
-    public static function search($keywords){
-        $user = app()->session->get('us');
-
-    }
-    /**
-     * 获取商家信息列表
-     */
-    public static function merchList($city,$Nowpage,$limits,$id = '',$cate_id = '',$keywords = '',$lat='',$log=''){
-        $user = app()->session->get('us');
-        $list = self::byWhere($cate_id,$id,$keywords,$city)
-            ->field('id,name,user_id,capita,imgs,list_img,address,lat,log,sales')
-//            ->order('sort desc')
-//            ->page($Nowpage, $limits)
-            ->select();
-        if ($list){
-            $dates =  date('Y-m');
-            $timebegin = strtotime($dates) ; //开始时间戳
-            $day = date('t',$timebegin);
-            $timeend = $timebegin + 86400 * $day  - 1; //结束时间戳
-            $start = date('Y-m-d H:i:s',$timebegin);
-            $end = date('Y-m-d H:i:s',$timeend);
-            $list = $list->toArray();
-            foreach ($list as $k=>$v){
-                //商家所有商品月销量
-                $list[$k]['sales'] = Order::where('merch_id',$v['id'])->where('status','in','2,3')->count()+$v['sales'];
-               // $list[$k]['sales'] = Order::where('merch_id',$v['id'])->whereBetweenTime('create_at',$start,$end)->where('status','in','2,3')->count();
-                $list[$k]['image'] = explode(',',$v['imgs'])[0];
-                if (!$v['list_img'])
-                    $list[$k]['list_img'] = explode(',',$v['imgs'])[0];
-                $list[$k]['evaluation']  = self::merchEvaluation($v['id']);   //评价几颗星
-                if (!$user && !$lat && !$log){
-                    $list[$k]['distance']  = '';   //距离
-                }else{
-                    $list[$k]['distance']  = Common::getDistance($v['lat'],$v['log'],$lat,$log);   //距离
-                }
-                unset($list[$k]['imgs']);
-            }
-            array_multisort(array_column($list,'distance'),SORT_ASC,$list);
-            $list = array_slice($list,($Nowpage-1)*$limits,$limits);
-            foreach ($list as $k=>$v){
-                if ($v['distance']){
-                    $list[$k]['distance']=$v['distance']."km";
-                }
-            }
-        } else{
-            $list =  [];
-        }
-        if ($cate_id){
-            $catelist = array(array('id'=>-1,'name'=>'全部'));
-            $cate_list = Category::where('pid',$id)
-                ->where('is_del',1)
-                ->where('is_show',1)
-                ->field('id,name')
-                ->order('sort desc')
-                ->select();
-            if ($cate_list)
-                $catelist = array_merge($catelist,($cate_list->toArray()));
-            $data['cate_list'] = $catelist;
-        }
-        $data['count'] = count($list);
-        $data['list'] = $list;
-        return Common::return_success('成功',$data);
-    }
-
-    /**
-     * where 条件
-     * @param $cate_id
-     * @param $id
-     * @return $this
-     */
-    public static function byWhere($cate_id,$id,$keywords,$city){
-        $model = new self;
-        if ($city){
-            $model = $model->where('city','like','%'.$city.'%');
-        }
-        if (!$cate_id){
-            if ($keywords){
-                return $model->where('audit', 1)->where('status', 1)->where('name','like','%'.$keywords.'%');
-            }
-            return $model->where('audit', 1)->where('status', 1)->where('is_home', 1);
-        } else{
-            if ($cate_id==-1){
-                return $model->where('audit', 1)->where('status', 1)->where('category_one_id',$id);
-            }else{
-                return $model->where('audit', 1)->where('status', 1)->where('category_one_id',$id)->where('category_two_id',$cate_id);
-            }
-        }
-    }
-
-    /**
-     * 获取商家几颗星
-     */
-    public static function merchEvaluation($id){
-        $count = ProductEvaluation::where('is_del',1)->where('merch_id',$id)->count();
-        $average = 4;
-        if ($count){
-            $eval_sum = ProductEvaluation::where('is_del',1)->where('merch_id',$id)->sum('evaluation');
-            $average = ceil($eval_sum/$count);
-        }
-        return $average;
-    }
-
-    /**
-     * 商家详情
-     * @param $merch_id
-     */
-    public static function merchDetail($merch_id){
-        $user = app()->session->get('us');
-        $merch = self::where('id',$merch_id)->where('audit',1)->where('status',1)->field('id,user_id,name,category_one_id,category_two_id,log,lat,address,phone,capita,imgs,lat,log,sales')->find();
-        if (!$merch)
-            return Common::return_error('商家不存在');
-        $merch =  $merch->toArray();
-        $merch['imgs'] = explode(',',$merch['imgs']);
-        $merch['evaluation'] = self::merchEvaluation($merch_id);  //评价几颗星
-        $merch['distance']  = Common::getDistance($merch['lat'],$merch['log'])."km";   //距离
-        $merch['category_type']  = Category::where('id',$merch['category_one_id'])->value('type');
-
-        $dates =  date('Y-m');
-        $timebegin = strtotime($dates) ; //开始时间戳
-        $day = date('t',$timebegin);
-        $timeend = $timebegin + 86400 * $day  - 1; //结束时间戳
-        $start = date('Y-m-d H:i:s',$timebegin);
-        $end = date('Y-m-d H:i:s',$timeend);
-        //商家所有商品月销量
-        //$merch['sales'] = Order::where('merch_id',$merch_id)->whereBetweenTime('create_at',$start,$end)->where('status','in','2,3')->count();
-        $merch['sales'] = Order::where('merch_id',$merch_id)->where('status','in','2,3')->count()+$merch['sales'];
-
-
-        $invest_merch = InvestMerch::where('user_id',$user['id'])->where('merch_id',$merch_id)->where('money','>',0)->count();
-        $merch['is_invest_merch'] = $invest_merch > 0 ? true : false;
-        //商品
-        $product = Product::where('merch_id',$merch_id)->where('is_del',1)->order('id desc')->field('id,merch_id,user_id,product_name,price,product_info,imgs,specifications,first_price')->limit(12)->select();
-        if ($product){
-            $product = $product->toArray();
-            foreach ($product as $k=>$v){
-                if ($v['price']==0){
-                    $product[$k]['price'] = json_decode($v['specifications'],true)[0]['price'];
-                    $product[$k]['is_first_buy'] = false;
-                }else{
-                    if ($v['first_price']>0){
-                        $order = Order::where('user_id',$user['id'])->where('product_id',$v['id'])->whereNotIn('status','0,4')->count();
-                        if ($order){
-                            $product[$k]['is_first_buy'] = false;
-                        }else{
-                            $product[$k]['is_first_buy'] = true;
-                            $product[$k]['price'] = $v['first_price'];
-                        }
-                    }else{
-                        $product[$k]['is_first_buy'] = false;
-                    }
-                }
-                $product[$k]['image'] = explode(',',$v['imgs'])[0];
-                $product[$k]['is_collect'] = Product::checkUserCollect($v['id']) ? true : false;
-                unset($product[$k]['imgs']);
-            }
-        } else{
-            $product = [];
-        }
-        //评论
-        $evaluation['count'] = ProductEvaluation::where('merch_id',$merch_id)->where('type',0)->where('is_del',1)->count();
-        $evaluation_list = ProductEvaluation::where('merch_id',$merch_id)
-            ->alias('a')
-            ->where('a.type',0)
-            ->where('a.is_del',1)
-            ->join('User b','a.user_id=b.id')
-            ->field('a.*,b.nickname,b.headimg')
-            ->order('a.is_optimization desc,a.id desc')
-            ->limit(3)
-            ->select();
-        if ($evaluation_list){
-            $evaluation_list = $evaluation_list->toArray();
-            foreach ($evaluation_list as $k=>$v){
-                $evaluation_list[$k]['imgs'] = $v['imgs'] ? explode(',',$v['imgs']) : [];
-                $evaluation_list[$k]['create_at'] = date('Y-m-d',strtotime($v['create_at']));
-                $merch_reply = ProductEvaluation::where('type',1)->where('eva_id',$v['id'])->field('id,info,create_at')->find();
-                if ($merch_reply){
-                    $merch_reply =  $merch_reply->toArray();
-                    $evaluation_list[$k]['merch_reply'] = $merch_reply;
-                }else{
-                    $evaluation_list[$k]['merch_reply'] = [];
-                }
-            }
-            $evaluation['list'] = $evaluation_list;
-        }else{
-            $evaluation['list'] = [];
-        }
-        //招聘列表
-        $jobs = Jobs::where('user_id',$merch['user_id'])->where('is_del',1)->select();
-        if ($jobs){
-            $jobs = $jobs->toArray();
-            foreach ($jobs as $k=>$v){
-                $jobs[$k]['label'] = explode(',',$v['label']);
-            }
-        } else{
-            $jobs = [];
-        }
-        self::footPrint($merch_id);  //足迹
-        return Common::return_success('成功',compact('merch', 'product','evaluation','jobs'));
-    }
-
-
-    /**
-     * 浏览足迹
-     */
-    public static function footPrint($merch_id){
-        $user = app()->session->get('us');
-        if ($user){
-            $data['user_id'] = $user['id'];
-            $data['merch_id'] = $merch_id;
-            ProductUserFootprint::create($data);
-        }
-    }
-
-
-    /**
-     * 创投商家
-     */
-    public static function investMerch($merch_id,$copies,$pay_type,$come){
-        $user = app()->session->get('us');
-        $merch = self::where('id',$merch_id)->where('audit',1)->find();
-        if (!$merch)
-            return Common::return_error('商家错误');
-        $money = $copies * 1000;
-        $openid = User::where('id',$user['id'])->value('openid');
-        Db::startTrans();
-        try {
-            //详细记录表
-            $log['user_id'] = $user['id'];
-            $log['merch_id'] = $merch_id;
-            $log['change_money'] = $money;
-            $log['pay_type'] = $pay_type;
-            $order_no = Common::getNewOrderId($user['id']);
-            $log['order_no'] = $order_no;
-            $inveslog = InvestMerchLog::create($log);
-            switch ($pay_type) {
-//                case 'yue':
-//                    $userinfo = User::get($user['id']);
-//                    if ($userinfo->money < $money){
-//                        Db::rollback();
-//                        return Common::return_error('余额不足');
-//                    }
-//                    //余额支付
-//                    User::money($money,$user['id'],'创投支付'.$money.'元');
-//                    //修改支付状态
-//                    $inveslog_id = $inveslog->id;
-//                    InvestMerchLog::where('id',$inveslog_id)->update(['paid'=>1,'pay_time'=>time()]);
-//
-//                    //判断是否有创投记录
-//                    $inves = InvestMerch::where('user_id',$user['id'])->where('merch_id',$merch_id)->find();
-//                    if ($inves){
-//                        $inves->copies = $inves->copies + $copies;
-//                        $inves->money = $inves->money + $money;
-//                        $inves->save();
-//                    }else{
-//                        $data['user_id'] = $user['id'];
-//                        $data['merch_id'] = $merch_id;
-//                        $data['copies'] = $copies;
-//                        $data['money'] = $money;
-//                        InvestMerch::create($data);
-//                    }
-//                    Db::commit();
-//                    return Common::return_success('支付成功');
-//                    break;
-                case 'weixin':
-                    //微信支付
-                    $wx = new WxPay();//实例化微信支付控制器
-                    $body = '订单号' . $order_no;//支付说明
-                    $out_trade_no = $order_no;//订单号
-                    $total_fee = $money * 100;//支付金额(乘以100)
-                    $notify_url = 'https://'.$_SERVER['SERVER_NAME'].'/api/pay/pay_invest_merch';//回调地址
-                    if ($come=='weixin'){
-                        $config = $wx->retrunconfig();
-                        $config['notify_url'] = $notify_url;
-
-                        $app = Factory::payment($config);
-                        $trade_type = "JSAPI";
-                        $order = $app->order->unify([
-                            'body' => $body,
-                            'out_trade_no' => $out_trade_no,
-                            'total_fee' => $total_fee,
-                            'trade_type' => $trade_type, // JSAPI--JSAPI支付(或小程序支付)、NATIVE--Native支付、APP--app支付,MWEB--H5支付
-                            'openid' => $openid,
-                        ]);
-                        if ($order['return_msg']=='OK'){
-                            if ($order['result_code']=='FAIL'){
-                                Db::rollback();
-                                return Common::return_error($order['err_code_des']);
-                            }else{
-                                $order1 = $app->jssdk->bridgeConfig($order['prepay_id']);//执行二次签名返回参数
-                                InvestMerchLog::where('order_no',$order_no)->update(['wx_order'=>$order1]);
-                                $retrun_data['order_no'] = $order_no;
-                                $retrun_data['pay'] = json_decode($order1,true);
-                                Db::commit();
-                                return Common::return_success('成功',$retrun_data);
-                            }
-                        } else {
-                            Db::rollback();
-                            return Common::return_error($order['return_msg']);
-                        }
-                        break;
-                    }else{
-
-                        $config = $wx->retrunconfig2();
-
-                        try{
-                            $app    =   Factory::payment($config);
-                            $result = $app->order->unify([
-                                'body' => $body,
-                                'out_trade_no' => $out_trade_no,
-                                'total_fee' => $total_fee,
-                                'notify_url' => $notify_url, // 支付结果通知网址,如果不设置则会使用配置里的默认地址
-                                'trade_type' => 'APP', // 请对应换成你的支付方式对应的值类型
-                            ]);
-                            $jssdk      =   $app->jssdk;
-                            $order1 = $jssdk->appConfig($result['prepay_id']);
-                            self::where('order_no',$order_no)->update(['wx_order'=>json_encode($order1,true)]);
-                            Db::commit();
-                            $retrun_data['order_no'] = $order_no;
-                            $retrun_data['pay'] = $order1;
-                            return Common::return_success('成功',$retrun_data);
-
-                        }catch (Exception $e){
-                            Db::rollback();
-                            return Common::return_error('失败');
-                        }
-                        break;
-//                        $order = $wx->getPrePayOrder($body, $out_trade_no, $total_fee, $notify_url,$come,$openid);//调用微信支付的方法
-//                        if ($order['return_msg']=='OK'){
-//                            if ($order['result_code']=='FALL'){
-//                                Db::rollback();
-//                                return Common::return_error($order['err_code_des']);
-//                            }else{
-//                                $order1 = $wx->getOrder($order['prepay_id']);//执行二次签名返回参数
-//                                InvestMerchLog::where('order_no',$order_no)->update(['wx_order'=>json_encode($order1,true)]);
-//                                $retrun_data['order_no'] = $order_no;
-//                                $retrun_data['pay'] = $order1;
-//                                Db::commit();
-//                                return Common::return_success('成功',$retrun_data);
-//                            }
-//                        } else {
-//                            Db::rollback();
-//                            return Common::return_error($order['return_msg']);
-//                        }
-//                        break;
-                    }
-
-                case 'zfb':
-                    $zfb = new AliPay();//实例化支付宝支付控制器
-                    $body = '创投商家';//支付说明
-                    $out_trade_no = $order_no;//订单号
-                    $total_fee = $money * 100;//支付金额(乘以100)
-                    $notify_url = 'http://'.$_SERVER['SERVER_NAME'].'/api/pay/alipay_invest_merch';//回调地址
-                    $order = $zfb->aliPay($body, $total_fee, $out_trade_no, $notify_url);//调用支付宝支付的方法
-                    $retrun_data['order_no'] = $order_no;
-                    $retrun_data['pay'] = $order;
-                    Db::commit();
-                    return Common::return_success('成功',$retrun_data);
-                    break;
-            }
-        }catch (Exception $e) {
-            Db::rollback();
-            return Common::return_error('支付失败');
-        }
-
-    }
-
-    /**
-     *  成功修改订单状态
-     */
-    public static function paySuccess($order_no,$result){
-        $order = InvestMerchLog::where('order_no',$order_no)->find();
-        Db::startTrans();
-        try {
-            $order->paid = 1;  //支付成功
-            $order->pay_time = time();
-            $order->return_success_info = json_encode($result,true);
-            $order->save();
-            //判断是否有创投记录
-            $inves = InvestMerch::where('user_id',$order['user_id'])->where('merch_id',$order['merch_id'])->find();
-            $copies = $order['change_money']/1000;
-            if ($inves){
-                $inves->copies = $inves->copies + $copies;
-                $inves->money = $inves->money + $order['change_money'];
-                $inves->save();
-            }else{
-                $data['user_id'] = $order['user_id'];
-                $data['merch_id'] = $order['merch_id'];
-                $data['copies'] = $copies;
-                $data['money'] = $order['change_money'];
-                InvestMerch::create($data);
-            }
-            Db::commit();
-            return Common::return_success('支付成功');
-        }catch (Exception $e) {
-            Db::rollback();
-            return Common::return_error('支付失败');
-        }
-    }
-
-    /**
-     * 获取创投额度
-     */
-    public static function getInvestMercheMoney($merch_id){
-        $user = app()->session->get('us');
-        $merch = self::where('id',$merch_id)->where('audit',1)->find();
-        if (!$merch)
-            return Common::return_error('商家错误');
-        $inves = InvestMerch::where('user_id',$user['id'])->where('merch_id',$merch_id)->find();
-        if ($inves)
-            $data['money'] = $inves->money;
-        else
-            $data['money'] = 0;
-        return Common::return_success('成功',$data);
-    }
-
-
-    /**
-     * 转出
-     */
-    public static function investOut($merch_id,$money){
-        $user = app()->session->get('us');
-        $merch = self::where('id',$merch_id)->where('audit',1)->find();
-        if (!$merch)
-            return Common::return_error('商家错误');
-
-        //判断是否有创投记录
-        $inves = InvestMerch::where('user_id',$user['id'])->where('merch_id',$merch_id)->find();
-        if (!$inves || $inves->money < $money)
-            return Common::return_error('转出额度不足');
-
-        Db::startTrans();
-        try {
-            User::money($money,$user['id'],'创投转出'.$money.'元',1);
-            $inves->copies = $inves->copies - ($money/1000);
-            $inves->money = $inves->money - $money;
-            $inves->save();
-            //详细记录表
-            $log['user_id'] = $user['id'];
-            $log['pm'] = 1;
-            $log['merch_id'] = $merch_id;
-            $log['change_money'] = $money;
-            $order_no = Common::getNewOrderId($user['id']);
-            $log['order_no'] = $order_no;
-            $log['pay_time'] = time();
-            InvestMerchLog::create($log);
-            Db::commit();
-            return Common::return_success('转出成功');
-        }catch (Exception $e) {
-            Db::rollback();
-            return Common::return_error('转出失败');
-        }
-    }
-
-
-    /**
-     * 根据用户id获取商家信息
-     */
-    public static function getMerchinfoByUser($user_id){
-        $merch = self::where('user_id',$user_id)->field('id,name,user_id,capita,imgs,address,lat,log')->find();
-        if (!$merch)
-            return Common::return_error('商家不存在');
-        $merch  = $merch->toArray();
-        $merch['imgs'] = explode(',',$merch['imgs']);
-        $merch['evaluation']  = self::merchEvaluation($merch['id']);   //评价几颗星
-        $merch['distance']  = Common::getDistance($merch['lat'],$merch['log'])."km";   //距离
-        return Common::return_success('成功',$merch);
-    }
-
-
-    /**
-     * 变更商家余额
-     * @param int $money    余额
-     * @param int $user_id  会员ID
-     * @param string $memo  备注
-     */
-    public static function money($money, $merch_id, $memo, $order_id, $pm = 0)
-    {
-        $user = self::get($merch_id);
-        if ($user)
-        {
-            $before = $user->money;
-            if ($pm==1){
-                $after = $user->money + $money;
-            }else{
-                $after = $user->money - $money;
-            }
-            //更新商家信息
-            $user->save(['money' => $after]);
-            //写入日志
-            MerchMoneyLog::create(['user_id' => $merch_id,'pm' => $pm, 'change_money' => $money,'order_id'=>$order_id, 'before' => $before, 'after' => $after, 'title' => $memo]);
-        }
-    }
-
-
-    /**
-     * 切换收款方式
-     */
-    public static function switchCollectionType($collection_type){
-        $user = app()->session->get('us');
-        $merch = self::where('user_id',$user['id'])->find();
-        $merch->collection_type = $collection_type;
-        if ($merch->save()){
-            return Common::return_success('切换成功');
-        }else{
-            return Common::return_error('切换失败');
-        }
-    }
-
-    /**
-     * 绑定收款信息
-     */
-    public static function addSaveCollectionInfo($data){
-        $user = app()->session->get('us');
-        $data['update_at'] = date('Y-m-d H:i:s');
-        if (self::where('user_id',$user['id'])->update($data)){
-            return Common::return_success('成功');
-        }else{
-            return Common::return_error('失败');
-        }
-    }
-
-
-
-
-
-}

+ 0 - 118
application/common/model/UserRecharge.php

@@ -1,118 +0,0 @@
-<?php
-
-namespace app\common\model;
-
-use think\Model;
-use app\common\library\Common;
-use think\Db;
-use app\common\library\WxPay;
-
-/**
- * 余额充值model
- */
-class UserRecharge Extends Model
-{
-
-    // 开启自动写入时间戳字段
-    protected $autoWriteTimestamp = 'int';
-    // 定义时间戳字段名
-    protected $createTime = 'add_time';
-    protected $updateTime = false;
-    // 追加属性
-    protected $append = [
-    ];
-
-
-    /**
-     * 余额充值
-     */
-    public static function userRecharge($money,$pay_type){
-        $user = app()->session->get('us');
-        //下单
-        $data['user_id'] = $user['id'];
-        $order_no = Common::getNewOrderId($user['id']);
-        $data['order_no'] = $order_no;
-        $data['recharge_type'] = $pay_type;
-        $data['price'] = $money;
-        Db::startTrans();
-        try {
-            //存入订单
-            self::create($data);
-            switch ($pay_type){
-                case 'weixin':
-                    //微信支付
-                    $wx = new WxPay();//实例化微信支付控制器
-                    $body = '订单号' . $order_no;//支付说明
-                    $out_trade_no = $order_no;//订单号
-                    $total_fee = $money * 100;//支付金额(乘以100)
-                    $notify_url = 'https://'.$_SERVER['SERVER_NAME'].'/api/pay/user_recharge_order';//回调地址
-                    $order = $wx->getPrePayOrder($body, $out_trade_no, $total_fee, $notify_url);//调用微信支付的方法
-                    if ($order['return_msg']=='OK'){
-                        if ($order['result_code']=='FALL'){
-                            Db::rollback();
-                            return Common::return_error($order['err_code_des']);
-                        }else{
-                            $order1 = $wx->getOrder($order['prepay_id']);//执行二次签名返回参数
-                            self::where('order_no',$order_no)->update(['wx_order'=>json_encode($order1,true)]);
-                            $retrun_data['order_no'] = $order_no;
-                            $retrun_data['pay'] = $order1;
-                            Db::commit();
-                            return Common::return_success('成功',$retrun_data);
-                        }
-                    } else {
-                        Db::rollback();
-                        return Common::return_error($order['return_msg']);
-                    }
-                    break;
-                case 'zfb':
-
-                    break;
-            }
-        }catch (Exception $e) {
-            Db::rollback();
-            return Common::return_error('失败');
-        }
-    }
-
-
-    /**
-     * 微信支付成功修改订单状态
-     */
-    public static function paySuccess($order_no,$result){
-        $order = self::where('order_no',$order_no)->find();
-        Db::startTrans();
-        try {
-            $order->paid = 1;  //修改状态   已完成
-            $order->pay_time = time();
-            $order->return_success_info = json_encode($result,true);
-            $order->save();
-            User::money($order['price'],$order['user_id'],'微信充值'.$order['price'].'元',1);
-            Db::commit();
-            return Common::return_success('支付成功');
-        }catch (Exception $e) {
-            Db::rollback();
-            return Common::return_error('支付失败');
-        }
-    }
-
-    /**
-     * 充值记录
-     */
-    public static function rechargeRecord($Nowpage,$limits){
-        $user = app()->session->get('us');
-        $count = self::where('user_id',$user['id'])->where('paid',1)->count();
-        if ($count){
-            $list = self::where('user_id',$user['id'])->where('paid',1)->field('user_id,order_no,recharge_type,price,pay_time')->order('id desc')->page($Nowpage,$limits)->select()->toArray();
-            foreach ($list as $k=>$v){
-                $list[$k]['pay_time'] = date('Y-m-d H:i',$v['pay_time']);
-            }
-        }else{
-            $list = [];
-        }
-        $data['count'] = $count;
-        $data['list'] = $list;
-        return Common::return_success('成功',$data);
-    }
-
-
-}

+ 0 - 21
application/common/model/UserRule.php

@@ -1,21 +0,0 @@
-<?php
-
-namespace app\common\model;
-
-use think\Model;
-
-class UserRule extends Model
-{
-
-    // 表名
-    protected $name = 'user_rule';
-    // 自动写入时间戳字段
-    protected $autoWriteTimestamp = 'int';
-    // 定义时间戳字段名
-    protected $createTime = 'createtime';
-    protected $updateTime = 'updatetime';
-    // 追加属性
-    protected $append = [
-    ];
-
-}

+ 0 - 128
application/common/model/UserWeixin.php

@@ -1,128 +0,0 @@
-<?php
-
-namespace app\common\model;
-
-use think\Model;
-use think\Db;
-use app\common\library\Common;
-
-/**
- * 微信model
- */
-class UserWeixin extends Model
-{
-    // 开启自动写入时间戳字段
-    protected $autoWriteTimestamp = 'TIMESTAMP';
-    // 定义时间戳字段名
-    protected $createTime = 'create_at';
-    protected $updateTime = false;
-    /**
-     * 绑定微信
-     * @param $code
-     * @return array|int
-     */
-    public static function getOpenId($code){
-        $user = app()->session->get('us');
-        $appid = Config::get_values('wechat_appid');
-        $secret = Config::get_values('wechat_appsecret');
-        $url = "https://api.weixin.qq.com/sns/oauth2/access_token?appid=$appid&secret=$secret&code=$code&grant_type=authorization_code";
-        $result = self::curlRequest($url);
-        if (isset($result['access_token'])){
-            $access_token=$result['access_token'];
-            $openid=$result['openid'];
-            $urltoc = "https://api.weixin.qq.com/sns/userinfo?access_token=$access_token&openid=$openid&lang=zh_CN";
-            $resinfos =self::http_curl($urltoc);
-            $data['user_id'] = $user['id'];
-            $data['openid'] = $resinfos['openid'];
-            $data['nickname'] = $resinfos['nickname'];
-            $data['headimgurl'] = $resinfos['headimgurl'];
-            Db::startTrans();
-            try {
-                self::create($data);
-                Db::commit();
-                $resu = ['openid'=>$resinfos['openid'],'nickname'=>$resinfos['nickname'],'sex'=>$resinfos['sex'],'headimgurl'=>$resinfos['headimgurl'],'access_token'=>$access_token];
-                return Common::return_success('成功',$resu);
-            }catch (Exception $e) {
-                Db::rollback();
-                return Common::return_error('失败');
-            }
-        }else{
-            return Common::return_error('失败');
-        }
-    }
-
-    /**
-     * 解绑
-     */
-    public static function delBindWeixin($ver_code){
-        $user = app()->session->get('us');
-        $mobile = User::where('id',$user['id'])->value('phone');
-        //获取最后的验证码
-        $sms = Sms::where(['mobile' => $mobile, 'event' => 'other'])
-            ->order('id', 'DESC')
-            ->find();
-        if (!$sms || $sms->code != $ver_code){
-            return Common::return_error('短信验证码不正确!');
-        }
-        $bind = self::where('user_id',$user['id'])->find();
-        if ($bind){
-            Db::startTrans();
-            try {
-                self::where('id',$bind['id'])->delete();
-                Db::commit();
-                return Common::return_success('解绑成功');
-            }catch (Exception $e) {
-                Db::rollback();
-                return Common::return_error('解绑失败');
-            }
-        }else{
-            return Common::return_error('解绑失败');
-        }
-    }
-
-    /**
-     * curl 请求
-     * @param $url string 请求地址
-     * @param $headers json 请求头
-     * @param $body json 请求体
-     * @return mixed
-     */
-    public static function curlRequest($url, $headers = [], $body = [], $method = "GET")
-    {
-        $ch = curl_init();
-        curl_setopt($ch, CURLOPT_URL, $url);
-        curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);//设置请求头
-        curl_setopt($ch, CURLOPT_POSTFIELDS, $body);//设置请求体
-        curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method); //定义请求类型
-        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
-        curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
-        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
-        curl_setopt($ch, CURLOPT_HTTP_VERSION, 'CURL_HTTP_VERSION_1_1');
-        $output = curl_exec($ch);
-        curl_close($ch);
-        $arr = json_decode($output, true);
-        return $arr;
-    }
-
-    public static function http_curl($url, $type = 'get', $res = 'json', $arr = '')
-    {
-        //1.初始化curl
-        $ch = curl_init();
-        //2.设置curl的参数
-        curl_setopt($ch, CURLOPT_URL, $url);
-        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); //不验证证书
-        curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); //不验证证书
-        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
-        if ($type == 'post') {
-            curl_setopt($ch, CURLOPT_POST, 1);
-            curl_setopt($ch, CURLOPT_POSTFIELDS, $arr);
-        }
-        //3.采集
-        $output = curl_exec($ch);
-        //4.关闭
-        curl_close($ch);
-        if ($res == 'json') {
-            return json_decode($output, true);
-        }
-    }
-}

+ 0 - 125
application/common/model/UserWithdraw.php

@@ -1,125 +0,0 @@
-<?php
-
-namespace app\common\model;
-
-use app\common\library\AliPay;
-use think\Model;
-use app\common\library\Common;
-use think\Db;
-use app\common\library\WxPay;
-use app\common\library\WxMerchPay;
-
-/**
- * 余额提现model
- */
-class UserWithdraw Extends Model
-{
-
-    // 开启自动写入时间戳字段
-    protected $autoWriteTimestamp = 'TIMESTAMP';
-    // 定义时间戳字段名
-    protected $createTime = 'create_at';
-    protected $updateTime = false;
-    // 追加属性
-    protected $append = [
-    ];
-
-
-    /**
-     * 余额提现
-     */
-    public static function userWithdraw($money,$withdraw_type,$with_password){
-        $user = app()->session->get('us');
-        $userinfo = User::where('id',$user['id'])->find();
-        $withdraw_min_price = Config::get_values('withdraw_min_price');  //最小提现金额
-        $withdraw_max_price = Config::get_values('withdraw_max_price');  //最大提现金额
-        if ($userinfo['with_password']!=md5($with_password))
-            return Common::return_error('支付密码不正确');
-        if ($money < $withdraw_min_price)
-            return Common::return_error('最低提现'.$withdraw_min_price.'元');
-        if ($money > $withdraw_max_price)
-            return Common::return_error('最大提现'.$withdraw_min_price.'元');
-        if ($userinfo['money']<$money)
-            return Common::return_error('余额不足');
-
-        $data['user_id'] = $user['id'];
-        $order_no = Common::getNewOrderId($user['id']);
-        $data['order_no'] = $order_no;
-        $data['withdraw_type'] = $withdraw_type;
-        $data['price'] = $money;
-        $poundage_proportion = Config::get_values('poundage_proportion');    //手续费百分比
-        $data['poundage_proportion'] = $poundage_proportion;
-        $proportion = sprintf("%.2f", $money*($poundage_proportion/100));    //四舍五入保留两位小数点
-        $data['proportion'] = $proportion;
-        $real_money = $money-$proportion;
-        $data['real_money'] = $real_money;
-        Db::startTrans();
-        try {
-            self::create($data);
-            switch ($withdraw_type) {
-                case 'weixin':
-                    $opend_id = UserWeixin::where('user_id',$user['id'])->value('openid');
-                    if (!$opend_id)
-                        return Common::return_error('未绑定微信,无法提现');
-                    $wx = new WxMerchPay();
-                   // return Common::return_success('提交成功');
-                    $result = $wx->sendMoney($real_money,$opend_id,$order_no,'余额提现');
-                    if ($result['return_code']=='SUCCESS' && $result['result_code']=='SUCCESS'){
-                        User::money($money,$user['id'],'微信提现'.$money.'元');
-                        self::where('order_no',$order_no)->update(['paid'=>1,'pay_time'=>time(),'return_info'=>json_encode($result,true)]);
-                        Db::commit();
-                        return Common::return_success('提现成功');
-                    }else{
-                        self::where('order_no',$order_no)->update(['return_info'=>json_encode($result,true)]);
-                        Db::commit();
-                        return Common::return_error('提现失败');
-                    }
-                    break;
-                case 'zfb':
-                    if (!$userinfo['zfb_account'] || !$userinfo['zfb_real_name'])
-                        return Common::return_error('未绑定支付宝账号,无法提现');
-
-                    $zfb = new AliPay();//实例化支付宝支付控制器
-                    $result = $zfb->FundTransToaccount($order_no, $userinfo['zfb_account'], $userinfo['zfb_real_name'], $real_money,'余额提现');//调用支付宝支付的方法
-                    if (!empty($result) && $result == 10000){
-                        User::money($money,$user['id'],'支付宝提现'.$money.'元');
-                        self::where('order_no',$order_no)->update(['paid'=>1,'pay_time'=>time()]);
-                        Db::commit();
-                        return Common::return_success('提现成功');
-                    }else{
-                        Db::rollback();
-                        return Common::return_error('提现失败');
-                    }
-                    break;
-            }
-        }catch (Exception $e) {
-            Db::rollback();
-            return Common::return_error('提现失败');
-        }
-
-    }
-
-    /**
-     * 提现记录
-     */
-    public static function withdrawRecord($Nowpage,$limits){
-        $user = app()->session->get('us');
-        $count = self::where('user_id',$user['id'])->where('paid',1)->count();
-        if ($count){
-            $list = self::where('user_id',$user['id'])->where('paid',1)->field('user_id,order_no,withdraw_type,price,pay_time')->order('id desc')->page($Nowpage,$limits)->select()->toArray();
-            foreach ($list as $k=>$v){
-                $list[$k]['pay_time'] = date('Y-m-d H:i',$v['pay_time']);
-            }
-        }else{
-            $list = [];
-        }
-        $data['count'] = $count;
-        $data['list'] = $list;
-        return Common::return_success('成功',$data);
-    }
-
-
-
-
-
-}