123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158 |
- <?php
- // +----------------------------------------------------------------------
- // | ThinkAdmin
- // +----------------------------------------------------------------------
- // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
- // +----------------------------------------------------------------------
- // | 官方网站: http://demo.thinkadmin.top
- // +----------------------------------------------------------------------
- // | 开源协议 ( https://mit-license.org )
- // +----------------------------------------------------------------------
- // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
- // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
- // +----------------------------------------------------------------------
- namespace app\approve\controller;
- use app\common\constant\CommonConstant;
- use app\common\constant\MaintainConstant;
- use app\common\model\ApproveMaintainUser as model;
- use library\Controller;
- /**
- * 维修人员
- */
- class ApproveMaintainUser extends Controller
- {
- /**
- * 绑定数据表
- * @var string
- */
- protected $table = 'ApproveMaintainUser';
- /**
- * 控制器初始化
- */
- protected function initialize()
- {
- $this->get_type_title_list = MaintainConstant::get_type_title_list();
- }
- /**
- * 列表
- * @auth true
- * @menu true
- * @throws \think\Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function index()
- {
- $name = input('name');
- $mobile = input('mobile');
- $this->title = '维修人员列表';
- $data = model::field('is_deleted', true)
- ->where('is_deleted', CommonConstant::IS_DELETED_0)
- ->when($name, function ($query) use ($name) {
- $query->where('name', 'like', '%' . $name . '%');
- })
- ->when($mobile, function ($query) use ($mobile) {
- $query->where('mobile', 'like', '%' . $mobile . '%');
- })
- ->with([
- 'log' => function ($query) {
- $query->field('comment,create_at', true);
- }
- ]);
- self::_init($data);
- }
- /**
- * 列表数据处理
- * @param array $data
- * @throws \Exception
- */
- protected function _index_page_filter(&$data)
- {
- if($data) {
- foreach ($data as &$value) {
- $comment_count = !empty($value['log']) ? count($value['log']) : 0;
- $comment_score = 0;
- if (!empty($value['log'])) {
- foreach ($value['log'] as $k => $v) {
- $comment_score = bcadd($comment_score, $v['comment_score']);
- }
- }
- $log_score = $comment_score > 0 ? bcdiv($comment_score, $comment_count, 1) : 0;
- $value['comment_count'] = $comment_count;
- $value['comment_score'] = $comment_score;
- $value['log_score'] = $log_score;
- }
- }
- }
- /**
- * 添加
- * @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->title = '添加';
- $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->title = '编辑';
- $this->_form($this->table, 'form');
- }
- /**
- * 表单处理
- * @param array $data
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- protected function _form_filter(&$data)
- {
- if ($this->request->isGet()) {
- }
- if ($this->request->isPost()) {
- }
- }
- /**
- * 删除
- * @auth true
- * @throws \think\Exception
- * @throws \think\exception\PDOException
- */
- public function remove()
- {
- $this->applyCsrfToken();
- $this->_delete($this->table);
- }
- }
|