18315626215 5 år sedan
förälder
incheckning
f56c9554c3
29 ändrade filer med 1364 tillägg och 48 borttagningar
  1. 1 0
      application/admin/command/Api/library/Builder.php
  2. 76 0
      application/admin/controller/agreemen/Courstomer.php
  3. 76 0
      application/admin/controller/agreemen/Coustomer.php
  4. 76 0
      application/admin/controller/agreemen/Querstion.php
  5. 9 0
      application/admin/lang/zh-cn/agreemen/courstomer.php
  6. 8 0
      application/admin/lang/zh-cn/agreemen/coustomer.php
  7. 5 0
      application/admin/lang/zh-cn/agreemen/querstion.php
  8. 42 0
      application/admin/view/agreemen/courstomer/add.html
  9. 42 0
      application/admin/view/agreemen/courstomer/edit.html
  10. 35 0
      application/admin/view/agreemen/courstomer/index.html
  11. 28 0
      application/admin/view/agreemen/coustomer/add.html
  12. 28 0
      application/admin/view/agreemen/coustomer/edit.html
  13. 35 0
      application/admin/view/agreemen/coustomer/index.html
  14. 17 0
      application/admin/view/agreemen/querstion/add.html
  15. 17 0
      application/admin/view/agreemen/querstion/edit.html
  16. 35 0
      application/admin/view/agreemen/querstion/index.html
  17. 51 31
      application/api/controller/Commodity.php
  18. 26 3
      application/api/controller/Login.php
  19. 467 13
      application/api/controller/User.php
  20. 8 0
      application/api/model/Address.php
  21. 5 0
      application/api/model/CommodityModel.php
  22. 12 0
      application/api/model/Foot.php
  23. 83 0
      application/api/model/Realname.php
  24. 8 0
      application/api/model/Record.php
  25. 5 0
      application/api/model/UsersModel.php
  26. 16 1
      application/common/controller/Api.php
  27. 52 0
      public/assets/js/backend/agreemen/courstomer.js
  28. 51 0
      public/assets/js/backend/agreemen/coustomer.js
  29. 50 0
      public/assets/js/backend/agreemen/querstion.js

+ 1 - 0
application/admin/command/Api/library/Builder.php

@@ -220,6 +220,7 @@ class Builder
             $methods = array_merge(array_flip(array_keys($methodSectorArr)), $methods);
         }
         $docslist = array_merge(array_flip(array_keys($sectorArr)), $docslist);
+        $docslist = array_filter($docslist , function($v) {return is_array($v) ; }) ;
 
         return $docslist;
     }

+ 76 - 0
application/admin/controller/agreemen/Courstomer.php

@@ -0,0 +1,76 @@
+<?php
+
+namespace app\admin\controller\agreemen;
+
+use app\common\controller\Backend;
+
+/**
+ * 
+ *
+ * @icon fa fa-circle-o
+ */
+class Courstomer extends Backend
+{
+    
+    /**
+     * Courstomer模型对象
+     * @var \app\admin\model\agreemen\Courstomer
+     */
+    protected $model = null;
+
+    public function _initialize()
+    {
+        parent::_initialize();
+        $this->model = new \app\admin\model\agreemen\Courstomer;
+
+    }
+    
+    /**
+     * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
+     * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
+     * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
+     */
+    
+
+    /**
+     * 查看
+     */
+    public function index()
+    {
+        //当前是否为关联查询
+        $this->relationSearch = false;
+        //设置过滤方法
+        $this->request->filter(['strip_tags', 'trim']);
+        if ($this->request->isAjax())
+        {
+            //如果发送的来源是Selectpage,则转发到Selectpage
+            if ($this->request->request('keyField'))
+            {
+                return $this->selectpage();
+            }
+            list($where, $sort, $order, $offset, $limit) = $this->buildparams();
+            $total = $this->model
+                    
+                    ->where($where)
+                    ->order($sort, $order)
+                    ->count();
+
+            $list = $this->model
+                    
+                    ->where($where)
+                    ->order($sort, $order)
+                    ->limit($offset, $limit)
+                    ->select();
+
+            foreach ($list as $row) {
+                $row->visible(['c_id','c_time_content','c_type','c_number','c_image']);
+                
+            }
+            $list = collection($list)->toArray();
+            $result = array("total" => $total, "rows" => $list);
+
+            return json($result);
+        }
+        return $this->view->fetch();
+    }
+}

+ 76 - 0
application/admin/controller/agreemen/Coustomer.php

@@ -0,0 +1,76 @@
+<?php
+
+namespace app\admin\controller\agreemen;
+
+use app\common\controller\Backend;
+
+/**
+ * 
+ *
+ * @icon fa fa-circle-o
+ */
+class Coustomer extends Backend
+{
+    
+    /**
+     * Coustomer模型对象
+     * @var \app\admin\model\agreemen\Coustomer
+     */
+    protected $model = null;
+
+    public function _initialize()
+    {
+        parent::_initialize();
+        $this->model = new \app\admin\model\agreemen\Coustomer;
+
+    }
+    
+    /**
+     * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
+     * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
+     * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
+     */
+    
+
+    /**
+     * 查看
+     */
+    public function index()
+    {
+        //当前是否为关联查询
+        $this->relationSearch = false;
+        //设置过滤方法
+        $this->request->filter(['strip_tags', 'trim']);
+        if ($this->request->isAjax())
+        {
+            //如果发送的来源是Selectpage,则转发到Selectpage
+            if ($this->request->request('keyField'))
+            {
+                return $this->selectpage();
+            }
+            list($where, $sort, $order, $offset, $limit) = $this->buildparams();
+            $total = $this->model
+                    
+                    ->where($where)
+                    ->order($sort, $order)
+                    ->count();
+
+            $list = $this->model
+                    
+                    ->where($where)
+                    ->order($sort, $order)
+                    ->limit($offset, $limit)
+                    ->select();
+
+            foreach ($list as $row) {
+                $row->visible(['c_id','c_time_content','c_type','c_number']);
+                
+            }
+            $list = collection($list)->toArray();
+            $result = array("total" => $total, "rows" => $list);
+
+            return json($result);
+        }
+        return $this->view->fetch();
+    }
+}

+ 76 - 0
application/admin/controller/agreemen/Querstion.php

@@ -0,0 +1,76 @@
+<?php
+
+namespace app\admin\controller\agreemen;
+
+use app\common\controller\Backend;
+
+/**
+ * 
+ *
+ * @icon fa fa-question
+ */
+class Querstion extends Backend
+{
+    
+    /**
+     * Querstion模型对象
+     * @var \app\admin\model\agreemen\Querstion
+     */
+    protected $model = null;
+
+    public function _initialize()
+    {
+        parent::_initialize();
+        $this->model = new \app\admin\model\agreemen\Querstion;
+
+    }
+    
+    /**
+     * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
+     * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
+     * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
+     */
+    
+
+    /**
+     * 查看
+     */
+    public function index()
+    {
+        //当前是否为关联查询
+        $this->relationSearch = false;
+        //设置过滤方法
+        $this->request->filter(['strip_tags', 'trim']);
+        if ($this->request->isAjax())
+        {
+            //如果发送的来源是Selectpage,则转发到Selectpage
+            if ($this->request->request('keyField'))
+            {
+                return $this->selectpage();
+            }
+            list($where, $sort, $order, $offset, $limit) = $this->buildparams();
+            $total = $this->model
+                    
+                    ->where($where)
+                    ->order($sort, $order)
+                    ->count();
+
+            $list = $this->model
+                    
+                    ->where($where)
+                    ->order($sort, $order)
+                    ->limit($offset, $limit)
+                    ->select();
+
+            foreach ($list as $row) {
+                $row->visible(['q_id','question_content']);
+                
+            }
+            $list = collection($list)->toArray();
+            $result = array("total" => $total, "rows" => $list);
+
+            return json($result);
+        }
+        return $this->view->fetch();
+    }
+}

+ 9 - 0
application/admin/lang/zh-cn/agreemen/courstomer.php

@@ -0,0 +1,9 @@
+<?php
+
+return [
+    'C_id'           => '客服',
+    'C_time_content' => '上班时间',
+    'C_type'         => '联系类型',
+    'C_number'       => '联系方式',
+    'C_image'        => '图标'
+];

+ 8 - 0
application/admin/lang/zh-cn/agreemen/coustomer.php

@@ -0,0 +1,8 @@
+<?php
+
+return [
+    'C_id'           => '客服',
+    'C_time_content' => '上班时间',
+    'C_type'         => '联系类型',
+    'C_number'       => '联系方式'
+];

+ 5 - 0
application/admin/lang/zh-cn/agreemen/querstion.php

@@ -0,0 +1,5 @@
+<?php
+
+return [
+    'Question_content' => '常见问题'
+];

+ 42 - 0
application/admin/view/agreemen/courstomer/add.html

@@ -0,0 +1,42 @@
+<form id="add-form" class="form-horizontal" role="form" data-toggle="validator" method="POST" action="">
+
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('C_time_content')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <textarea id="c-c_time_content" class="form-control editor" rows="5" name="row[c_time_content]" cols="50"></textarea>
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('C_type')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-c_type" data-rule="required" class="form-control" name="row[c_type]" type="text">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('C_number')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-c_number" data-rule="required" class="form-control" name="row[c_number]" type="text">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('C_image')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <div class="input-group">
+                <input id="c-c_image" data-rule="required" class="form-control" size="50" name="row[c_image]" type="text">
+                <div class="input-group-addon no-border no-padding">
+                    <span><button type="button" id="plupload-c_image" class="btn btn-danger plupload" data-input-id="c-c_image" data-mimetype="image/gif,image/jpeg,image/png,image/jpg,image/bmp" data-multiple="false" data-preview-id="p-c_image"><i class="fa fa-upload"></i> {:__('Upload')}</button></span>
+                    <span><button type="button" id="fachoose-c_image" class="btn btn-primary fachoose" data-input-id="c-c_image" data-mimetype="image/*" data-multiple="false"><i class="fa fa-list"></i> {:__('Choose')}</button></span>
+                </div>
+                <span class="msg-box n-right" for="c-c_image"></span>
+            </div>
+            <ul class="row list-inline plupload-preview" id="p-c_image"></ul>
+        </div>
+    </div>
+    <div class="form-group layer-footer">
+        <label class="control-label col-xs-12 col-sm-2"></label>
+        <div class="col-xs-12 col-sm-8">
+            <button type="submit" class="btn btn-success btn-embossed disabled">{:__('OK')}</button>
+            <button type="reset" class="btn btn-default btn-embossed">{:__('Reset')}</button>
+        </div>
+    </div>
+</form>

+ 42 - 0
application/admin/view/agreemen/courstomer/edit.html

@@ -0,0 +1,42 @@
+<form id="edit-form" class="form-horizontal" role="form" data-toggle="validator" method="POST" action="">
+
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('C_time_content')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <textarea id="c-c_time_content" class="form-control editor" rows="5" name="row[c_time_content]" cols="50">{$row.c_time_content|htmlentities}</textarea>
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('C_type')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-c_type" data-rule="required" class="form-control" name="row[c_type]" type="text" value="{$row.c_type|htmlentities}">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('C_number')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-c_number" data-rule="required" class="form-control" name="row[c_number]" type="text" value="{$row.c_number|htmlentities}">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('C_image')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <div class="input-group">
+                <input id="c-c_image" data-rule="required" class="form-control" size="50" name="row[c_image]" type="text" value="{$row.c_image|htmlentities}">
+                <div class="input-group-addon no-border no-padding">
+                    <span><button type="button" id="plupload-c_image" class="btn btn-danger plupload" data-input-id="c-c_image" data-mimetype="image/gif,image/jpeg,image/png,image/jpg,image/bmp" data-multiple="false" data-preview-id="p-c_image"><i class="fa fa-upload"></i> {:__('Upload')}</button></span>
+                    <span><button type="button" id="fachoose-c_image" class="btn btn-primary fachoose" data-input-id="c-c_image" data-mimetype="image/*" data-multiple="false"><i class="fa fa-list"></i> {:__('Choose')}</button></span>
+                </div>
+                <span class="msg-box n-right" for="c-c_image"></span>
+            </div>
+            <ul class="row list-inline plupload-preview" id="p-c_image"></ul>
+        </div>
+    </div>
+    <div class="form-group layer-footer">
+        <label class="control-label col-xs-12 col-sm-2"></label>
+        <div class="col-xs-12 col-sm-8">
+            <button type="submit" class="btn btn-success btn-embossed disabled">{:__('OK')}</button>
+            <button type="reset" class="btn btn-default btn-embossed">{:__('Reset')}</button>
+        </div>
+    </div>
+</form>

+ 35 - 0
application/admin/view/agreemen/courstomer/index.html

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

+ 28 - 0
application/admin/view/agreemen/coustomer/add.html

@@ -0,0 +1,28 @@
+<form id="add-form" class="form-horizontal" role="form" data-toggle="validator" method="POST" action="">
+
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('C_time_content')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <textarea id="c-c_time_content" class="form-control editor" rows="5" name="row[c_time_content]" cols="50"></textarea>
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('C_type')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-c_type" data-rule="required" class="form-control" name="row[c_type]" type="text">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('C_number')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-c_number" data-rule="required" class="form-control" name="row[c_number]" type="text">
+        </div>
+    </div>
+    <div class="form-group layer-footer">
+        <label class="control-label col-xs-12 col-sm-2"></label>
+        <div class="col-xs-12 col-sm-8">
+            <button type="submit" class="btn btn-success btn-embossed disabled">{:__('OK')}</button>
+            <button type="reset" class="btn btn-default btn-embossed">{:__('Reset')}</button>
+        </div>
+    </div>
+</form>

+ 28 - 0
application/admin/view/agreemen/coustomer/edit.html

@@ -0,0 +1,28 @@
+<form id="edit-form" class="form-horizontal" role="form" data-toggle="validator" method="POST" action="">
+
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('C_time_content')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <textarea id="c-c_time_content" class="form-control editor" rows="5" name="row[c_time_content]" cols="50">{$row.c_time_content|htmlentities}</textarea>
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('C_type')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-c_type" data-rule="required" class="form-control" name="row[c_type]" type="text" value="{$row.c_type|htmlentities}">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-2">{:__('C_number')}:</label>
+        <div class="col-xs-12 col-sm-8">
+            <input id="c-c_number" data-rule="required" class="form-control" name="row[c_number]" type="text" value="{$row.c_number|htmlentities}">
+        </div>
+    </div>
+    <div class="form-group layer-footer">
+        <label class="control-label col-xs-12 col-sm-2"></label>
+        <div class="col-xs-12 col-sm-8">
+            <button type="submit" class="btn btn-success btn-embossed disabled">{:__('OK')}</button>
+            <button type="reset" class="btn btn-default btn-embossed">{:__('Reset')}</button>
+        </div>
+    </div>
+</form>

+ 35 - 0
application/admin/view/agreemen/coustomer/index.html

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

+ 17 - 0
application/admin/view/agreemen/querstion/add.html

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

+ 17 - 0
application/admin/view/agreemen/querstion/edit.html

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

+ 35 - 0
application/admin/view/agreemen/querstion/index.html

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

+ 51 - 31
application/api/controller/Commodity.php

@@ -1,6 +1,9 @@
 <?php
+
 namespace app\api\controller;
+
 use app\api\model\CommodityModel;
+use app\api\model\Foot;
 use app\common\controller\Api;
 use think\Db;
 
@@ -11,37 +14,43 @@ class Commodity extends Api
 {
     protected $noNeedRight = '*';
     protected $noNeedLogin = '*';
+
     /**
      * 全部商品
      */
-    public function commodityIndex () {
-         $where = array(
-             'c_state_switch' => 1,
-         );
-         $data = CommodityModel::where($where)->order('c_sort desc')->select()->toArray();
-         $data = $this->commodityimage($data,'c_images');
-         if ($data) {
-             return $this->result('',$data,200);
-         } else {
-             return $this->result('暂无商品',[], 100);
-         }
+    public function commodityIndex()
+    {
+        $where = array(
+            'c_state_switch' => 1,
+        );
+        $data = CommodityModel::where($where)->order('c_sort desc')->select()->toArray();
+        $data = $this->commodityimage($data, 'c_images');
+        if ($data) {
+            return $this->result('', $data, 200);
+        } else {
+            return $this->result('暂无商品', [], 100);
+        }
     }
+
     /**
      * 商品类型
      */
-    public function typeIndex() {
+    public function typeIndex()
+    {
         $data = Db::name('ctype')->select();
         if ($data) {
-            return $this->result('',$data,200);
+            return $this->result('', $data, 200);
         } else {
-            return $this->result('暂无分类',[], 100);
+            return $this->result('暂无分类', [], 100);
         }
     }
+
     /**
      * 分类下的商品
      * @param string $t_id 分类id
      */
-    public function typeCommodity () {
+    public function typeCommodity()
+    {
         $params = $this->request->post();
         $reles = [
             't_id' => 'require|number'
@@ -50,46 +59,57 @@ class Commodity extends Api
             't_id.require' => '网络错误',
             't_id.number'  => '网络错误'
         ];
-        $validata = $this->validate($params,$reles,$msg);
+        $validata = $this->validate($params, $reles, $msg);
         if (is_string($validata)) {
-            return $this->result($validata,[],100);
+            return $this->result($validata, [], 100);
         }
-        $data = CommodityModel::where('c_type',$params['t_id'])->order('c_sort desc')->select()->toArray();
+        $data = CommodityModel::where('c_type', $params['t_id'])->order('c_sort desc')->select()->toArray();
         if ($data) {
-            return $this->result('',$data,200);
+            return $this->result('', $data, 200);
         } else {
-            return $this->result('暂无商品',[], 100);
+            return $this->result('暂无商品', [], 100);
         }
     }
+
     /**
      * 商品详情
      * @param string $c_id 商品id
+     * @param string $user_id 用户id
      */
-    public function commodityInfo () {
+    public function commodityInfo()
+    {
         $params = $this->request->post();
         $rules = [
-            'c_id' => 'require|number'
+            'c_id'    => 'require|number',
+            'user_id' => 'require'
         ];
         $msg = [
-            'c_id.require' => "网络错误",
-            'c_id.number'  => '网络错误',
+            'c_id.require'    => "网络错误",
+            'user_id.require' => "网络错误",
+            'c_id.number'     => '网络错误',
         ];
-        $validata = $this->validate($params,$rules,$msg);
+        $validata = $this->validate($params, $rules, $msg);
         if (is_string($validata)) {
-            return $this->result($validata,[],100);
+            return $this->result($validata, [], 100);
         }
         $data = CommodityModel::with(['parameter' => function ($query) { //预加载闭包查询
             $query->with('commoditycolor');
-        }  ])
-            ->where('c_state_switch',1)
+        }])
+            ->where('c_state_switch', 1)
             ->select();
         if ($data) {
-            $data = $this->commodityimage($data,'c_images');
+            $data = $this->commodityimage($data, 'c_images');
             if ($data) {
-                return $this->result('',$data, '200');
+                $footdata = array(
+                    'user_id' => $params['user_id'],
+                    'c_id'    => $params['c_id'],
+                );//足迹
+                $foot = new Foot();
+                $addFoot = $foot->allowField(true)->save($footdata);//添加足迹
+                return $this->result('', $data, '200');
             }
         } else {
-            return $this->result('网络错误',[], '100');
+            return $this->result('网络错误', [], '100');
         }
     }
 }

+ 26 - 3
application/api/controller/Login.php

@@ -4,6 +4,7 @@ namespace app\api\controller;
 
 use app\api\model\UsersModel;
 use app\common\controller\Api;
+use fast\Random;
 use think\Db;
 
 /**
@@ -26,7 +27,8 @@ class Login extends Api
         $data = $this->request->post();
         $rules = [
             'user_tel' => 'require|max:11|number|min:11',
-            'user_pwd' => 'require|max:25|min:6'
+            'user_pwd' => 'require|max:25|min:6',
+            'token'    => 'require'
         ];
         $msg = [
             'user_tel.require' => '手机号不能为空',
@@ -34,9 +36,13 @@ class Login extends Api
             'user_tel.min'     => '手机号长度不正确',
             'user_tel.number'  => '手机号必须为数字',
             'user_pwd.require' => '密码不能为空',
+            'token.require'    => 'token不能为空',
             'user_pwd.max'     => '密码长度过长',
             'user_pwd.min'     => '密码长度不足',
         ];
+        if (isset($data['token'])) { //先删除token
+            $delete = \app\common\library\Token::delete($data['token']);
+        }
         if (isset($data['user_tel']) && isset($data['user_pwd'])) {
             $validata = $this->validate($data, $rules, $msg); //验证数据规则
             if (is_string($validata)) {
@@ -46,6 +52,7 @@ class Login extends Api
             if ($valdatatel) {
                 $data['user_pwd'] = sha1(md5($data['user_pwd']));                                                              //加密验证密码
                 $validatapwd = UsersModel::where('user_pwd', $data['user_pwd'])->where('user_tel', $data['user_tel'])->find(); //判断密码是否正确
+                $validatapwd['token'] = self::settoken($validatapwd['user_id']);
                 if ($validatapwd) {
                     return $this->result('登录成功,欢迎回来', $validatapwd, 200);
                 } else {
@@ -66,7 +73,12 @@ class Login extends Api
 
     }
 
-    //验证手机号是否已存在
+    /**
+     * 验证手机号是否已存在
+     *
+     * 可以通过@ApiInternal忽略请求的方法
+     * @ApiInternal
+     */
     public function validatatel($tel)
     {
         $tel = UsersModel::where('user_tel', $tel)->find();
@@ -88,5 +100,16 @@ class Login extends Api
             return $this->result('网络错误', [], 100);
         }
     }
-    //短信发送
+    /**
+     * 生成token
+     *
+     * 可以通过@ApiInternal忽略请求的方法
+     * @ApiInternal
+     */
+    public function settoken($user_id)
+    {
+        $token = Random::uuid();
+        \app\common\library\Token::set($token, $user_id, 0);
+        return $tokenInfo = \app\common\library\Token::get($token);
+    }
 }

+ 467 - 13
application/api/controller/User.php

@@ -2,11 +2,16 @@
 
 namespace app\api\controller;
 
+use app\api\model\Address;
+use app\api\model\Foot;
+use app\api\model\Realname;
+use app\api\model\Record;
 use app\api\model\UsersModel;
 use app\common\controller\Api;
 use app\common\library\Ems;
 use app\common\library\Sms;
 use fast\Random;
+use think\Cache;
 use think\Db;
 use think\Validate;
 
@@ -24,45 +29,494 @@ class User extends Api
     }
 
 
-
     /**
      * 用户显示
      *
-     * @param string $user_id  用户id
+     * @param string $user_id 用户id
      */
     public function userInfo()
     {
         $user_id = $this->request->post('user_id');
         if (!isset($user_id)) {
-            return $this->result('网络错误',[],100);
+            return $this->result('网络错误', [], 100);
         }
-        $data = UsersModel::where('user_id',$user_id)->find();
+        $data = UsersModel::where('user_id', $user_id)->find();
         $data['daifahuo'] = 1;
         $data['daishouhuo'] = 1;
         if ($data) {
-            return $this->result('',$data,200);
+            return $this->result('', $data, 200);
         } else {
-            return $this->result('未获取用户信息',[],100);
+            return $this->result('未获取用户信息', [], 100);
         }
     }
+
     /**
      * 修改昵称
      *
-     * @param string $user_id  用户id
-     * @param string $user_nickname  用户昵称
+     * @param string $user_id 用户id
+     * @param string $user_nickname 用户昵称
      */
-    public function updNickName () {
+    public function updNickName()
+    {
         $params = $this->request->post();
         if (!isset($params['user_id']) || !isset($params['user_nickname'])) {
-            return $this->result('网络错误',[],100);
+            return $this->result('网络错误', [], 100);
         }
-        $selNickName = UsersModel::where($params)->find();
+        $data['user_nickname'] = $params['user_nickname'];
+        $data['user_id'] = $params['user_id'];
+        $selNickName = UsersModel::where($data)->find();
         if ($selNickName) {
-            return $this->result('请输入新昵称',[],100);
+            return $this->result('请输入新昵称', [], 100);
         }
-        $updNickName = UsersModel::where('user_id',$params['user_id'])->allowField(true)->save($params);
+        $userModel = new UsersModel();
+        $updNickName = $userModel->allowField(true)->save($data, ['user_id' => $params['user_id']]);
         if ($updNickName) {
+            return $this->result('修改成功', [], 200);
+        } else {
+            return $this->result('修改失败', [], 100);
+        }
+    }
+
+    /**
+     * 修改密码
+     *
+     * @param string $user_id 用户id
+     * @param string $user_pwd 用户密码
+     * @param string $user_qrpwd 重复 密码
+     */
+    public function updPwd()
+    {
+        $params = $this->request->post();
+        $rules = [
+            'user_id'    => 'require|number',
+            'user_pwd'   => 'require|max:18|min:6',
+            'user_qrpwd' => 'require',
+        ];
+        $msg = [
+            'user_id.require'    => '用户id不能为空',
+            'user_id.number'     => '用户i为整形',
+            'user_pwd.require'   => '密码不能为空',
+            'user_pwd.max'       => '密码最大18位',
+            'user_pwd.min'       => '密码最小6位',
+            'user_qrpwd.require' => '重复密码不能为空',
+        ];
+        $validata = $this->validate($params, $rules, $msg);
+        if (is_string($validata)) {
+            return $this->result($validata, [], 100);
+        }
+        if ($params['user_pwd'] != $params['user_qrpwd']) {
+            return $this->result('两次密码输入不一致', [], 100);
+        }
+        $data = array(
+            'user_id'  => $params['user_id'],
+            'user_pwd' => sha1(md5($params['user_pwd'])),
+        );
+        $model = new UsersModel();
+        $updPwd = $model->allowField(true)->save($data, ['user_id' => $data['user_id']]);
+        if ($updPwd) {
+            return $this->result('修改成功', [], 200);
+        } else {
+            return $this->result('修改失败', [], 100);
+        }
+    }
+
+    /**
+     * 修改支付密码
+     *
+     * @param string $user_id 用户id
+     * @param string $user_tel 手机号
+     * @param string $code 验证码
+     * @param string $user_paypwd 支付密码
+     * @param string $user_qrpaypwd 确认支付密码
+     */
+    public function updPayPwd()
+    {
+        $params = $this->request->post();
+        $rules = [
+            'user_tel'      => "require|number",
+            'user_id'       => "require|number",
+            'code'          => "require",
+            'user_paypwd'   => "require|number",
+            'user_qrpaypwd' => "require",
+        ];
+        $msg = [
+            'user_tel.require'      => '手机号不能为空',
+            'user_id.require'       => '网络错误',
+            'user_code.require'     => '验证码不能为空',
+            'user_paypwd.require'   => '支付密码不能为空',
+            'user_qrpaypwd.require' => '支付密码不能为空',
+            'user_paypwd.number'    => '支付密码只支持数字',
+            'user_code.number'      => '验证码只支持数字',
+            'user_id.number'        => '网络错误',
+            'user_tel.number'       => '手机号不合法',
+        ];
+        $validata = $this->validate($params, $rules, $msg);
+        if (is_string($validata)) {
+            return $this->result($validata, [], 100);
+        }
+        if ($params['user_paypwd'] != $params['user_qrpaypwd']) {
+            return $this->result('两次密码输入不一致', [], 100);
+        }
+        $code = Cache::get($params['code']);
+        if (!$code) {
+            return $this->result('验证码错误', [], 100); // 验证验证码
+        }
+        $data = array(
+            'user_id'     => $params['user_id'],
+            'user_paypwd' => $params['user_paypwd'],
+        );
+        $user = new UsersModel();
+        $validataTel = $user->where('user_id', $data['user_id'])->where('user_tel', $params['user_tel'])->find();
+        if (!$validataTel) {
+            return $this->result('请使用此账号手机号修改密码', [], 100);
+        }
+        $validataPayPwd = $user->where($data)->find();
+        if ($validataPayPwd) {
+            return $this->result('请输入新密码', [], 100);
+        }
+        $updPayPwd = $user->allowField(true)->save($data, ['user_id' => $data['user_id']]);
+        if ($updPayPwd) {
+            Cache::rm($params['code']); // 删除缓存验证码
+            return $this->result('修改成功', [], 200);
+        } else {
+            return $this->result('修改失败', [], 100);
+        }
+    }
+
+    /**
+     * 实名认证
+     *
+     * @param string $user_id 用户id
+     * @param string $user_nickname 姓名
+     * @param string $idcard 身份证号
+     */
+    public function realName()
+    {
+        $params = $this->request->post();
+        $rules = [
+            'user_id'       => 'require|number',
+            'user_nickname' => 'require',
+            'idcard'        => 'require'
+        ];
+        $msg = [
+            'user_id.require'       => '网络错误',
+            'user_nickname.require' => '姓名不能为空',
+            'idcard.require'        => '身份证号不能为空',
+            'user_id.number'        => '网络错误',
+        ];
+        $validata = $this->validate($params, $rules, $msg);
+        if (is_string($validata)) {
+            return $this->result($validata, [], 100);
+        }
+        $is_name = UsersModel::where('user_id', $params['user_id'])->where('is_realname', 1)->find();
+        if ($is_name) {
+            return $this->result('您已经实名认证过了', [], 100);
+        }
+        $realName = new Realname();
+        $res = $realName->realName($params);
+        return $res;
+    }
+
+    /**
+     * 常见问题
+     */
+    public function question()
+    {
+        $data = Db::name('question')->find();
+        if ($data) {
+            return $this->result('', $data, 200);
+        } else {
+            return $this->result('', $data, 100);
+        }
+    }
+
+    /**
+     * 我的团队
+     *
+     * @param string $user_id 用户id
+     */
+    public function team()
+    {
+        $user_id = $this->request->post('user_id');
+        if (!$user_id) {
+            return $this->result('网络错误', [], 100);
+        }
+        $user = UsersModel::where('user_id', $user_id)->find();
+        if (!$user) {
+            return $this->result('网络错误', [], 100);
+        }
+        $data['syj'] = UsersModel::where('user_tel', $user['user_tjtel'])->find();
+        if (!$data['syj']) {
+            $data['syj'] = [];
+        }
+        $data['team'] = UsersModel::where('user_tjtel', $user['user_tel'])->select();
+        if (!$data['team']) {
+            $data['team'] = [];
+        }
+        return $this->result('', $data, 200);
+    }
+
+    /**
+     * 我的地址
+     *
+     * @param string $user_id 用户id
+     */
+    public function address()
+    {
+        $user_id = $this->request->post('user_id');
+        if (!isset($user_id)) {
+            return $this->result('网络错误', [], 100);
+        }
+        $data = Address::where('user_id', $user_id)->select();
+        if ($data) {
+            return $this->result('', $data, 200);
+        } else {
+            return $this->result('暂无数据', [], 100);
+        }
+    }
+
+    /**
+     * 地址添加
+     *
+     * @param string $user_id 用户id
+     * @param string $a_name 姓名
+     * @param string $a_tel 手机号
+     * @param string $city 城市
+     * @param string $area 详细地址
+     * @param string $is_default 1默认0不默认
+     */
+    public function addressAdd()
+    {
+        $params = $this->request->post();
+        $rules = [
+            'user_id'    => 'require|number',
+            'a_name'     => 'require',
+            'city'       => 'require',
+            'area'       => 'require',
+            'is_default' => 'require|number|max:1',
+        ];
+        $msg = [
+            'user_id.require'    => '网络错误',
+            'a_name.require'     => '姓名不能为空',
+            'city.require'       => '地区不能为空',
+            'area.require'       => '详细地址不能为空',
+            'is_default.require' => '网络错误',
+            'is_default.number'  => '网络错误',
+            'is_default.max'     => '网络错误',
+            'user_id.number'     => '网络错误',
+        ];
+        $validata = $this->validate($params, $rules, $msg);
+        if (is_string($validata)) {
+            return $this->result($validata, [], 100);
+        }
+        if (isset($params['a_tel'])) {
+            $check = '/^(1(([35789][0-9])|(47)))\d{8}$/';
+            if (!preg_match($check, $params['a_tel'])) {
+                return $this->result('手机号不合法', [], 100);
+            }
+        } else {
+            return $this->result('手机号不能为空', [], 100);
+        }
+        $model = new Address();
+        $addressAdd = $model->allowField(true)->save($params);
+        if ($addressAdd) {
+            return $this->result('添加成功', '', 200);
+        } else {
+            return $this->result('添加失败', '', 100);
+        }
+    }
+
+    /**
+     * 地址修改
+     * @param string $a_id 地址id
+     * @param string $a_name 姓名
+     * @param string $a_tel 手机号
+     * @param string $city 城市
+     * @param string $area 详细地址
+     * @param string $is_default 1默认0不默认
+     */
+    public function addressUpd()
+    {
+        $params = $this->request->post();
+        $count = count($params);
+        if ($count < 2) {
+            return $this->result('请至少修改一项', [], 100);
+        }
+        if (!isset($params['a_id'])) {
+            return $this->result('网络错误', [], 100);
+        }
+        $model = new Address();
+        $addressUpd = $model->allowField(true)->save($params, ['a_id' => $params['a_id']]);
+        if ($addressUpd) {
+            return $this->result('修改成功', '', 200);
+        } else {
+            return $this->result('修改失败', '', 100);
+        }
+    }
+
+    /**
+     * 地址删除
+     * @param string $a_id 地址id
+     */
+    public function addressDel()
+    {
+        $a_id = $this->request->post('a_id');
+        if (!isset($a_id)) {
+            return $this->result('网络错误', [], 100);
+        }
+        $model = new Address();
+        $addressDel = $model->where('a_id', $a_id)->delete();
+        if ($addressDel) {
+            return $this->result('修改成功', '', 200);
+        } else {
+            return $this->result('修改失败', '', 100);
+        }
+
+    }
+
+    /**
+     * 我的客服
+     *
+     */
+    public function coursetomer()
+    {
+        $data = Db::name('coustomer')->select();
+        if ($data) {
+            return $this->result('', $data, 200);
+        } else {
+            return $this->result('暂无数据', [], 100);
+        }
+    }
 
+    /**
+     * 我的红豆
+     * @param string $user_id 用户id
+     */
+    public function redbean()
+    {
+        $user_id = $this->request->post('user_id');
+        if (!isset($user_id)) {
+            return $this->result('网络错误', [], 100);
+        }
+        $redbean = UsersModel::where('user_id', $user_id)->field('user_id, user_redbean')->find();
+        if ($redbean) {
+            return $this->result('', $redbean, 200);
+        } else {
+            return $this->result('网络错误', [], 100);
+        }
+    }
+
+    /**
+     * 我的红豆
+     * @param string $user_id 用户id
+     * @param string $user_redbean 兑换个数
+     */
+    public function useRedBean()
+    {
+        $params = $this->request->post();
+        if (!isset($params['user_id'])) {
+            return $this->result('网络错误', [], 100);
+        }
+        if (!isset($params['user_redbean'])) {
+            return $this->result('网络错误', [], 100);
+        }
+        $redbean = UsersModel::where('user_id', $params['user_id'])->field('user_id, user_redbean')->find();
+        if ($params['user_redbean'] > $redbean['user_redbean'] || $params['user_redbean'] < 1) {
+            return $this->result('提现个数错误', [], 100);
+        }
+        Db::startTrans();
+        try {
+            $upd = UsersModel::where('user_id', $params['user_id'])->setDec('user_redbean', $params['user(redbean']);
+            Db::commit();
+        } catch (\Exception $e) {
+            Db::rollback();
+            $data = array(
+                'user_id'     => $params['user_id'],
+                't_type'      => 1,
+                'state'       => 2,
+                'number'      => '-' . $params['user_id'],
+                'create_time' => date("Y-m-d H:i:s", time()),
+            );
+            $record = new Record();
+            $recordadd = $record->allowField(true)->save($data);
+            if ($recordadd) {
+                return $this->result('兑换失败', '', 100);
+            } else {
+                return $this->result('网络错误', '', 100);
+            }
+
+        }
+        if ($upd) {
+            $data = array(
+                'user_id'     => $params['user_id'],
+                't_type'      => 1,
+                'state'       => 1,
+                'number'      => '-' . $params['user_id'],
+                'create_time' => date("Y-m-d H:i:s", time()),
+            );
+            $record = new Record();
+            $recordadd = $record->allowField(true)->save($data);
+            if ($recordadd) {
+                return $this->result('兑换成功', '', 200);
+            } else {
+                return $this->result('网络错误', '', 100);
+            }
+        } else {
+            return $this->result('网络错误', '', 100);
+        }
+    }
+
+    /**
+     * 我的红豆兑换记录
+     * @param string $user_id 用户id
+     */
+    public function redbeanRecord()
+    {
+        $params = $this->request->post();
+        if (!isset($params['user_id'])) {
+            return $this->result('网络错误', [], 100);
+        }
+        $data = Record::where('user_id', $params['user_id'])->order('r_id desc')->select();
+        if ($data) {
+            return $this->result('', $data, 200);
+        } else {
+            return $this->result('暂无数据', [], 100);
+        }
+    }
+
+    /**
+     * 我的足迹显示
+     * @param string $user_id 用户id
+     */
+    public function footIndex()
+    {
+        $params = $this->request->post();
+        if (!isset($params['user_id'])) {
+            return $this->result('网络错误', [], 100);
+        }
+        $data = Foot::with('commodity')
+            ->where('user_id', $params['user_id'])
+            ->select();
+        if ($data) {
+            return $this->result('', $data, 200);
+        } else {
+            return $this->result('暂无数据', '', 100);
+        }
+    }
+    /**
+     * 我的足迹删除
+     * @param string $f_id 足迹id
+     */
+    public function footDel () {
+        $params = $this->request->post();
+        if (!isset($params['f_id'])) {
+            return $this->result('网络错误', [], 100);
+        }
+        $footDel = Foot::where('f_id',$params['f_id'])->delete();
+        if ($footDel) {
+            return $this->result('删除成功',[],200);
+        } else {
+            return $this->result('删除失败',[],100);
         }
     }
 }

+ 8 - 0
application/api/model/Address.php

@@ -0,0 +1,8 @@
+<?php
+namespace app\api\model;
+use think\Model;
+
+class Address extends Model
+{
+    protected $name = "address";
+}

+ 5 - 0
application/api/model/CommodityModel.php

@@ -12,4 +12,9 @@ class CommodityModel extends Model
     public function buycar () {
         return $this->belongsTo('BuycarModel','c_id','c_id');
     }
+
+    public function getCImagesAttr($c_images)
+    {
+        return $c_images = explode(',',$c_images);
+    }
 }

+ 12 - 0
application/api/model/Foot.php

@@ -0,0 +1,12 @@
+<?php
+namespace app\api\model;
+use think\Model;
+
+class Foot extends Model
+{
+    protected $name = 'foot';
+    public function commodity ()
+    {
+       return $this->belongsTo('CommodityModel','c_id','c_id');
+    }
+}

+ 83 - 0
application/api/model/Realname.php

@@ -0,0 +1,83 @@
+<?php
+namespace app\api\model;
+use think\Db;
+use think\Model;
+
+class Realname extends Model
+{
+    //实名认证
+    public function realName ($data)
+    {
+        $url = "http://op.juhe.cn/idcard/query";
+        $params = array(
+            "idcard" => $data['idcard'],//身份证号码
+            "realname" => $data['user_nickname'],//真实姓名
+            "key" => "43296fe84447eb0090163d52e7163871",//应用APPKEY(应用详细页查询)
+        );
+        $paramstring = http_build_query($params);
+        $content = self::juhecurl($url,$paramstring);
+        $result = json_decode($content,true);
+        if($result){
+            if($result['error_code']=='0'){
+                if($result['result']['res'] == '1'){
+                    $updrealname = Db::name('users')->where('user_id',$data['user_id'])->update(
+                      ['is_realname' => 1]
+                    );
+                    if ($updrealname) {
+                        return json(['code' => 200, 'msg' => '实名认证成功']);
+                    } else {
+                        return json(['code' => 100, 'msg' => '实名认证失败']);
+                    }
+                }else{
+                    return json(['code' => 100,'msg' => '身份证号码和真实姓名不一致','data' => []]);
+                }
+                #print_r($result);
+            }else{
+                return json(['code' => 100,'msg' => $result['error_code'].":".$result['reason'],'data' => []]);
+            }
+        }else{
+            return json(['code' => 100,'msg' => '请求失败','data' => []]);
+        }
+    }
+    /**
+    * 请求接口返回内容
+    * @param  string $url [请求的URL地址]
+    * @param  string $params [请求的参数]
+    * @param  int $ipost [是否采用POST形式]
+    * @return  string
+    */
+    public function juhecurl($url,$params=false,$ispost=0){
+        $httpInfo = array();
+        $ch = curl_init();
+
+        curl_setopt( $ch, CURLOPT_HTTP_VERSION , CURL_HTTP_VERSION_1_1 );
+        curl_setopt( $ch, CURLOPT_USERAGENT , 'JuheData' );
+        curl_setopt( $ch, CURLOPT_CONNECTTIMEOUT , 60 );
+        curl_setopt( $ch, CURLOPT_TIMEOUT , 60);
+        curl_setopt( $ch, CURLOPT_RETURNTRANSFER , true );
+        curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
+        if( $ispost )
+        {
+            curl_setopt( $ch , CURLOPT_POST , true );
+            curl_setopt( $ch , CURLOPT_POSTFIELDS , $params );
+            curl_setopt( $ch , CURLOPT_URL , $url );
+        }
+        else
+        {
+            if($params){
+                curl_setopt( $ch , CURLOPT_URL , $url.'?'.$params );
+            }else{
+                curl_setopt( $ch , CURLOPT_URL , $url);
+            }
+        }
+        $response = curl_exec( $ch );
+        if ($response === FALSE) {
+            //echo "cURL Error: " . curl_error($ch);
+            return false;
+        }
+        $httpCode = curl_getinfo( $ch , CURLINFO_HTTP_CODE );
+        $httpInfo = array_merge( $httpInfo , curl_getinfo( $ch ) );
+        curl_close( $ch );
+        return $response;
+    }
+}

+ 8 - 0
application/api/model/Record.php

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

+ 5 - 0
application/api/model/UsersModel.php

@@ -5,4 +5,9 @@ use think\Model;
 class UsersModel extends Model
 {
     protected $name = "Users";
+    protected $rules = [
+        'user_id' => 'require|number',
+        'user_nickname' => 'require',
+        'idcard' => 'require',
+    ];
 }

+ 16 - 1
application/common/controller/Api.php

@@ -91,6 +91,16 @@ class Api
      */
     protected function _initialize()
     {
+        $token = $this->request->post('token');
+        if (isset($token)) {
+            $isset = \app\common\library\Token::get($token);
+            if(!$isset) {
+                return $this->result('token已过期,请重新登录',[],50);
+            }
+        }
+        if (!isset($token)) {
+            return $this->result('未回去token值',[],50);
+        }
         if (Config::get('url_domain_deploy')) {
             $domain = Route::rules('domain');
             if (isset($domain['api'])) {
@@ -319,7 +329,12 @@ class Api
 
         return true;
     }
-    //商品图片处理
+    /**
+     * 商品图片处理
+     *
+     * 可以通过@ApiInternal忽略请求的方法
+     * @ApiInternal
+     */
     public function commodityimage ($commodity,$field) {
         foreach ($commodity as &$v) {
             $v[$field] = explode(',',$v[$field]);

+ 52 - 0
public/assets/js/backend/agreemen/courstomer.js

@@ -0,0 +1,52 @@
+define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
+
+    var Controller = {
+        index: function () {
+            // 初始化表格参数配置
+            Table.api.init({
+                extend: {
+                    index_url: 'agreemen/courstomer/index' + location.search,
+                    add_url: 'agreemen/courstomer/add',
+                    edit_url: 'agreemen/courstomer/edit',
+                    del_url: 'agreemen/courstomer/del',
+                    multi_url: 'agreemen/courstomer/multi',
+                    table: 'coustomer',
+                }
+            });
+
+            var table = $("#table");
+
+            // 初始化表格
+            table.bootstrapTable({
+                url: $.fn.bootstrapTable.defaults.extend.index_url,
+                pk: 'c_id',
+                sortName: 'c_id',
+                columns: [
+                    [
+                        {checkbox: true},
+                        {field: 'c_id', title: __('C_id')},
+                        {field: 'c_type', title: __('C_type')},
+                        {field: 'c_number', title: __('C_number')},
+                        {field: 'c_image', title: __('C_image'), events: Table.api.events.image, formatter: Table.api.formatter.image},
+                        {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
+                    ]
+                ]
+            });
+
+            // 为表格绑定事件
+            Table.api.bindevent(table);
+        },
+        add: function () {
+            Controller.api.bindevent();
+        },
+        edit: function () {
+            Controller.api.bindevent();
+        },
+        api: {
+            bindevent: function () {
+                Form.api.bindevent($("form[role=form]"));
+            }
+        }
+    };
+    return Controller;
+});

+ 51 - 0
public/assets/js/backend/agreemen/coustomer.js

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

+ 50 - 0
public/assets/js/backend/agreemen/querstion.js

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