chenhao 4 anos atrás
pai
commit
43b12b80cc
32 arquivos alterados com 1788 adições e 41 exclusões
  1. 161 0
      application/admin/controller/Userapp.php
  2. 162 0
      application/admin/controller/Userfeedback.php
  3. 162 0
      application/admin/controller/Userimage.php
  4. 159 0
      application/admin/controller/Userorder.php
  5. 223 0
      application/admin/controller/Uuser.php
  6. 44 0
      application/admin/view/userapp/form.html
  7. 80 0
      application/admin/view/userapp/index.html
  8. 57 0
      application/admin/view/userapp/index_search.html
  9. 33 0
      application/admin/view/userapp/pass.html
  10. 44 0
      application/admin/view/userfeedback/form.html
  11. 71 0
      application/admin/view/userfeedback/index.html
  12. 57 0
      application/admin/view/userfeedback/index_search.html
  13. 33 0
      application/admin/view/userfeedback/pass.html
  14. 39 0
      application/admin/view/userimage/form.html
  15. 72 0
      application/admin/view/userimage/index.html
  16. 57 0
      application/admin/view/userimage/index_search.html
  17. 33 0
      application/admin/view/userimage/pass.html
  18. 50 0
      application/admin/view/userorder/form.html
  19. 69 0
      application/admin/view/userorder/index.html
  20. 57 0
      application/admin/view/userorder/index_search.html
  21. 33 0
      application/admin/view/userorder/pass.html
  22. 22 3
      application/admin/view/uuser/index.html
  23. 70 38
      application/index/controller/Index.php
  24. BIN
      public/upload/0477bb731931fd74/845a44dd2d286458.mp4
  25. BIN
      public/upload/3e3de4c45397b733/1fe1cfba9b58cebb.png
  26. BIN
      public/upload/4ebb5bc7c85b3138/b438370104c387db.mp4
  27. BIN
      public/upload/9b9202097abf0b46/c8051c22d6f88e7f.png
  28. BIN
      public/upload/9f9da62a9352ac34/831a8e05179d8e76.jpg
  29. BIN
      public/upload/b822091311ef86ff/225897db7c29d1f8.mp4
  30. BIN
      public/uploads/images/20210312/25220_150116_2193.png
  31. BIN
      public/uploads/images/20210312/25220_150116_8036.png
  32. BIN
      public/uploads/images/20210312/25220_150116_9797.png

+ 161 - 0
application/admin/controller/Userapp.php

@@ -0,0 +1,161 @@
+<?php
+
+namespace app\admin\controller;
+
+use library\Controller;
+use library\tools\Data;
+use think\Db;
+
+/**
+ * 施工照片
+ * Class Userimage
+ * @package app\admin\controller
+ */
+class Userapp extends Controller
+{
+
+    /**
+     * 指定当前数据表
+     * @var string
+     */
+    public $table = 'user_appointment';
+
+    /**
+     * 系统用户管理
+     * @auth true
+     * @menu true
+     * @throws \think\Exception
+     * @throws \think\db\exception\DataNotFoundException
+     * @throws \think\db\exception\ModelNotFoundException
+     * @throws \think\exception\DbException
+     * @throws \think\exception\PDOException
+     */
+    public function index()
+    {
+        $id = $this->request->get('id');
+        $this->uid=$id;
+        $where['uid'] = $id;
+        $this->title = '线上预约';
+        $query = $this->_query($this->table)->where($where)->like('name,phone,status');
+        $query->dateBetween('login_at,create_at')->where($where)->order('id desc')->page();
+
+
+    }
+    /**
+     * 数据列表处理
+     */
+    protected function _index_page_filter(&$data)
+    {
+//        foreach ($data as &$v) {
+//            $v['images'] = explode('|',$v['image']);
+//        }
+
+    }
+    /**
+     * 添加系统用户
+     * @auth true
+     * @throws \think\Exception
+     * @throws \think\db\exception\DataNotFoundException
+     * @throws \think\db\exception\ModelNotFoundException
+     * @throws \think\exception\DbException
+     * @throws \think\exception\PDOException
+     */
+    public function add()
+    {
+        $this->applyCsrfToken();
+        $this->_form($this->table, 'form');
+    }
+
+    /**
+     * 编辑系统用户
+     * @auth true
+     * @throws \think\Exception
+     * @throws \think\db\exception\DataNotFoundException
+     * @throws \think\db\exception\ModelNotFoundException
+     * @throws \think\exception\DbException
+     * @throws \think\exception\PDOException
+     */
+    public function edit()
+    {
+
+
+        $this->applyCsrfToken();
+
+        $this->_form($this->table, 'form');
+
+
+    }
+    /**
+     * 表单数据处理
+     * @param array $data
+     * @throws \think\db\exception\DataNotFoundException
+     * @throws \think\db\exception\ModelNotFoundException
+     * @throws \think\exception\DbException
+     */
+    public function _form_filter(&$data)
+    {
+        $uid = $this->request->get('uid');
+        if (isset($uid))  $data['uid'] = $uid;
+
+        if ($this->request->isPost()) {
+
+            if (empty($data['create_time'])) $data['create_time'] = date('Y-m-d H:i:s',time());
+//            // 用户权限处理
+//            $data['authorize'] = (isset($data['authorize']) && is_array($data['authorize'])) ? join(',', $data['authorize']) : '';
+//            // 用户账号重复检查
+//            if (isset($data['id'])) unset($data['username']);
+//            elseif (Db::name($this->table)->where(['username' => $data['username'], 'is_deleted' => '0'])->count() > 0) {
+//                $this->error("账号{$data['username']}已经存在,请使用其它账号!");
+//            }
+        } else {
+            $data['authorize'] = explode(',', isset($data['authorize']) ? $data['authorize'] : '');
+            $this->authorizes = Db::name('SystemAuth')->where(['status' => '1'])->order('sort desc,id desc')->select();
+        }
+    }
+
+    /**
+     * 禁用系统用户
+     * @auth true
+     * @throws \think\Exception
+     * @throws \think\exception\PDOException
+     */
+    public function forbid()
+    {
+
+        if (in_array('10000', explode(',', $this->request->post('id')))) {
+            $this->error('系统超级账号禁止操作!');
+        }
+        $this->applyCsrfToken();
+        $this->_save($this->table, ['status' => '2']);
+    }
+
+    /**
+     * 启用系统用户
+     * @auth true
+     * @throws \think\Exception
+     * @throws \think\exception\PDOException
+     */
+    public function resume()
+    {
+        $data = $this->request->get();
+        $this->applyCsrfToken();
+        $this->_save($this->table, ['status' => '1']);
+    }
+
+    /**
+     * 删除系统用户
+     * @auth true
+     * @throws \think\Exception
+     * @throws \think\exception\PDOException
+     */
+    public function remove()
+    {
+        if (in_array('10000', explode(',', $this->request->post('id')))) {
+            $this->error('系统超级账号禁止删除!');
+        }
+        $this->applyCsrfToken();
+        $this->_delete($this->table);
+    }
+
+}
+

+ 162 - 0
application/admin/controller/Userfeedback.php

@@ -0,0 +1,162 @@
+<?php
+
+namespace app\admin\controller;
+
+use library\Controller;
+use library\tools\Data;
+use think\Db;
+
+/**
+ * 施工照片
+ * Class Userimage
+ * @package app\admin\controller
+ */
+class Userfeedback extends Controller
+{
+
+    /**
+     * 指定当前数据表
+     * @var string
+     */
+    public $table = 'user_feedback';
+
+    /**
+     * 系统用户管理
+     * @auth true
+     * @menu true
+     * @throws \think\Exception
+     * @throws \think\db\exception\DataNotFoundException
+     * @throws \think\db\exception\ModelNotFoundException
+     * @throws \think\exception\DbException
+     * @throws \think\exception\PDOException
+     */
+    public function index()
+    {
+        $id = $this->request->get('id');
+        $this->uid=$id;
+        $where['uid'] = $id;
+        $this->title = '跟进反馈';
+        $query = $this->_query($this->table)->where($where);
+        $query->dateBetween('login_at,create_at')->where($where)->order('id desc')->page();
+
+
+    }
+    /**
+     * 数据列表处理
+     */
+    protected function _index_page_filter(&$data)
+    {
+        foreach ($data as &$v) {
+            $v['images'] = explode('|',$v['image']);
+        }
+
+    }
+    /**
+     * 添加系统用户
+     * @auth true
+     * @throws \think\Exception
+     * @throws \think\db\exception\DataNotFoundException
+     * @throws \think\db\exception\ModelNotFoundException
+     * @throws \think\exception\DbException
+     * @throws \think\exception\PDOException
+     */
+    public function add()
+    {
+        $this->applyCsrfToken();
+        $this->_form($this->table, 'form');
+    }
+
+    /**
+     * 编辑系统用户
+     * @auth true
+     * @throws \think\Exception
+     * @throws \think\db\exception\DataNotFoundException
+     * @throws \think\db\exception\ModelNotFoundException
+     * @throws \think\exception\DbException
+     * @throws \think\exception\PDOException
+     */
+    public function edit()
+    {
+
+
+        $this->applyCsrfToken();
+
+        $this->_form($this->table, 'form');
+
+
+    }
+    /**
+     * 表单数据处理
+     * @param array $data
+     * @throws \think\db\exception\DataNotFoundException
+     * @throws \think\db\exception\ModelNotFoundException
+     * @throws \think\exception\DbException
+     */
+    public function _form_filter(&$data)
+    {
+        $type = $this->request->get('type');
+        $data['type'] = $type;
+
+        $uid = $this->request->get('uid');
+        if (isset($uid))  $data['uid'] = $uid;
+
+        if ($this->request->isPost()) {
+
+            if (empty($data['create_time'])) $data['create_time'] = date('Y-m-d H:i:s',time());
+
+//            // 用户权限处理
+//            $data['authorize'] = (isset($data['authorize']) && is_array($data['authorize'])) ? join(',', $data['authorize']) : '';
+//            // 用户账号重复检查
+//            if (isset($data['id'])) unset($data['username']);
+//            elseif (Db::name($this->table)->where(['username' => $data['username'], 'is_deleted' => '0'])->count() > 0) {
+//                $this->error("账号{$data['username']}已经存在,请使用其它账号!");
+//            }
+        } else {
+            $data['authorize'] = explode(',', isset($data['authorize']) ? $data['authorize'] : '');
+            $this->authorizes = Db::name('SystemAuth')->where(['status' => '1'])->order('sort desc,id desc')->select();
+        }
+    }
+
+    /**
+     * 禁用系统用户
+     * @auth true
+     * @throws \think\Exception
+     * @throws \think\exception\PDOException
+     */
+    public function forbid()
+    {
+        if (in_array('10000', explode(',', $this->request->post('id')))) {
+            $this->error('系统超级账号禁止操作!');
+        }
+        $this->applyCsrfToken();
+        $this->_save($this->table, ['status' => '0']);
+    }
+
+    /**
+     * 启用系统用户
+     * @auth true
+     * @throws \think\Exception
+     * @throws \think\exception\PDOException
+     */
+    public function resume()
+    {
+        $this->applyCsrfToken();
+        $this->_save($this->table, ['status' => '1']);
+    }
+
+    /**
+     * 删除系统用户
+     * @auth true
+     * @throws \think\Exception
+     * @throws \think\exception\PDOException
+     */
+    public function remove()
+    {
+        if (in_array('10000', explode(',', $this->request->post('id')))) {
+            $this->error('系统超级账号禁止删除!');
+        }
+        $this->applyCsrfToken();
+        $this->_delete($this->table);
+    }
+
+}

+ 162 - 0
application/admin/controller/Userimage.php

@@ -0,0 +1,162 @@
+<?php
+
+namespace app\admin\controller;
+
+use library\Controller;
+use library\tools\Data;
+use think\Db;
+
+/**
+ * 施工照片
+ * Class Userimage
+ * @package app\admin\controller
+ */
+class Userimage extends Controller
+{
+
+    /**
+     * 指定当前数据表
+     * @var string
+     */
+    public $table = 'user_image';
+
+    /**
+     * 系统用户管理
+     * @auth true
+     * @menu true
+     * @throws \think\Exception
+     * @throws \think\db\exception\DataNotFoundException
+     * @throws \think\db\exception\ModelNotFoundException
+     * @throws \think\exception\DbException
+     * @throws \think\exception\PDOException
+     */
+    public function index()
+    {
+        $id = $this->request->get('id');
+        $this->uid=$id;
+        $where['uid'] = $id;
+        $this->title = '施工图片';
+        $query = $this->_query($this->table)->where($where);
+        $query->dateBetween('login_at,create_at')->where($where)->order('id desc')->page();
+
+
+    }
+    /**
+     * 数据列表处理
+     */
+    protected function _index_page_filter(&$data)
+    {
+        foreach ($data as &$v) {
+            $v['images'] = explode('|',$v['image']);
+        }
+
+    }
+    /**
+     * 添加系统用户
+     * @auth true
+     * @throws \think\Exception
+     * @throws \think\db\exception\DataNotFoundException
+     * @throws \think\db\exception\ModelNotFoundException
+     * @throws \think\exception\DbException
+     * @throws \think\exception\PDOException
+     */
+    public function add()
+    {
+        $this->applyCsrfToken();
+        $this->_form($this->table, 'form');
+    }
+
+    /**
+     * 编辑系统用户
+     * @auth true
+     * @throws \think\Exception
+     * @throws \think\db\exception\DataNotFoundException
+     * @throws \think\db\exception\ModelNotFoundException
+     * @throws \think\exception\DbException
+     * @throws \think\exception\PDOException
+     */
+    public function edit()
+    {
+
+
+        $this->applyCsrfToken();
+
+        $this->_form($this->table, 'form');
+
+
+    }
+    /**
+     * 表单数据处理
+     * @param array $data
+     * @throws \think\db\exception\DataNotFoundException
+     * @throws \think\db\exception\ModelNotFoundException
+     * @throws \think\exception\DbException
+     */
+    public function _form_filter(&$data)
+    {
+        $type = $this->request->get('type');
+        $data['type'] = $type;
+
+        $uid = $this->request->get('uid');
+        if (isset($uid))  $data['uid'] = $uid;
+
+        if ($this->request->isPost()) {
+
+            if (empty($data['create_time'])) $data['create_time'] = date('Y-m-d H:i:s',time());
+
+//            // 用户权限处理
+//            $data['authorize'] = (isset($data['authorize']) && is_array($data['authorize'])) ? join(',', $data['authorize']) : '';
+//            // 用户账号重复检查
+//            if (isset($data['id'])) unset($data['username']);
+//            elseif (Db::name($this->table)->where(['username' => $data['username'], 'is_deleted' => '0'])->count() > 0) {
+//                $this->error("账号{$data['username']}已经存在,请使用其它账号!");
+//            }
+        } else {
+            $data['authorize'] = explode(',', isset($data['authorize']) ? $data['authorize'] : '');
+            $this->authorizes = Db::name('SystemAuth')->where(['status' => '1'])->order('sort desc,id desc')->select();
+        }
+    }
+
+    /**
+     * 禁用系统用户
+     * @auth true
+     * @throws \think\Exception
+     * @throws \think\exception\PDOException
+     */
+    public function forbid()
+    {
+        if (in_array('10000', explode(',', $this->request->post('id')))) {
+            $this->error('系统超级账号禁止操作!');
+        }
+        $this->applyCsrfToken();
+        $this->_save($this->table, ['status' => '0']);
+    }
+
+    /**
+     * 启用系统用户
+     * @auth true
+     * @throws \think\Exception
+     * @throws \think\exception\PDOException
+     */
+    public function resume()
+    {
+        $this->applyCsrfToken();
+        $this->_save($this->table, ['status' => '1']);
+    }
+
+    /**
+     * 删除系统用户
+     * @auth true
+     * @throws \think\Exception
+     * @throws \think\exception\PDOException
+     */
+    public function remove()
+    {
+        if (in_array('10000', explode(',', $this->request->post('id')))) {
+            $this->error('系统超级账号禁止删除!');
+        }
+        $this->applyCsrfToken();
+        $this->_delete($this->table);
+    }
+
+}

+ 159 - 0
application/admin/controller/Userorder.php

@@ -0,0 +1,159 @@
+<?php
+
+namespace app\admin\controller;
+
+use library\Controller;
+use library\tools\Data;
+use think\Db;
+
+/**
+ * 施工照片
+ * Class Userimage
+ * @package app\admin\controller
+ */
+class Userorder extends Controller
+{
+
+    /**
+     * 指定当前数据表
+     * @var string
+     */
+    public $table = 'user_order';
+
+    /**
+     * 系统用户管理
+     * @auth true
+     * @menu true
+     * @throws \think\Exception
+     * @throws \think\db\exception\DataNotFoundException
+     * @throws \think\db\exception\ModelNotFoundException
+     * @throws \think\exception\DbException
+     * @throws \think\exception\PDOException
+     */
+    public function index()
+    {
+        $id = $this->request->get('id');
+        $this->uid=$id;
+        $where['uid'] = $id;
+        $this->title = '服务订单';
+        $query = $this->_query($this->table)->where($where);
+        $query->dateBetween('login_at,create_at')->where($where)->order('id desc')->page();
+
+
+    }
+    /**
+     * 数据列表处理
+     */
+    protected function _index_page_filter(&$data)
+    {
+//        foreach ($data as &$v) {
+//            $v['images'] = explode('|',$v['image']);
+//        }
+
+    }
+    /**
+     * 添加系统用户
+     * @auth true
+     * @throws \think\Exception
+     * @throws \think\db\exception\DataNotFoundException
+     * @throws \think\db\exception\ModelNotFoundException
+     * @throws \think\exception\DbException
+     * @throws \think\exception\PDOException
+     */
+    public function add()
+    {
+        $this->applyCsrfToken();
+        $this->_form($this->table, 'form');
+    }
+
+    /**
+     * 编辑系统用户
+     * @auth true
+     * @throws \think\Exception
+     * @throws \think\db\exception\DataNotFoundException
+     * @throws \think\db\exception\ModelNotFoundException
+     * @throws \think\exception\DbException
+     * @throws \think\exception\PDOException
+     */
+    public function edit()
+    {
+
+
+        $this->applyCsrfToken();
+
+        $this->_form($this->table, 'form');
+
+
+    }
+    /**
+     * 表单数据处理
+     * @param array $data
+     * @throws \think\db\exception\DataNotFoundException
+     * @throws \think\db\exception\ModelNotFoundException
+     * @throws \think\exception\DbException
+     */
+    public function _form_filter(&$data)
+    {
+        $uid = $this->request->get('uid');
+        if (isset($uid))  $data['uid'] = $uid;
+
+        if ($this->request->isPost()) {
+
+            if (empty($data['create_time'])) $data['create_time'] = date('Y-m-d H:i:s',time());
+//            // 用户权限处理
+//            $data['authorize'] = (isset($data['authorize']) && is_array($data['authorize'])) ? join(',', $data['authorize']) : '';
+//            // 用户账号重复检查
+//            if (isset($data['id'])) unset($data['username']);
+//            elseif (Db::name($this->table)->where(['username' => $data['username'], 'is_deleted' => '0'])->count() > 0) {
+//                $this->error("账号{$data['username']}已经存在,请使用其它账号!");
+//            }
+        } else {
+            $data['authorize'] = explode(',', isset($data['authorize']) ? $data['authorize'] : '');
+            $this->authorizes = Db::name('SystemAuth')->where(['status' => '1'])->order('sort desc,id desc')->select();
+        }
+    }
+
+    /**
+     * 禁用系统用户
+     * @auth true
+     * @throws \think\Exception
+     * @throws \think\exception\PDOException
+     */
+    public function forbid()
+    {
+        if (in_array('10000', explode(',', $this->request->post('id')))) {
+            $this->error('系统超级账号禁止操作!');
+        }
+        $this->applyCsrfToken();
+        $this->_save($this->table, ['status' => '0']);
+    }
+
+    /**
+     * 启用系统用户
+     * @auth true
+     * @throws \think\Exception
+     * @throws \think\exception\PDOException
+     */
+    public function resume()
+    {
+        $this->applyCsrfToken();
+        $this->_save($this->table, ['status' => '1']);
+    }
+
+    /**
+     * 删除系统用户
+     * @auth true
+     * @throws \think\Exception
+     * @throws \think\exception\PDOException
+     */
+    public function remove()
+    {
+        if (in_array('10000', explode(',', $this->request->post('id')))) {
+            $this->error('系统超级账号禁止删除!');
+        }
+        $this->applyCsrfToken();
+        $this->_delete($this->table);
+    }
+
+}
+

+ 223 - 0
application/admin/controller/Uuser.php

@@ -0,0 +1,223 @@
+<?php
+
+namespace app\admin\controller;
+
+use library\Controller;
+use library\tools\Data;
+use think\Db;
+
+/**
+ * 系统用户管理
+ * Class Uuser
+ * @package app\admin\controller
+ */
+class Uuser extends Controller
+{
+
+    /**
+     * 指定当前数据表
+     * @var string
+     */
+    public $table = 'user';
+
+    /**
+     * 系统用户管理
+     * @auth true
+     * @menu true
+     * @throws \think\Exception
+     * @throws \think\db\exception\DataNotFoundException
+     * @throws \think\db\exception\ModelNotFoundException
+     * @throws \think\exception\DbException
+     * @throws \think\exception\PDOException
+     */
+    public function index()
+    {
+
+        $level = $this->request->get('level');
+
+        if (!$level) $level = 0;
+
+        $where['level'] = $level;
+        $this->title = '系统用户管理';
+        $query = $this->_query($this->table)->where($where)->like('username,mobile')->equal('is_deleted');
+        $query->dateBetween('login_at,create_at')->where($where)->order('id desc')->page();
+    }
+    /**
+     * 数据列表处理
+     */
+    protected function _index_page_filter(&$data)
+    {
+        $level = [
+            '0' => '业主',
+            '1' => '德叔客户',
+            '2' => '分销客户',
+        ];
+        foreach($data as &$v) {
+            $v['levels'] = $v['level'];
+            $v['level'] = $level[$v['level']];
+        }
+
+    }
+    /**
+     * 添加系统用户
+     * @auth true
+     * @throws \think\Exception
+     * @throws \think\db\exception\DataNotFoundException
+     * @throws \think\db\exception\ModelNotFoundException
+     * @throws \think\exception\DbException
+     * @throws \think\exception\PDOException
+     */
+    public function add()
+    {
+        $this->applyCsrfToken();
+        $this->_form($this->table, 'form');
+    }
+
+    /**
+     * 编辑系统用户
+     * @auth true
+     * @throws \think\Exception
+     * @throws \think\db\exception\DataNotFoundException
+     * @throws \think\db\exception\ModelNotFoundException
+     * @throws \think\exception\DbException
+     * @throws \think\exception\PDOException
+     */
+    public function edit()
+    {
+
+
+        $this->applyCsrfToken();
+
+        $this->_form($this->table, 'form');
+
+
+    }
+
+    /**
+     * 修改用户密码
+     * @auth true
+     * @throws \think\Exception
+     * @throws \think\exception\PDOException
+     */
+    public function pass()
+    {
+        $this->applyCsrfToken();
+        if ($this->request->isGet()) {
+            $this->verify = false;
+            $this->_form($this->table, 'pass');
+        } else {
+            $post = $this->request->post();
+            $data = [
+                'uid' => $post['id'],
+                'video' => $post['logo'],
+                'image' => $post['image'],
+                'create_time' => date('Y-m-d H:i',time()),
+
+            ];
+            $add = Db::name('user_image')->insert($data);
+            if ($add) {
+                $this->success('上传成功', '');
+            } else {
+                $this->error('上传成功');
+            }
+
+        }
+    }
+
+    /**
+     * 表单数据处理
+     * @param array $data
+     * @throws \think\db\exception\DataNotFoundException
+     * @throws \think\db\exception\ModelNotFoundException
+     * @throws \think\exception\DbException
+     */
+    public function _form_filter(&$data)
+    {
+        $type = $this->request->get('type');
+        $data['type'] = $type;
+
+        if ($this->request->isPost()) {
+
+
+            if ($data['integral'] == 0) {
+                $this->error("请输入要修改数值");
+            }
+
+            $user = Db::name('user')->where('id',$data['id'])->find();
+            if (substr($data['integral'],0,1)=='-') {
+
+                $integralStr = $data['integral'];
+                $integral = $user['integral']-abs($data['integral']);
+
+                if ($integral<0) $integral = 0;
+            } else {
+                $integralStr = '+'.$data['integral'];
+                $integral = $user['integral'] + $data['integral'];
+
+            }
+            $data['integral'] = $integral;
+
+            $ins = [
+                'uid' => $data['id'],
+                'resan' => $data['resan'],
+                'create_time' => date('Y-m-d H:i',time()),
+                'integral' => $integralStr,
+            ];
+
+            Db::name('user_integral_history')->insert($ins);
+            // 用户权限处理
+            $data['authorize'] = (isset($data['authorize']) && is_array($data['authorize'])) ? join(',', $data['authorize']) : '';
+            // 用户账号重复检查
+            if (isset($data['id'])) unset($data['username']);
+            elseif (Db::name($this->table)->where(['username' => $data['username'], 'is_deleted' => '0'])->count() > 0) {
+                $this->error("账号{$data['username']}已经存在,请使用其它账号!");
+            }
+        } else {
+            $data['authorize'] = explode(',', isset($data['authorize']) ? $data['authorize'] : '');
+            $this->authorizes = Db::name('SystemAuth')->where(['status' => '1'])->order('sort desc,id desc')->select();
+        }
+    }
+
+    /**
+     * 禁用系统用户
+     * @auth true
+     * @throws \think\Exception
+     * @throws \think\exception\PDOException
+     */
+    public function forbid()
+    {
+        if (in_array('10000', explode(',', $this->request->post('id')))) {
+            $this->error('系统超级账号禁止操作!');
+        }
+        $this->applyCsrfToken();
+        $this->_save($this->table, ['status' => '0']);
+    }
+
+    /**
+     * 启用系统用户
+     * @auth true
+     * @throws \think\Exception
+     * @throws \think\exception\PDOException
+     */
+    public function resume()
+    {
+        $this->applyCsrfToken();
+        $this->_save($this->table, ['status' => '1']);
+    }
+
+    /**
+     * 删除系统用户
+     * @auth true
+     * @throws \think\Exception
+     * @throws \think\exception\PDOException
+     */
+    public function remove()
+    {
+        if (in_array('10000', explode(',', $this->request->post('id')))) {
+            $this->error('系统超级账号禁止删除!');
+        }
+        $this->applyCsrfToken();
+        $this->_delete($this->table);
+    }
+
+}

+ 44 - 0
application/admin/view/userapp/form.html

@@ -0,0 +1,44 @@
+<form class="layui-form layui-card" action="{:request()->url()}" data-auto="true" method="post" autocomplete="off">
+    <div class="layui-card-body padding-left-40">
+
+            <div class="layui-form-item">
+                <label class="relative block">
+                    <span class="color-green font-w7">姓名</span>
+
+                    <input type="text" maxlength="20" autocomplete="off" autofocus name="name" value='{$vo.name|default=""}'  placeholder="" class="layui-input">
+                </label>
+
+            </div>
+            <div class="layui-form-item">
+                <label class="relative block">
+                    <span class="color-green font-w7">手机号</span>
+                    <input type="tel" maxlength="11" autocomplete="off" autofocus name="phone" value='{$vo.phone|default=""}'  placeholder="" class="layui-input">
+                </label>
+            </div>
+            <div class="layui-form-item">
+                <label class="relative block">
+                    <span class="color-green font-w7">地址</span>
+                    <input type="text"  autocomplete="off" autofocus name="address" value='{$vo.address|default=""}'  placeholder="" class="layui-input">
+                </label>
+            </div>
+            <div class="layui-form-item">
+                <label class="relative block">
+                    <span class="color-green font-w7">详细地址</span>
+                    <input type="text" autocomplete="off" autofocus name="address_info" value='{$vo.address_info|default=""}'  placeholder="" class="layui-input">
+                </label>
+            </div>
+        </div>
+
+
+<!--    </div>-->
+    {notempty name='vo.id'}<input type='hidden' value='{$vo.id}' name='id'>{/notempty}
+   <input type='hidden' value='{$vo.uid}' name='uid'>
+    {notempty name='vo.create_time'}<input type='hidden' value='{$vo.create_time|default=""}' name='create_time'>{/notempty}
+
+    <div class="layui-form-item text-center">
+        <button class="layui-btn" type='submit'>提交</button>
+<!--        <button class="layui-btn layui-btn-danger" type='button' data-confirm="确定要取消编辑吗?" data-close>取消编辑</button>-->
+    </div>
+
+</form>
+

+ 80 - 0
application/admin/view/userapp/index.html

@@ -0,0 +1,80 @@
+{extend name='main'}
+
+{block name="button"}
+
+<!--{if auth("add")}-->
+<!--<button data-modal='{:url("add")}?uid={$uid}' data-title="添加用户" class='layui-btn layui-btn-sm layui-btn-primary'>添加</button>-->
+<!--{/if}-->
+
+<!--{if auth("remove")}-->
+<!--<button data-action='{:url("remove")}' data-rule="id#{key}" data-csrf="{:systoken('remove')}" data-confirm="确定要删除这些用户吗?" class='layui-btn layui-btn-sm layui-btn-primary'>删除用户</button>-->
+<!--{/if}-->
+
+{/block}
+
+{block name="content"}
+<div class="think-box-shadow">
+    {include file='userapp/index_search'}
+    <table class="layui-table margin-top-10" lay-skin="line">
+        {notempty name='list'}
+        <thead>
+        <tr>
+            <th class='list-table-check-td think-checkbox'>
+                <label><input data-auto-none data-check-target='.list-check-box' type='checkbox'></label>
+            </th>
+            <th class='text-left nowrap'>编号</th>
+            <th class='text-left nowrap'>姓名</th>
+            <th class='text-left nowrap'>手机号</th>
+            <th class='text-left nowrap'>地址</th>
+            <th class='text-left nowrap'>详细地址</th>
+            <th class='text-left nowrap'>预约时间</th>
+            <th class='text-left nowrap'>状态</th>
+
+<!--            <th class='text-left nowrap'>状态</th>-->
+            <th class='text-left nowrap'></th>
+        </tr>
+        </thead>
+        {/notempty}
+        <tbody>
+        {foreach $list as $key=>$vo}
+        <tr data-dbclick>
+            <td class='list-table-check-td think-checkbox'>
+                <label><input class="list-check-box" value='{$vo.id}' type='checkbox'></label>
+            </td>
+            <td class='text-left nowrap'>{$vo.number}</td>
+            <td class='text-left nowrap'>{$vo.name}</td>
+            <td class='text-left nowrap'>{$vo.phone}</td>
+            <td class='text-left nowrap'>{$vo.address}</td>
+            <td class='text-left nowrap'>{$vo.address_info}</td>
+            <td class='text-left nowrap'>{$vo.create_time}</td>
+
+            <td class='text-left nowrap'>{eq name='vo.status' value='1'}<span class="color-red">未完成</span>{else}<span class="color-green">已完成</span>{/eq}</td>
+
+            <td class='text-left nowrap'>
+                <a data-dbclick class="layui-btn layui-btn-sm" data-title="修改" data-modal='{:url("edit")}?id={$vo.id}&type=2'>修改</a>
+
+<!--                {if auth("pass")}-->
+<!--                <a class="layui-btn layui-btn-normal layui-btn-sm" data-title="施工照片" data-modal='{:url("pass")}?id={$vo.id}'>施工照片</a>-->
+<!--                {/if}-->
+<!--                <a class="layui-btn layui-btn-normal layui-btn-sm" data-title="施工照片管理" data-modal='{:url("pass")}?id={$vo.id}'>施工照片管理</a>-->
+                {if $vo.status eq 1 and auth("forbid")}
+                <a class="layui-btn layui-btn-sm layui-btn-warm" data-action="{:url('forbid')}" data-value="id#{$vo.id};status#2" data-csrf="{:systoken('forbid')}">设为已完成</a>
+                {elseif $vo.status eq 2 and auth("resume")}
+                <a class="layui-btn layui-btn-sm layui-btn-warm" data-action="{:url('resume')}" data-value="id#{$vo.id};status#1" data-csrf="{:systoken('resume')}">设为未完成</a>
+                {/if}
+
+                {if auth("remove")}
+                <a class="layui-btn layui-btn-sm layui-btn-danger" data-confirm="确定要删除该用户吗?" data-action="{:url('remove')}" data-value="id#{$vo.id}" data-csrf="{:systoken('remove')}">删 除</a>
+                {/if}
+
+            </td>
+        </tr>
+        {/foreach}
+        </tbody>
+    </table>
+
+    {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
+
+</div>
+
+{/block}

+ 57 - 0
application/admin/view/userapp/index_search.html

@@ -0,0 +1,57 @@
+<fieldset>
+
+    <legend>条件搜索</legend>
+
+    <form class="layui-form layui-form-pane form-search" action="{:request()->url()}" onsubmit="return false" method="get" autocomplete="off">
+
+        <div class="layui-form-item layui-inline">
+            <label class="layui-form-label">用户账号</label>
+            <div class="layui-input-inline">
+                <input name="name" value="" placeholder="请输入用户名" class="layui-input">
+            </div>
+        </div>
+
+        <div class="layui-form-item layui-inline">
+            <label class="layui-form-label">联系手机</label>
+            <div class="layui-input-inline">
+                <input name="phone" value="" placeholder="请输入联系手机" class="layui-input">
+            </div>
+        </div>
+
+<!--        <div class="layui-form-item layui-inline">-->
+<!--            <label class="layui-form-label">联系邮箱</label>-->
+<!--            <div class="layui-input-inline">-->
+<!--                <input name="mail" value="{$Think.get.mail|default=''}" placeholder="请输入联系邮箱" class="layui-input">-->
+<!--            </div>-->
+<!--        </div>-->
+
+        <div class="layui-form-item layui-inline">
+            <label class="layui-form-label">使用状态</label>
+            <div class="layui-input-inline">
+                <select class="layui-select" name="status">
+                    {foreach [''=>'-- 全部状态 --','1'=>'未完成','2'=>'已完成'] as $k=>$v}
+                    {eq name='Think.get.status' value='$k.""'}
+                    <option selected value="{$k}">{$v}</option>
+                    {else}
+                    <option value="{$k}">{$v}</option>
+                    {/eq}
+                    {/foreach}
+                </select>
+            </div>
+        </div>
+
+<!--        <div class="layui-form-item layui-inline">-->
+<!--            <label class="layui-form-label">登录时间</label>-->
+<!--            <div class="layui-input-inline">-->
+<!--                <input data-date-range name="login_at" value="{$Think.get.login_at|default=''}" placeholder="请选择登录时间" class="layui-input">-->
+<!--            </div>-->
+<!--        </div>-->
+
+        <div class="layui-form-item layui-inline">
+            <button class="layui-btn layui-btn-primary"><i class="layui-icon">&#xe615;</i> 搜 索</button>
+        </div>
+    </form>
+
+</fieldset>
+
+<script>form.render()</script>

+ 33 - 0
application/admin/view/userapp/pass.html

@@ -0,0 +1,33 @@
+<form class="layui-form layui-card" action="{:request()->url()}" data-auto="true" method="post" autocomplete="off">
+
+    <div class="layui-card-body padding-left-40">
+        <div class="layui-form-item">
+            <span class="color-green label-required-prev">视频及施工图片</span>
+
+            <table class="layui-table">
+                <thead>
+                <tr>
+                    <th class="text-center">视频</th>
+                    <th class="text-left">施工图片</th>
+                </tr>
+                <tr>
+                    <td width="90px" class="text-center"><input name="logo" type="hidden" value="{$vo.logo|default=''}"></td>
+                    <td width="auto" class="text-left"><input name="image" type="hidden" value="{$vo.image|default=''}"></td>
+                </tr>
+                </thead>
+            </table>
+
+            <script>$('[name="logo"]').uploadOneVideo(), $('[name="image"]').uploadMultipleImage()</script>
+        </div>
+
+    </div>
+
+    <div class="hr-line-dashed"></div>
+    {notempty name='vo.id'}<input type='hidden' value='{$vo.id}' name='id'>{/notempty}
+
+    <div class="layui-form-item text-center">
+        <button class="layui-btn" type='submit'>保存数据</button>
+<!--        <button class="layui-btn layui-btn-danger" type='button' data-confirm="确定要取消编辑吗?" data-close>取消编辑</button>-->
+    </div>
+
+</form>

+ 44 - 0
application/admin/view/userfeedback/form.html

@@ -0,0 +1,44 @@
+<form class="layui-form layui-card" action="{:request()->url()}" data-auto="true" method="post" autocomplete="off">
+    <div class="layui-card-body padding-left-40">
+
+        <div class="layui-form-item">
+            <label class="relative block">
+                <span class="color-green font-w7">文字</span>
+                <input type="text" autocomplete="off" autofocus name="content" value='{$vo.content|default=""}'  placeholder="" class="layui-input">
+            </label>
+        </div>
+        <div class="layui-card-body padding-left-40">
+            <div class="layui-form-item">
+                <span class="color-green label-required-prev">图片</span>
+
+                <table class="layui-table">
+                    <thead>
+                    <tr>
+<!--                       <th class="text-center">视频</th>-->
+                       <th class="text-left">图片</th>
+                    </tr>
+                    <tr>
+<!--                        <td width="90px" class="text-center"><input name="video" type="hidden" value="{$vo.video|default=''}"></td>-->
+                        <td width="auto" class="text-left"><input name="image" type="hidden" value="{$vo.image|default=''}"></td>
+                    </tr>
+                    </thead>
+                </table>
+
+                <script>$('[name="video"]').uploadOneVideo(), $('[name="image"]').uploadMultipleImage()</script>
+            </div>
+
+        </div>
+
+
+    </div>
+    {notempty name='vo.id'}<input type='hidden' value='{$vo.id}' name='id'>{/notempty}
+   <input type='hidden' value='{$vo.uid}' name='uid'>
+    {notempty name='vo.create_time'}<input type='hidden' value='{$vo.create_time|default=""}' name='create_time'>{/notempty}
+    <input type='hidden' value='{$vo.type}' name='type'>
+    <div class="layui-form-item text-center">
+        <button class="layui-btn" type='submit'>提交</button>
+<!--        <button class="layui-btn layui-btn-danger" type='button' data-confirm="确定要取消编辑吗?" data-close>取消编辑</button>-->
+    </div>
+
+</form>
+

+ 71 - 0
application/admin/view/userfeedback/index.html

@@ -0,0 +1,71 @@
+{extend name='main'}
+
+{block name="button"}
+
+{if auth("add")}
+<button data-modal='{:url("add")}?uid={$uid}' data-title="添加用户" class='layui-btn layui-btn-sm layui-btn-primary'>添加</button>
+{/if}
+
+<!--{if auth("remove")}-->
+<!--<button data-action='{:url("remove")}' data-rule="id#{key}" data-csrf="{:systoken('remove')}" data-confirm="确定要删除这些用户吗?" class='layui-btn layui-btn-sm layui-btn-primary'>删除用户</button>-->
+<!--{/if}-->
+
+{/block}
+
+{block name="content"}
+<div class="think-box-shadow">
+    {include file='userimage/index_search'}
+    <table class="layui-table margin-top-10" lay-skin="line">
+        {notempty name='list'}
+        <thead>
+        <tr>
+            <th class='list-table-check-td think-checkbox'>
+                <label><input data-auto-none data-check-target='.list-check-box' type='checkbox'></label>
+            </th>
+
+            <th class='text-left nowrap'>文字</th>
+            <th class='text-left nowrap'>图片</th>
+
+            <th class='text-left nowrap'></th>
+        </tr>
+        </thead>
+        {/notempty}
+        <tbody>
+        {foreach $list as $key=>$vo}
+        <tr data-dbclick>
+            <td class='list-table-check-td think-checkbox'>
+                <label><input class="list-check-box" value='{$vo.id}' type='checkbox'></label>
+            </td>
+            <td class='text-left nowrap'>{$vo.content} </td>
+            <td class='text-left nowrap'>
+                {$vo.username|default='-'}
+                {foreach $vo.images as $k=>$v}
+                   <img data-tips-image style="width:60px;height:60px" src="{$v|default=''}" class="margin-right-5 text-top">
+                {/foreach}
+            </td>
+
+
+            <td class='text-left nowrap'>
+<!--                <a data-dbclick class="layui-btn layui-btn-sm" data-title="修改" data-modal='{:url("edit")}?id={$vo.id}&type=2'>修改</a>-->
+
+<!--                {if auth("pass")}-->
+<!--                <a class="layui-btn layui-btn-normal layui-btn-sm" data-title="施工照片" data-modal='{:url("pass")}?id={$vo.id}'>施工照片</a>-->
+<!--                {/if}-->
+<!--                <a class="layui-btn layui-btn-normal layui-btn-sm" data-title="施工照片管理" data-modal='{:url("pass")}?id={$vo.id}'>施工照片管理</a>-->
+
+
+                {if auth("remove")}
+                <a class="layui-btn layui-btn-sm layui-btn-danger" data-confirm="确定要删除该用户吗?" data-action="{:url('remove')}" data-value="id#{$vo.id}" data-csrf="{:systoken('remove')}">删 除</a>
+                {/if}
+
+            </td>
+        </tr>
+        {/foreach}
+        </tbody>
+    </table>
+
+    {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
+
+</div>
+
+{/block}

+ 57 - 0
application/admin/view/userfeedback/index_search.html

@@ -0,0 +1,57 @@
+<!--<fieldset>-->
+
+<!--    <legend>条件搜索</legend>-->
+
+<!--    <form class="layui-form layui-form-pane form-search" action="{:request()->url()}" onsubmit="return false" method="get" autocomplete="off">-->
+
+<!--        <div class="layui-form-item layui-inline">-->
+<!--            <label class="layui-form-label">用户账号</label>-->
+<!--            <div class="layui-input-inline">-->
+<!--                <input name="username" value="{$Think.get.username|default=''}" placeholder="请输入用户名" class="layui-input">-->
+<!--            </div>-->
+<!--        </div>-->
+
+<!--        <div class="layui-form-item layui-inline">-->
+<!--            <label class="layui-form-label">联系手机</label>-->
+<!--            <div class="layui-input-inline">-->
+<!--                <input name="mobile" value="" placeholder="请输入联系手机" class="layui-input">-->
+<!--            </div>-->
+<!--        </div>-->
+
+<!--&lt;!&ndash;        <div class="layui-form-item layui-inline">&ndash;&gt;-->
+<!--&lt;!&ndash;            <label class="layui-form-label">联系邮箱</label>&ndash;&gt;-->
+<!--&lt;!&ndash;            <div class="layui-input-inline">&ndash;&gt;-->
+<!--&lt;!&ndash;                <input name="mail" value="{$Think.get.mail|default=''}" placeholder="请输入联系邮箱" class="layui-input">&ndash;&gt;-->
+<!--&lt;!&ndash;            </div>&ndash;&gt;-->
+<!--&lt;!&ndash;        </div>&ndash;&gt;-->
+
+<!--&lt;!&ndash;        <div class="layui-form-item layui-inline">&ndash;&gt;-->
+<!--&lt;!&ndash;            <label class="layui-form-label">使用状态</label>&ndash;&gt;-->
+<!--&lt;!&ndash;            <div class="layui-input-inline">&ndash;&gt;-->
+<!--&lt;!&ndash;                <select class="layui-select" name="is_deleted">&ndash;&gt;-->
+<!--&lt;!&ndash;                    {foreach [''=>'&#45;&#45; 全部状态 &#45;&#45;','0'=>'已禁用的账号','1'=>'使用中的账号'] as $k=>$v}&ndash;&gt;-->
+<!--&lt;!&ndash;                    {eq name='Think.get.is_deleted' value='$k.""'}&ndash;&gt;-->
+<!--&lt;!&ndash;                    <option selected value="{$k}">{$v}</option>&ndash;&gt;-->
+<!--&lt;!&ndash;                    {else}&ndash;&gt;-->
+<!--&lt;!&ndash;                    <option value="{$k}">{$v}</option>&ndash;&gt;-->
+<!--&lt;!&ndash;                    {/eq}&ndash;&gt;-->
+<!--&lt;!&ndash;                    {/foreach}&ndash;&gt;-->
+<!--&lt;!&ndash;                </select>&ndash;&gt;-->
+<!--&lt;!&ndash;            </div>&ndash;&gt;-->
+<!--&lt;!&ndash;        </div>&ndash;&gt;-->
+
+<!--&lt;!&ndash;        <div class="layui-form-item layui-inline">&ndash;&gt;-->
+<!--&lt;!&ndash;            <label class="layui-form-label">登录时间</label>&ndash;&gt;-->
+<!--&lt;!&ndash;            <div class="layui-input-inline">&ndash;&gt;-->
+<!--&lt;!&ndash;                <input data-date-range name="login_at" value="{$Think.get.login_at|default=''}" placeholder="请选择登录时间" class="layui-input">&ndash;&gt;-->
+<!--&lt;!&ndash;            </div>&ndash;&gt;-->
+<!--&lt;!&ndash;        </div>&ndash;&gt;-->
+
+<!--        <div class="layui-form-item layui-inline">-->
+<!--            <button class="layui-btn layui-btn-primary"><i class="layui-icon">&#xe615;</i> 搜 索</button>-->
+<!--        </div>-->
+<!--    </form>-->
+
+<!--</fieldset>-->
+
+<!--<script>form.render()</script>-->

+ 33 - 0
application/admin/view/userfeedback/pass.html

@@ -0,0 +1,33 @@
+<form class="layui-form layui-card" action="{:request()->url()}" data-auto="true" method="post" autocomplete="off">
+
+    <div class="layui-card-body padding-left-40">
+        <div class="layui-form-item">
+            <span class="color-green label-required-prev">视频及施工图片</span>
+
+            <table class="layui-table">
+                <thead>
+                <tr>
+                    <th class="text-center">视频</th>
+                    <th class="text-left">施工图片</th>
+                </tr>
+                <tr>
+                    <td width="90px" class="text-center"><input name="logo" type="hidden" value="{$vo.logo|default=''}"></td>
+                    <td width="auto" class="text-left"><input name="image" type="hidden" value="{$vo.image|default=''}"></td>
+                </tr>
+                </thead>
+            </table>
+
+            <script>$('[name="logo"]').uploadOneVideo(), $('[name="image"]').uploadMultipleImage()</script>
+        </div>
+
+    </div>
+
+    <div class="hr-line-dashed"></div>
+    {notempty name='vo.id'}<input type='hidden' value='{$vo.id}' name='id'>{/notempty}
+
+    <div class="layui-form-item text-center">
+        <button class="layui-btn" type='submit'>保存数据</button>
+<!--        <button class="layui-btn layui-btn-danger" type='button' data-confirm="确定要取消编辑吗?" data-close>取消编辑</button>-->
+    </div>
+
+</form>

+ 39 - 0
application/admin/view/userimage/form.html

@@ -0,0 +1,39 @@
+<form class="layui-form layui-card" action="{:request()->url()}" data-auto="true" method="post" autocomplete="off">
+    <div class="layui-card-body padding-left-40">
+
+
+        <div class="layui-card-body padding-left-40">
+            <div class="layui-form-item">
+                <span class="color-green label-required-prev">视频及施工图片</span>
+
+                <table class="layui-table">
+                    <thead>
+                    <tr>
+                       <th class="text-center">视频</th>
+                       <th class="text-left">施工图片</th>
+                    </tr>
+                    <tr>
+                        <td width="90px" class="text-center"><input name="video" type="hidden" value="{$vo.video|default=''}"></td>
+                        <td width="auto" class="text-left"><input name="image" type="hidden" value="{$vo.image|default=''}"></td>
+                    </tr>
+                    </thead>
+                </table>
+
+                <script>$('[name="video"]').uploadOneVideo(), $('[name="image"]').uploadMultipleImage()</script>
+            </div>
+
+        </div>
+
+
+    </div>
+    {notempty name='vo.id'}<input type='hidden' value='{$vo.id}' name='id'>{/notempty}
+   <input type='hidden' value='{$vo.uid}' name='uid'>
+    {notempty name='vo.create_time'}<input type='hidden' value='{$vo.create_time|default=""}' name='create_time'>{/notempty}
+    <input type='hidden' value='{$vo.type}' name='type'>
+    <div class="layui-form-item text-center">
+        <button class="layui-btn" type='submit'>提交</button>
+<!--        <button class="layui-btn layui-btn-danger" type='button' data-confirm="确定要取消编辑吗?" data-close>取消编辑</button>-->
+    </div>
+
+</form>
+

+ 72 - 0
application/admin/view/userimage/index.html

@@ -0,0 +1,72 @@
+{extend name='main'}
+
+{block name="button"}
+
+{if auth("add")}
+<button data-modal='{:url("add")}?uid={$uid}' data-title="添加用户" class='layui-btn layui-btn-sm layui-btn-primary'>添加</button>
+{/if}
+
+<!--{if auth("remove")}-->
+<!--<button data-action='{:url("remove")}' data-rule="id#{key}" data-csrf="{:systoken('remove')}" data-confirm="确定要删除这些用户吗?" class='layui-btn layui-btn-sm layui-btn-primary'>删除用户</button>-->
+<!--{/if}-->
+
+{/block}
+
+{block name="content"}
+<div class="think-box-shadow">
+    {include file='userimage/index_search'}
+    <table class="layui-table margin-top-10" lay-skin="line">
+        {notempty name='list'}
+        <thead>
+        <tr>
+            <th class='list-table-check-td think-checkbox'>
+                <label><input data-auto-none data-check-target='.list-check-box' type='checkbox'></label>
+            </th>
+            <th class='text-left nowrap'>视频</th>
+            <th class='text-left nowrap'>图片</th>
+
+<!--            <th class='text-left nowrap'>状态</th>-->
+            <th class='text-left nowrap'></th>
+        </tr>
+        </thead>
+        {/notempty}
+        <tbody>
+        {foreach $list as $key=>$vo}
+        <tr data-dbclick>
+            <td class='list-table-check-td think-checkbox'>
+                <label><input class="list-check-box" value='{$vo.id}' type='checkbox'></label>
+            </td>
+            <td class='text-left nowrap'> <video  style="width:100px;height:60px" src="{$vo.video|default=''}" ></video>
+                <input type="text"class="margin-right-5 text-top" style="width: 100px;margin-top: 4%;height: 20px" value="{$vo.video}"></td>
+            <td class='text-left nowrap'>
+                {$vo.username|default='-'}
+                {foreach $vo.images as $k=>$v}
+                   <img data-tips-image style="width:60px;height:60px" src="{$v|default=''}" class="margin-right-5 text-top">
+                {/foreach}
+            </td>
+
+
+            <td class='text-left nowrap'>
+                <a data-dbclick class="layui-btn layui-btn-sm" data-title="修改" data-modal='{:url("edit")}?id={$vo.id}&type=2'>修改</a>
+
+<!--                {if auth("pass")}-->
+<!--                <a class="layui-btn layui-btn-normal layui-btn-sm" data-title="施工照片" data-modal='{:url("pass")}?id={$vo.id}'>施工照片</a>-->
+<!--                {/if}-->
+<!--                <a class="layui-btn layui-btn-normal layui-btn-sm" data-title="施工照片管理" data-modal='{:url("pass")}?id={$vo.id}'>施工照片管理</a>-->
+
+
+                {if auth("remove")}
+                <a class="layui-btn layui-btn-sm layui-btn-danger" data-confirm="确定要删除该用户吗?" data-action="{:url('remove')}" data-value="id#{$vo.id}" data-csrf="{:systoken('remove')}">删 除</a>
+                {/if}
+
+            </td>
+        </tr>
+        {/foreach}
+        </tbody>
+    </table>
+
+    {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
+
+</div>
+
+{/block}

+ 57 - 0
application/admin/view/userimage/index_search.html

@@ -0,0 +1,57 @@
+<!--<fieldset>-->
+
+<!--    <legend>条件搜索</legend>-->
+
+<!--    <form class="layui-form layui-form-pane form-search" action="{:request()->url()}" onsubmit="return false" method="get" autocomplete="off">-->
+
+<!--        <div class="layui-form-item layui-inline">-->
+<!--            <label class="layui-form-label">用户账号</label>-->
+<!--            <div class="layui-input-inline">-->
+<!--                <input name="username" value="{$Think.get.username|default=''}" placeholder="请输入用户名" class="layui-input">-->
+<!--            </div>-->
+<!--        </div>-->
+
+<!--        <div class="layui-form-item layui-inline">-->
+<!--            <label class="layui-form-label">联系手机</label>-->
+<!--            <div class="layui-input-inline">-->
+<!--                <input name="mobile" value="" placeholder="请输入联系手机" class="layui-input">-->
+<!--            </div>-->
+<!--        </div>-->
+
+<!--&lt;!&ndash;        <div class="layui-form-item layui-inline">&ndash;&gt;-->
+<!--&lt;!&ndash;            <label class="layui-form-label">联系邮箱</label>&ndash;&gt;-->
+<!--&lt;!&ndash;            <div class="layui-input-inline">&ndash;&gt;-->
+<!--&lt;!&ndash;                <input name="mail" value="{$Think.get.mail|default=''}" placeholder="请输入联系邮箱" class="layui-input">&ndash;&gt;-->
+<!--&lt;!&ndash;            </div>&ndash;&gt;-->
+<!--&lt;!&ndash;        </div>&ndash;&gt;-->
+
+<!--&lt;!&ndash;        <div class="layui-form-item layui-inline">&ndash;&gt;-->
+<!--&lt;!&ndash;            <label class="layui-form-label">使用状态</label>&ndash;&gt;-->
+<!--&lt;!&ndash;            <div class="layui-input-inline">&ndash;&gt;-->
+<!--&lt;!&ndash;                <select class="layui-select" name="is_deleted">&ndash;&gt;-->
+<!--&lt;!&ndash;                    {foreach [''=>'&#45;&#45; 全部状态 &#45;&#45;','0'=>'已禁用的账号','1'=>'使用中的账号'] as $k=>$v}&ndash;&gt;-->
+<!--&lt;!&ndash;                    {eq name='Think.get.is_deleted' value='$k.""'}&ndash;&gt;-->
+<!--&lt;!&ndash;                    <option selected value="{$k}">{$v}</option>&ndash;&gt;-->
+<!--&lt;!&ndash;                    {else}&ndash;&gt;-->
+<!--&lt;!&ndash;                    <option value="{$k}">{$v}</option>&ndash;&gt;-->
+<!--&lt;!&ndash;                    {/eq}&ndash;&gt;-->
+<!--&lt;!&ndash;                    {/foreach}&ndash;&gt;-->
+<!--&lt;!&ndash;                </select>&ndash;&gt;-->
+<!--&lt;!&ndash;            </div>&ndash;&gt;-->
+<!--&lt;!&ndash;        </div>&ndash;&gt;-->
+
+<!--&lt;!&ndash;        <div class="layui-form-item layui-inline">&ndash;&gt;-->
+<!--&lt;!&ndash;            <label class="layui-form-label">登录时间</label>&ndash;&gt;-->
+<!--&lt;!&ndash;            <div class="layui-input-inline">&ndash;&gt;-->
+<!--&lt;!&ndash;                <input data-date-range name="login_at" value="{$Think.get.login_at|default=''}" placeholder="请选择登录时间" class="layui-input">&ndash;&gt;-->
+<!--&lt;!&ndash;            </div>&ndash;&gt;-->
+<!--&lt;!&ndash;        </div>&ndash;&gt;-->
+
+<!--        <div class="layui-form-item layui-inline">-->
+<!--            <button class="layui-btn layui-btn-primary"><i class="layui-icon">&#xe615;</i> 搜 索</button>-->
+<!--        </div>-->
+<!--    </form>-->
+
+<!--</fieldset>-->
+
+<!--<script>form.render()</script>-->

+ 33 - 0
application/admin/view/userimage/pass.html

@@ -0,0 +1,33 @@
+<form class="layui-form layui-card" action="{:request()->url()}" data-auto="true" method="post" autocomplete="off">
+
+    <div class="layui-card-body padding-left-40">
+        <div class="layui-form-item">
+            <span class="color-green label-required-prev">视频及施工图片</span>
+
+            <table class="layui-table">
+                <thead>
+                <tr>
+                    <th class="text-center">视频</th>
+                    <th class="text-left">施工图片</th>
+                </tr>
+                <tr>
+                    <td width="90px" class="text-center"><input name="logo" type="hidden" value="{$vo.logo|default=''}"></td>
+                    <td width="auto" class="text-left"><input name="image" type="hidden" value="{$vo.image|default=''}"></td>
+                </tr>
+                </thead>
+            </table>
+
+            <script>$('[name="logo"]').uploadOneVideo(), $('[name="image"]').uploadMultipleImage()</script>
+        </div>
+
+    </div>
+
+    <div class="hr-line-dashed"></div>
+    {notempty name='vo.id'}<input type='hidden' value='{$vo.id}' name='id'>{/notempty}
+
+    <div class="layui-form-item text-center">
+        <button class="layui-btn" type='submit'>保存数据</button>
+<!--        <button class="layui-btn layui-btn-danger" type='button' data-confirm="确定要取消编辑吗?" data-close>取消编辑</button>-->
+    </div>
+
+</form>

+ 50 - 0
application/admin/view/userorder/form.html

@@ -0,0 +1,50 @@
+<form class="layui-form layui-card" action="{:request()->url()}" data-auto="true" method="post" autocomplete="off">
+    <div class="layui-card-body padding-left-40">
+
+
+        <div class="layui-card-body padding-left-40">
+            <div class="layui-form-item">
+                <span class="color-green label-required-prev">商品图片</span>
+
+                <table class="layui-table">
+                    <thead>
+                    <tr>
+                       <th class="text-center">商品图</th>
+                    </tr>
+                    <tr>
+                        <td width="90px" class="text-center"><input name="image" type="hidden" value="{$vo.image|default=''}"></td>
+                    </tr>
+                    </thead>
+                </table>
+
+                <script>$('[name="image"]').uploadOneImage()</script>
+            </div>
+            <div class="layui-form-item">
+                <label class="relative block">
+                    <span class="color-green font-w7">标题</span>
+
+                    <input type="text" maxlength="20" autocomplete="off" autofocus name="name" value='{$vo.name|default=""}'  placeholder="请输入商品标题" class="layui-input">
+                </label>
+
+            </div>
+            <div class="layui-form-item">
+                <label class="relative block">
+                    <span class="color-green font-w7">数量</span>
+                    <input type="number" maxlength="11" autocomplete="off" autofocus name="number" value='{$vo.number|default=""}'  placeholder="请输入商品数量" class="layui-input">
+                </label>
+            </div>
+        </div>
+
+
+    </div>
+    {notempty name='vo.id'}<input type='hidden' value='{$vo.id}' name='id'>{/notempty}
+   <input type='hidden' value='{$vo.uid}' name='uid'>
+    {notempty name='vo.create_time'}<input type='hidden' value='{$vo.create_time|default=""}' name='create_time'>{/notempty}
+
+    <div class="layui-form-item text-center">
+        <button class="layui-btn" type='submit'>提交</button>
+<!--        <button class="layui-btn layui-btn-danger" type='button' data-confirm="确定要取消编辑吗?" data-close>取消编辑</button>-->
+    </div>
+
+</form>
+

+ 69 - 0
application/admin/view/userorder/index.html

@@ -0,0 +1,69 @@
+{extend name='main'}
+
+{block name="button"}
+
+{if auth("add")}
+<button data-modal='{:url("add")}?uid={$uid}' data-title="添加用户" class='layui-btn layui-btn-sm layui-btn-primary'>添加</button>
+{/if}
+
+<!--{if auth("remove")}-->
+<!--<button data-action='{:url("remove")}' data-rule="id#{key}" data-csrf="{:systoken('remove')}" data-confirm="确定要删除这些用户吗?" class='layui-btn layui-btn-sm layui-btn-primary'>删除用户</button>-->
+<!--{/if}-->
+
+{/block}
+
+{block name="content"}
+<div class="think-box-shadow">
+    {include file='userimage/index_search'}
+    <table class="layui-table margin-top-10" lay-skin="line">
+        {notempty name='list'}
+        <thead>
+        <tr>
+            <th class='list-table-check-td think-checkbox'>
+                <label><input data-auto-none data-check-target='.list-check-box' type='checkbox'></label>
+            </th>
+            <th class='text-left nowrap'>标题</th>
+            <th class='text-left nowrap'>图片</th>
+            <th class='text-left nowrap'>数量</th>
+
+<!--            <th class='text-left nowrap'>状态</th>-->
+            <th class='text-left nowrap'></th>
+        </tr>
+        </thead>
+        {/notempty}
+        <tbody>
+        {foreach $list as $key=>$vo}
+        <tr data-dbclick>
+            <td class='list-table-check-td think-checkbox'>
+                <label><input class="list-check-box" value='{$vo.id}' type='checkbox'></label>
+            </td>
+            <td class='text-left nowrap'>{$vo.name}</td>
+            <td class='text-left nowrap'>
+                <img data-tips-image style="width:60px;height:60px" src="{$vo.image|default=''}" class="margin-right-5 text-top">
+            </td>
+            <td class='text-left nowrap'>{$vo.number}</td>
+
+            <td class='text-left nowrap'>
+                <a data-dbclick class="layui-btn layui-btn-sm" data-title="修改" data-modal='{:url("edit")}?id={$vo.id}&type=2'>修改</a>
+
+<!--                {if auth("pass")}-->
+<!--                <a class="layui-btn layui-btn-normal layui-btn-sm" data-title="施工照片" data-modal='{:url("pass")}?id={$vo.id}'>施工照片</a>-->
+<!--                {/if}-->
+<!--                <a class="layui-btn layui-btn-normal layui-btn-sm" data-title="施工照片管理" data-modal='{:url("pass")}?id={$vo.id}'>施工照片管理</a>-->
+
+
+                {if auth("remove")}
+                <a class="layui-btn layui-btn-sm layui-btn-danger" data-confirm="确定要删除该用户吗?" data-action="{:url('remove')}" data-value="id#{$vo.id}" data-csrf="{:systoken('remove')}">删 除</a>
+                {/if}
+
+            </td>
+        </tr>
+        {/foreach}
+        </tbody>
+    </table>
+
+    {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
+
+</div>
+
+{/block}

+ 57 - 0
application/admin/view/userorder/index_search.html

@@ -0,0 +1,57 @@
+<!--<fieldset>-->
+
+<!--    <legend>条件搜索</legend>-->
+
+<!--    <form class="layui-form layui-form-pane form-search" action="{:request()->url()}" onsubmit="return false" method="get" autocomplete="off">-->
+
+<!--        <div class="layui-form-item layui-inline">-->
+<!--            <label class="layui-form-label">用户账号</label>-->
+<!--            <div class="layui-input-inline">-->
+<!--                <input name="username" value="{$Think.get.username|default=''}" placeholder="请输入用户名" class="layui-input">-->
+<!--            </div>-->
+<!--        </div>-->
+
+<!--        <div class="layui-form-item layui-inline">-->
+<!--            <label class="layui-form-label">联系手机</label>-->
+<!--            <div class="layui-input-inline">-->
+<!--                <input name="mobile" value="" placeholder="请输入联系手机" class="layui-input">-->
+<!--            </div>-->
+<!--        </div>-->
+
+<!--&lt;!&ndash;        <div class="layui-form-item layui-inline">&ndash;&gt;-->
+<!--&lt;!&ndash;            <label class="layui-form-label">联系邮箱</label>&ndash;&gt;-->
+<!--&lt;!&ndash;            <div class="layui-input-inline">&ndash;&gt;-->
+<!--&lt;!&ndash;                <input name="mail" value="{$Think.get.mail|default=''}" placeholder="请输入联系邮箱" class="layui-input">&ndash;&gt;-->
+<!--&lt;!&ndash;            </div>&ndash;&gt;-->
+<!--&lt;!&ndash;        </div>&ndash;&gt;-->
+
+<!--&lt;!&ndash;        <div class="layui-form-item layui-inline">&ndash;&gt;-->
+<!--&lt;!&ndash;            <label class="layui-form-label">使用状态</label>&ndash;&gt;-->
+<!--&lt;!&ndash;            <div class="layui-input-inline">&ndash;&gt;-->
+<!--&lt;!&ndash;                <select class="layui-select" name="is_deleted">&ndash;&gt;-->
+<!--&lt;!&ndash;                    {foreach [''=>'&#45;&#45; 全部状态 &#45;&#45;','0'=>'已禁用的账号','1'=>'使用中的账号'] as $k=>$v}&ndash;&gt;-->
+<!--&lt;!&ndash;                    {eq name='Think.get.is_deleted' value='$k.""'}&ndash;&gt;-->
+<!--&lt;!&ndash;                    <option selected value="{$k}">{$v}</option>&ndash;&gt;-->
+<!--&lt;!&ndash;                    {else}&ndash;&gt;-->
+<!--&lt;!&ndash;                    <option value="{$k}">{$v}</option>&ndash;&gt;-->
+<!--&lt;!&ndash;                    {/eq}&ndash;&gt;-->
+<!--&lt;!&ndash;                    {/foreach}&ndash;&gt;-->
+<!--&lt;!&ndash;                </select>&ndash;&gt;-->
+<!--&lt;!&ndash;            </div>&ndash;&gt;-->
+<!--&lt;!&ndash;        </div>&ndash;&gt;-->
+
+<!--&lt;!&ndash;        <div class="layui-form-item layui-inline">&ndash;&gt;-->
+<!--&lt;!&ndash;            <label class="layui-form-label">登录时间</label>&ndash;&gt;-->
+<!--&lt;!&ndash;            <div class="layui-input-inline">&ndash;&gt;-->
+<!--&lt;!&ndash;                <input data-date-range name="login_at" value="{$Think.get.login_at|default=''}" placeholder="请选择登录时间" class="layui-input">&ndash;&gt;-->
+<!--&lt;!&ndash;            </div>&ndash;&gt;-->
+<!--&lt;!&ndash;        </div>&ndash;&gt;-->
+
+<!--        <div class="layui-form-item layui-inline">-->
+<!--            <button class="layui-btn layui-btn-primary"><i class="layui-icon">&#xe615;</i> 搜 索</button>-->
+<!--        </div>-->
+<!--    </form>-->
+
+<!--</fieldset>-->
+
+<!--<script>form.render()</script>-->

+ 33 - 0
application/admin/view/userorder/pass.html

@@ -0,0 +1,33 @@
+<form class="layui-form layui-card" action="{:request()->url()}" data-auto="true" method="post" autocomplete="off">
+
+    <div class="layui-card-body padding-left-40">
+        <div class="layui-form-item">
+            <span class="color-green label-required-prev">视频及施工图片</span>
+
+            <table class="layui-table">
+                <thead>
+                <tr>
+                    <th class="text-center">视频</th>
+                    <th class="text-left">施工图片</th>
+                </tr>
+                <tr>
+                    <td width="90px" class="text-center"><input name="logo" type="hidden" value="{$vo.logo|default=''}"></td>
+                    <td width="auto" class="text-left"><input name="image" type="hidden" value="{$vo.image|default=''}"></td>
+                </tr>
+                </thead>
+            </table>
+
+            <script>$('[name="logo"]').uploadOneVideo(), $('[name="image"]').uploadMultipleImage()</script>
+        </div>
+
+    </div>
+
+    <div class="hr-line-dashed"></div>
+    {notempty name='vo.id'}<input type='hidden' value='{$vo.id}' name='id'>{/notempty}
+
+    <div class="layui-form-item text-center">
+        <button class="layui-btn" type='submit'>保存数据</button>
+<!--        <button class="layui-btn layui-btn-danger" type='button' data-confirm="确定要取消编辑吗?" data-close>取消编辑</button>-->
+    </div>
+
+</form>

+ 22 - 3
application/admin/view/uuser/index.html

@@ -48,14 +48,33 @@
 <!--            <td class='text-left nowrap'>{eq name='vo.is_deleted' value='2'}<span class="color-red">已禁用</span>{else}<span class="color-green">使用中</span>{/eq}</td>-->
 
             <td class='text-left nowrap'>
+                {eq name='vo.levels' value='1'}
                 <a data-dbclick class="layui-btn layui-btn-sm" data-title="修改积分" data-modal='{:url("edit")}?id={$vo.id}&type=2'>修改积分</a>
-
+                {/eq}
+                {eq name='vo.levels' value='2'}
+                <a data-dbclick class="layui-btn layui-btn-sm" data-title="修改积分" data-modal='{:url("edit")}?id={$vo.id}&type=2'>修改积分</a>
+                {/eq}
+                {eq name='vo.levels' value='1'}
+                <a data-dbclick class="layui-btn layui-btn-normal layui-btn-sm" data-open='{:url("userorder/index")}?id={$vo.id}'>服务订单</a>
+                {/eq}
+                {eq name='vo.levels' value='2'}
+                <a data-dbclick class="layui-btn layui-btn-normal layui-btn-sm" data-open='{:url("userorder/index")}?id={$vo.id}'>服务订单</a>
+                {/eq}
 <!--                {if auth("pass")}-->
 <!--                <a class="layui-btn layui-btn-normal layui-btn-sm" data-title="施工照片" data-modal='{:url("pass")}?id={$vo.id}'>施工照片</a>-->
 <!--                {/if}-->
-                {if $vo.level==0}
+                {eq name='vo.levels' value='0'}
                 <a data-dbclick class="layui-btn layui-btn-normal layui-btn-sm" data-open='{:url("userimage/index")}?id={$vo.id}'>施工照片管理</a>
-                {/if}
+                {/eq}
+                {eq name='vo.levels' value='0'}
+                <a data-dbclick class="layui-btn layui-btn-normal layui-btn-sm" data-open='{:url("userapp/index")}?id={$vo.id}'>线上预约</a>
+                {/eq}
+                {eq name='vo.levels' value='0'}
+                <a data-dbclick class="layui-btn layui-btn-normal layui-btn-sm" data-open='{:url("userfeedback/index")}?id={$vo.id}'>跟进反馈</a>
+                {/eq}
+<!--                {eq name='vo.levels' value='0'}-->
+<!--                <a data-dbclick class="layui-btn layui-btn-normal layui-btn-sm" data-open='{:url("userorder/index")}?id={$vo.id}'>服务订单</a>-->
+<!--                {/eq}-->
 <!--                <a class="layui-btn layui-btn-normal layui-btn-sm" data-title="施工照片管理" data-modal='{:url("userimage/index")}?id={$vo.id}'>施工照片管理</a>-->
 <!--                {if auth("edit")}-->
 <!--                <a data-dbclick class="layui-btn layui-btn-sm" data-title="编辑用户" data-modal='{:url("edit")}?id={$vo.id}&type=1'>增加集分</a>-->

+ 70 - 38
application/index/controller/Index.php

@@ -133,47 +133,79 @@ class Index extends Controller
     }
     
     
-    /**
-     * 上传图片
-     */
+//    /**
+//     * 上传图片
+//     */
+//    public function upload()
+//    {
+//        $folder = 'images';
+//        $files = request()->file();
+//        if (empty($files) || $files == null) {
+//            $this->error('请上传文件');
+//        }
+//        $imags = [];
+//        $errors = [];
+//        $root = $this->app->getRootPath();
+//
+//        foreach ($files as $file) {
+//            if ($folder) {   //保存目录
+//                // 移动到框架应用根目录/public/uploads/ 目录下
+//
+//                $info = $file->move($root.'/public/upload/'. $folder);
+//
+//                if ($info) {
+//                    // 成功上传后 获取上传信息
+//                    //echo $info->getFilename();
+//                    // $path = '/uploads/editor/' . $info->getSaveName();
+//                    $path = $folder . '/' . $info->getSaveName();
+//                    $fileName = str_replace('\\', '/', $path);
+//                    array_push($imags, '/' . 'uploads/'.$fileName);
+//                } else {
+//                    array_push($errors, $file->getError()); // 上传失败获取错误信息
+//                }
+//            }
+//        }
+//        if (!$errors) {
+//            $msg['code'] = 1;
+//            $msg['data'] = $imags;
+//            return json($msg);
+//        } else {
+//            $msg['code'] = 0;
+//            $msg['data'] = $imags;
+//            $msg['msg'] = "上传出错";
+//            return json($msg);
+//        }
+//    }
+      /**
+       * 上传图片
+       */
     public function upload()
     {
-        $folder = 'images';
-        $files = request()->file();
-        if (empty($files) || $files == null) {
-            $this->error('请上传文件');
-        }
-        $imags = [];
-        $errors = [];
-        $root = $this->app->getRootPath();
-
-        foreach ($files as $file) {
-            if ($folder) {   //保存目录
-                // 移动到框架应用根目录/public/uploads/ 目录下
-
-                $info = $file->move($root.'/public/upload/'. $folder);
-
-                if ($info) {
-                    // 成功上传后 获取上传信息
-                    //echo $info->getFilename();
-                    // $path = '/uploads/editor/' . $info->getSaveName();
-                    $path = $folder . '/' . $info->getSaveName();
-                    $fileName = str_replace('\\', '/', $path);
-                    array_push($imags, '/' . 'uploads/'.$fileName);
-                } else {
-                    array_push($errors, $file->getError()); // 上传失败获取错误信息
-                }
+        $data = $this->request->post();
+
+        $str = '';
+        foreach ($data as $v) {
+
+            $image = $v['path'];
+
+            $imageName = "25220_" . date("His", time()) . "_" . rand(1111, 9999) . '.png';
+            if (strstr($image, ",")) {
+                $image = explode(',', $image);
+                $image = $image[1];
+            }
+
+            $path = "uploads/images/" . date("Ymd", time());
+            if (!is_dir($path)) { //判断目录是否存在 不存在就创建
+                mkdir($path, 0777, true);
+            }
+            $imageSrc = $path . "/" . $imageName;  //图片名字
+
+            $r = file_put_contents($this->app->getRootPath() . "public/" . $imageSrc, base64_decode($image));//返回的是字节数
+            if ($r) {
+                $str = $str . $imageSrc . '|';
             }
         }
-        if (!$errors) {
-            $msg['code'] = 1;
-            $msg['data'] = $imags;
-            return json($msg);
-        } else {
-            $msg['code'] = 0;
-            $msg['data'] = $imags;
-            $msg['msg'] = "上传出错";
-            return json($msg);
-        }
+
+        return $this->success('', $str);
     }
 }

BIN
public/upload/0477bb731931fd74/845a44dd2d286458.mp4


BIN
public/upload/3e3de4c45397b733/1fe1cfba9b58cebb.png


BIN
public/upload/4ebb5bc7c85b3138/b438370104c387db.mp4


BIN
public/upload/9b9202097abf0b46/c8051c22d6f88e7f.png


BIN
public/upload/9f9da62a9352ac34/831a8e05179d8e76.jpg


BIN
public/upload/b822091311ef86ff/225897db7c29d1f8.mp4


BIN
public/uploads/images/20210312/25220_150116_2193.png


BIN
public/uploads/images/20210312/25220_150116_8036.png


BIN
public/uploads/images/20210312/25220_150116_9797.png