123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- namespace app\admin\controller\store;
- use app\admin\controller\AuthController;
- use traits\CurdControllerTrait;
- use service\JsonService as Json;
- use service\UploadService as Upload;
- use think\Request;
- use app\admin\model\store\StoreProductReply as ProductReplyModel;
- use think\Url;
- /**
- * 评论管理 控制器
- * Class StoreProductReply
- * @package app\admin\controller\store
- */
- class StoreProductReply extends AuthController
- {
- use CurdControllerTrait;
- /**
- * 显示资源列表
- *
- * @return \think\Response
- */
- public function index()
- {
- $where = parent::getMore([
- ['is_reply', ''],
- ['comment', ''],
- ], $this->request);
- $product_id = input('product_id', 0);
- if ($product_id)
- $where['product_id'] = $product_id;
- else
- $where['product_id'] = 0;
- $this->assign('where', $where);
- $this->assign(ProductReplyModel::systemPage($where));
- return $this->fetch();
- }
- /**
- * @param $id
- * @return \think\response\Json|void
- */
- public function delete($id)
- {
- if (!$id) return $this->failed('数据不存在');
- $data['is_del'] = 1;
- if (!ProductReplyModel::edit($data, $id))
- return Json::fail(ProductReplyModel::getErrorInfo('删除失败,请稍候再试!'));
- else
- return Json::successful('删除成功!');
- }
- public function set_reply(Request $request)
- {
- $data = parent::postMore([
- 'id',
- 'content',
- ], $request);
- if (!$data['id']) return Json::fail('参数错误');
- if ($data['content'] == '') return Json::fail('请输入回复内容');
- $save['merchant_reply_content'] = $data['content'];
- $save['merchant_reply_time'] = time();
- $save['is_reply'] = 2;
- $res = ProductReplyModel::edit($save, $data['id']);
- if (!$res)
- return Json::fail(ProductReplyModel::getErrorInfo('回复失败,请稍候再试!'));
- else
- return Json::successful('回复成功!');
- }
- public function edit_reply(Request $request)
- {
- $data = parent::postMore([
- 'id',
- 'content',
- ], $request);
- if (!$data['id']) return Json::fail('参数错误');
- if ($data['content'] == '') return Json::fail('请输入回复内容');
- $save['merchant_reply_content'] = $data['content'];
- $save['merchant_reply_time'] = time();
- $save['is_reply'] = 2;
- $res = ProductReplyModel::edit($save, $data['id']);
- if (!$res)
- return Json::fail(ProductReplyModel::getErrorInfo('回复失败,请稍候再试!'));
- else
- return Json::successful('回复成功!');
- }
- }
|