截流自动化的商城平台
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.

Reply.php 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <?php
  2. namespace app\admin\controller\wechat;
  3. use app\common\basics\AdminBase;
  4. use app\admin\logic\wechat\ReplyLogic;
  5. use app\common\server\JsonServer;
  6. use app\common\server\ConfigServer;
  7. use app\common\model\wechat\Wechat;
  8. use app\admin\validate\wechat\ReplyValidate;
  9. class Reply extends AdminBase
  10. {
  11. public function lists(){
  12. if($this->request->isAjax()){
  13. $get = $this->request->get();
  14. $data = ReplyLogic::lists($get);
  15. return JsonServer::success('', $data);
  16. }
  17. $type_list= Wechat::getCustomReply();
  18. return view('lists', ['type_list' => $type_list]);
  19. }
  20. public function add()
  21. {
  22. if($this->request->isAjax()){
  23. try{
  24. $post = $this->request->post();
  25. validate(ReplyValidate::class)->scene($post['reply_type'])->check($post);
  26. }catch(\think\exception\ValidateException $e) {
  27. return JsonServer::error($e->getError());
  28. }
  29. $result= ReplyLogic::add($post);
  30. if($result) {
  31. return JsonServer::success('新增成功');
  32. }else{
  33. return JsonServer::error('新增失败');
  34. }
  35. }
  36. $type = $this->request->get('type');
  37. $template = 'add_'.$type;
  38. return view($template);
  39. }
  40. public function edit()
  41. {
  42. if($this->request->isAjax()){
  43. try{
  44. $post = $this->request->post();
  45. validate(ReplyValidate::class)->scene($post['reply_type'])->check($post);
  46. }catch(\think\exception\ValidateException $e) {
  47. return JsonServer::error($e->getError());
  48. }
  49. $result= ReplyLogic::edit($post);
  50. if($result) {
  51. return JsonServer::success('编辑成功');
  52. }else{
  53. return JsonServer::error('编辑失败');
  54. }
  55. }
  56. $id = $this->request->get('id');
  57. $detail = ReplyLogic::getReply($id);
  58. $template = 'edit_'.$detail['reply_type'];
  59. return view($template, ['detail' => $detail]);
  60. }
  61. public function del(){
  62. if($this->request->isPost()) {
  63. try{
  64. $post = $this->request->post();
  65. validate(ReplyValidate::class)->scene('del')->check($post);
  66. }catch(\think\exception\ValidateException $e) {
  67. return JsonServer::error($e->getError());
  68. }
  69. $result = ReplyLogic::del($post['id']);
  70. if($result) {
  71. return JsonServer::success('删除成功');
  72. }else{
  73. return JsonServer::error('删除失败');
  74. }
  75. }else{
  76. return JsonServer::error('请求类型错误');
  77. }
  78. }
  79. public function changeFields(){
  80. $pk_value = $this->request->post('id');
  81. $field = $this->request->post('field');
  82. $field_value = $this->request->post('value');
  83. $reply_type = $this->request->post('reply_type');
  84. $result = ReplyLogic::changeFields($pk_value, $field, $field_value,$reply_type);
  85. if ($result) {
  86. return JsonServer::success('修改成功');
  87. }
  88. return JsonServer::error('修改失败');
  89. }
  90. }