Home  >  Article  >  Backend Development  >  TP5-each function in paging class

TP5-each function in paging class

不言
不言Original
2018-04-20 10:21:005881browse

The content of this article is about the each function in the TP5-paging class. It has a certain reference value. Now I share it with everyone. Friends in need can refer to it

$list = Db::name('merchant_order_detail')->alias('a')->join('merchant_order b', 'b.id = a.order_id')->where($whereStr)->field($file)->order($order)->paginate(Config::get('list_rows'), false, ['page' => $page,'query'=>$param])->each(function($item, $key){
            $item['loglist'] = Db::name('merchant_order_detail_log')->where("order_detail_id=".$item['id']." and amount>0")->field('order_sn')->select();            return $item;
        });
$list = Db::name('merchant_order')->alias('a')
                ->join('merchant_member mm', 'mm.id=a.member_id', 'LEFT')
                ->where($whereStr)
                ->field($file)
                ->order(['a.create_time' => 'desc'])
                ->paginate(Config::get('list_rows'), false, ['page' => $page,'query'=>$param])
                ->each(function($item,$key){                    if($item['pid'] == 0) {
                        $item['company_name'] = Db::name('merchant')->where(['member_id'=>$item['member_id']])->value('company_name');
                        $item['sub_company_name'] = Db::name('merchant')->where(['member_id'=>$item['member_id']])->value('sub_company_name');
                        $item['corporation'] = Db::name('merchant')->where(['member_id'=>$item['member_id']])->value('corporation');
                    } else {
                        $item['company_name'] = Db::name('merchant')->where(['member_id'=>$item['pid']])->value('company_name');
                        $item['sub_company_name'] = Db::name('merchant')->where(['member_id'=>$item['pid']])->value('sub_company_name');
                        $item['corporation'] = Db::name('merchant')->where(['member_id'=>$item['pid']])->value('corporation');
                    }                    return $item;
                });
$merchant_member_list = Db::name('merchant_member')->alias('mm')
                                ->join('merchant m', 'm.member_id = mm.id', 'LEFT')
                                ->join('merchant_type mt', 'm.merchant_type_id = mt.id', 'LEFT')
                                ->where($where)
                                ->field($field)
                                ->order(['mm.is_lock' => 'asc','mm.create_time' => 'desc'])
                                ->paginate(Config::get('list_rows'), false, ['page' => $page, 'query' => $param])
                                ->each(function($item, $key){                                    if($item['mt_pid']=='0'){
                                        $item['cate'] = '一级';
                                    } else {
                                        $item['cate'] = Db::name('merchant_type')->where("id=".$item['mt_pid'])->value('name');
                                    }                                    return $item;
                                });

Related recommendations:

How to hide index.php in TP5


The above is the detailed content of TP5-each function in paging class. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn