作者 王智

daima

... ... @@ -41,22 +41,20 @@ class SellerTalk extends Backend
$this->relationSearch = true;
//设置过滤方法
$this->request->filter(['strip_tags', 'trim']);
if ($this->request->isAjax())
{
if ($this->request->isAjax()) {
//如果发送的来源是Selectpage,则转发到Selectpage
if ($this->request->request('keyField'))
{
if ($this->request->request('keyField')) {
return $this->selectpage();
}
list($where, $sort, $order, $offset, $limit) = $this->buildparams();
$total = $this->model
->with(['user','seller'])
->with(['user', 'seller'])
->where($where)
->order($sort, $order)
->count();
$list = $this->model
->with(['user','seller'])
->with(['user', 'seller'])
->where($where)
->order($sort, $order)
->limit($offset, $limit)
... ... @@ -64,9 +62,13 @@ class SellerTalk extends Backend
foreach ($list as $row) {
$row->getRelation('user')->visible(['avatar','nickname']);
$row->getRelation('seller')->visible(['title','avatar']);
$row->getRelation('user')->visible(['avatar', 'nickname']);
$row->getRelation('seller')->visible(['title', 'avatar']);
}
// foreach ($list as $k => $v) {
// }
dump($list);
die;
$list = collection($list)->toArray();
$result = array("total" => $total, "rows" => $list);
... ... @@ -74,4 +76,14 @@ class SellerTalk extends Backend
}
return $this->view->fetch();
}
function substr_format($text, $length, $replace = '...', $encoding = 'UTF-8')
{
if ($text && mb_strlen($text, $encoding) > $length) {
return mb_substr($text, 0, $length, $encoding) . $replace;
}
return $text;
}
}
... ...