1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?php
- namespace app\admin\controller;
- use think\App;
- use think\Db;
- class CompanyGoodsLog extends Auth
- {
- public function __construct(App $app = null) {
- parent::__construct($app);
- $this->model = new \app\common\model\MateGoodsLog();
- $this->table = $this->model->table;
- }
- public function index(){
- if(request()->isAjax()){
- //分页参数
- $length = input('rows',10,'intval'); //每页条数
- $page = input('page',1,'intval'); //第几页
- $start = ($page - 1) * $length; //分页开始位置
- //排序
- $sortRow = input('sidx','id','trim'); //排序列
- $sort = input('sord','desc','trim'); //排序方式
- $order = $sortRow.' '.$sort;
- $title = input('title','','trim');
- if($title){
- $goods_id = db('mate_goods')
- ->where('title','like','%'.$title.'%')
- ->column('id');
- $map[] = ['goods_id','in',$goods_id];
- }
- $enable = input('enable','','trim');
- if($enable != ''){
- $map[] = ['enable','=',$enable];
- }
- $map[] = ['org_id','=',$this->orgId];
- $map= empty($map) ? true: $map;
- //数据查询
- $lists =db($this->table)
- ->where($map)->limit($start,$length)
- ->order($order)->select();
- foreach ($lists as $k=>$v){
- $lists[$k]['title'] = db('mate_goods')
- ->where('id',$v['goods_id'])
- ->value('title');
- $lists[$k]['userName'] = db('user')
- ->where('id',$v['user_id'])
- ->value('real_name');
- }
- //数据返回
- $totalCount = db($this->table)->where($map)->count();
- $totalPage = ceil($totalCount/$length);
- $result['page'] = $page;
- $result['total'] = $totalPage;
- $result['records'] = $totalCount;
- $result['rows'] = $lists;
- return json($result);
- }else{
- $this->assign('meta_title','处置记录');
- return $this->fetch();
- }
- }
- }
|