CRMEB/application/admin/model/store/StoreProductReply.php
2018-08-22 17:25:10 +08:00

46 lines
1.2 KiB
PHP

<?php
/**
*
* @author: xaboy<365615158@qq.com>
* @day: 2017/11/11
*/
namespace app\admin\model\store;
use traits\ModelTrait;
use basic\ModelBasic;
/**
* 评论管理 model
* Class StoreProductReply
* @package app\admin\model\store
*/
class StoreProductReply extends ModelBasic
{
use ModelTrait;
/**
* @param $where
* @return array
*/
public static function systemPage($where){
$model = new self;
if($where['comment'] != '') $model = $model->where('r.comment','LIKE',"%$where[comment]%");
if($where['is_reply'] != ''){
if($where['is_reply'] >= 0){
$model = $model->where('r.is_reply',$where['is_reply']);
}else{
$model = $model->where('r.is_reply','GT',0);
}
}
if($where['product_id']) $model = $model->where('r.product_id',$where['product_id']);
$model = $model->alias('r')->join('__WECHAT_USER__ u','u.uid=r.uid');
$model = $model->join('__STORE_PRODUCT__ p','p.id=r.product_id');
$model = $model->where('r.is_del',0);
$model = $model->field('r.*,u.nickname,u.headimgurl,p.store_name');
return self::page($model,function($itme){
},$where);
}
}