|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- <?php
-
- namespace app\admin\controller\unishop;
-
- use app\common\controller\Backend;
- use think\Db;
- use think\Exception;
- use think\exception\PDOException;
-
- /**
- * 商品评价管理
- *
- * @icon fa fa-circle-o
- */
- class Evaluate extends Backend
- {
-
- /**
- * Multi方法可批量修改的字段
- */
- protected $multiFields = 'toptime';
-
- /**
- * Evaluate模型对象
- * @var \app\admin\model\unishop\Evaluate
- */
- protected $model = null;
-
- public function _initialize()
- {
- parent::_initialize();
- $this->model = new \app\admin\model\unishop\Evaluate;
- $this->view->assign("rateList", $this->model->getRateList());
- $this->view->assign("anonymousList", $this->model->getAnonymousList());
- }
-
- /**
- * 查看
- */
- public function index()
- {
- //设置过滤方法
- $this->request->filter(['strip_tags']);
- if ($this->request->isAjax()) {
- //如果发送的来源是Selectpage,则转发到Selectpage
- if ($this->request->request('keyField')) {
- return $this->selectpage();
- }
- list($where, $sort, $order, $offset, $limit) = $this->buildparams();
- $total = $this->model
- ->where($where)
- ->count();
-
- $list = $this->model
- ->with(['product'])
- ->where($where)
- ->order($sort, $order)
- ->limit($offset, $limit)
- ->select();
-
- $list = collection($list)->toArray();
- $result = array("total" => $total, "rows" => $list);
-
- return json($result);
- }
- return $this->view->fetch();
- }
-
-
- /**
- * 批量更新
- */
- public function multi($ids = "")
- {
- $ids = $ids ? $ids : $this->request->param("ids");
- if ($ids) {
- if ($this->request->has('params')) {
- parse_str($this->request->post("params"), $values);
- $values = array_intersect_key($values, array_flip(is_array($this->multiFields) ? $this->multiFields : explode(',', $this->multiFields)));
- if ($values || $this->auth->isSuperAdmin()) {
- $adminIds = $this->getDataLimitAdminIds();
- if (is_array($adminIds)) {
- $this->model->where($this->dataLimitField, 'in', $adminIds);
- }
- $count = 0;
- Db::startTrans();
- try {
- $list = $this->model->where($this->model->getPk(), 'in', $ids)->select();
- foreach ($list as $index => $item) {
- if ($values['toptime'] > 0) {
- $values['toptime'] = time();
- }
- $count += $item->allowField(true)->isUpdate(true)->save($values);
- }
- Db::commit();
- } catch (PDOException $e) {
- Db::rollback();
- $this->error($e->getMessage());
- } catch (Exception $e) {
- Db::rollback();
- $this->error($e->getMessage());
- }
- if ($count) {
- $this->success();
- } else {
- $this->error(__('No rows were updated'));
- }
- } else {
- $this->error(__('You have no permission'));
- }
- }
- }
- $this->error(__('Parameter %s can not be empty', 'ids'));
- }
- }
|