Notice.php 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\store\controller;
  15. use library\Controller;
  16. use think\Db;
  17. /**
  18. * 系统消息管理
  19. * Class GoodsCate
  20. * @package app\store\controller
  21. */
  22. class Notice extends Controller
  23. {
  24. /**
  25. * 绑定数据表
  26. * @var string
  27. */
  28. protected $table = 'store_notice';
  29. /**
  30. * 系统消息管理
  31. * @auth true
  32. * @menu true
  33. * @throws \think\Exception
  34. * @throws \think\db\exception\DataNotFoundException
  35. * @throws \think\db\exception\ModelNotFoundException
  36. * @throws \think\exception\DbException
  37. * @throws \think\exception\PDOException
  38. */
  39. public function index()
  40. {
  41. $this->title = '系统消息管理';
  42. $query = $this->_query($this->table)->like('title')->equal('status');
  43. $query->where(['is_deleted' => '0'])->order('sort desc,id desc')->page();
  44. }
  45. /**
  46. * 添加系统消息
  47. * @auth true
  48. * @throws \think\Exception
  49. * @throws \think\db\exception\DataNotFoundException
  50. * @throws \think\db\exception\ModelNotFoundException
  51. * @throws \think\exception\DbException
  52. * @throws \think\exception\PDOException
  53. */
  54. public function add()
  55. {
  56. $this->title = '添加系统消息';
  57. if($this->request->isPost()){
  58. //全部用户发方
  59. $user_ids=Db::table('store_member')->where('news_switch',1)->where('status',1)->where('is_deleted',0)->column('id');
  60. foreach ($user_ids as $k=>$v){
  61. $data=[];
  62. $data['user_id'] = $v;
  63. $data['content'] = $this->request->post('title');
  64. Db::name('store_news')->insert($data);
  65. }
  66. Db::name('store_notice')->insert(array('title'=>$this->request->post('title')));
  67. $this->success('添加成功');
  68. }else{
  69. $this->_form($this->table, 'form');
  70. }
  71. }
  72. /**
  73. * 编辑系统消息
  74. * @auth true
  75. * @throws \think\Exception
  76. * @throws \think\db\exception\DataNotFoundException
  77. * @throws \think\db\exception\ModelNotFoundException
  78. * @throws \think\exception\DbException
  79. * @throws \think\exception\PDOException
  80. */
  81. public function edit()
  82. {
  83. $this->title = '编辑系统消息';
  84. $this->_form($this->table, 'form');
  85. }
  86. /**
  87. * 表单数据处理
  88. * @param array $data
  89. * @throws \think\Exception
  90. * @throws \think\db\exception\DataNotFoundException
  91. * @throws \think\db\exception\ModelNotFoundException
  92. * @throws \think\exception\DbException
  93. * @throws \think\exception\PDOException
  94. */
  95. protected function _form_filter(&$data)
  96. {
  97. if($this->request->isPost()){
  98. //全部用户发方
  99. $user_ids=Db::table('store_member')->where('status',1)->where('is_deleted',0)->column('id');
  100. foreach ($user_ids as $k=>$v){
  101. $data=[];
  102. $data['user_id'] = $v;
  103. $data['content'] = $this->request->post('title');
  104. Db::name('store_news')->insert($data);
  105. }
  106. }else{
  107. $this->member=Db::table('store_member')->field('id,name')->where('status',1)->where('is_deleted',0)->select();
  108. $this->member_count=count($this->member);
  109. }
  110. }
  111. /**
  112. * 禁用系统消息
  113. * @auth true
  114. * @throws \think\Exception
  115. * @throws \think\exception\PDOException
  116. */
  117. public function forbid()
  118. {
  119. $this->_save($this->table, ['status' => '0']);
  120. }
  121. /**
  122. * 启用系统消息
  123. * @auth true
  124. * @throws \think\Exception
  125. * @throws \think\exception\PDOException
  126. */
  127. public function resume()
  128. {
  129. $this->_save($this->table, ['status' => '1']);
  130. }
  131. /**
  132. * 删除系统消息
  133. * @auth true
  134. * @throws \think\Exception
  135. * @throws \think\exception\PDOException
  136. */
  137. public function remove()
  138. {
  139. $this->_delete($this->table);
  140. }
  141. }