You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1010 B
38 lines
1010 B
9 months ago
|
<?php
|
||
|
namespace app\api\controller;
|
||
|
|
||
|
use app\common\controller\Api;
|
||
|
use app\admin\model\content\Notice as noticeModel;
|
||
|
|
||
|
class Notice extends Api {
|
||
|
protected $noNeedLogin = ['*'];
|
||
|
protected $noNeedRight = ['*'];
|
||
|
protected $model;
|
||
|
|
||
|
public function _initialize() {
|
||
|
parent::_initialize();
|
||
|
|
||
|
$this->model = new noticeModel();
|
||
|
}
|
||
|
|
||
|
public function list() {
|
||
|
$list = $this->model->where('status', 1)->paginate(10);
|
||
|
foreach ($list as &$row) {
|
||
|
$row['image'] = $this->request->domain().$row['image'];
|
||
|
}
|
||
|
$this->success('公告列表', $list);
|
||
|
}
|
||
|
|
||
|
public function detail() {
|
||
|
$id = $this->request->param('id');
|
||
|
if (empty($id)) {
|
||
|
$this->error('参数异常');
|
||
|
}
|
||
|
$detail = $this->model
|
||
|
->where('status', 1)
|
||
|
->where('id', $id)
|
||
|
->find();
|
||
|
$detail['image'] = $this->request->domain().$detail['image'];
|
||
|
$this->success('success', $detail);
|
||
|
}
|
||
|
}
|