|
...
|
...
|
@@ -13,7 +13,6 @@ class BlogLabelLogic extends BaseLogic |
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
parent::__construct();
|
|
|
|
|
|
|
|
$this->model = new BlogLabelModel();
|
|
|
|
$this->param = $this->requestAll;
|
|
|
|
}
|
|
...
|
...
|
@@ -25,7 +24,6 @@ class BlogLabelLogic extends BaseLogic |
|
|
|
* @method
|
|
|
|
*/
|
|
|
|
public function get_label_name($v){
|
|
|
|
//获取用户已读还是未读
|
|
|
|
$label_info = $this->model->list(['id'=>['in',explode(',',trim($v['label_id'],','))]],'id',['name']);
|
|
|
|
$str = '';
|
|
|
|
foreach ($label_info as $v1){
|
...
|
...
|
|