Versions.php 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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\admin\controller;
  15. use library\Controller;
  16. /**
  17. * 版本管理
  18. * Class Versions
  19. * @package app\admin\controller
  20. */
  21. class Versions extends Controller
  22. {
  23. /**
  24. * 绑定数据表
  25. * @var string
  26. */
  27. protected $table = 'store_versions';
  28. /**
  29. * 版本管理
  30. * @auth true
  31. * @menu true
  32. * @throws \think\Exception
  33. * @throws \think\db\exception\DataNotFoundException
  34. * @throws \think\db\exception\ModelNotFoundException
  35. * @throws \think\exception\DbException
  36. * @throws \think\exception\PDOException
  37. */
  38. public function index()
  39. {
  40. $this->title = '版本管理';
  41. $query = $this->_query($this->table)->like('title')->equal('status');
  42. $query->where(['is_deleted' => '0'])->order('sort desc,id desc')->page();
  43. }
  44. /**
  45. * 数据列表处理
  46. * @param array $data
  47. * @throws \think\db\exception\DataNotFoundException
  48. * @throws \think\db\exception\ModelNotFoundException
  49. * @throws \think\exception\DbException
  50. */
  51. protected function _index_page_filter(&$data){
  52. }
  53. /**
  54. * 添加版本
  55. * @auth true
  56. * @throws \think\Exception
  57. * @throws \think\db\exception\DataNotFoundException
  58. * @throws \think\db\exception\ModelNotFoundException
  59. * @throws \think\exception\DbException
  60. * @throws \think\exception\PDOException
  61. */
  62. public function add()
  63. {
  64. $this->title = '添加版本';
  65. $this->_form($this->table, 'form');
  66. }
  67. /**
  68. * 编辑版本
  69. * @auth true
  70. * @throws \think\Exception
  71. * @throws \think\db\exception\DataNotFoundException
  72. * @throws \think\db\exception\ModelNotFoundException
  73. * @throws \think\exception\DbException
  74. * @throws \think\exception\PDOException
  75. */
  76. public function edit()
  77. {
  78. $this->title = '编辑版本';
  79. $this->_form($this->table, 'form');
  80. }
  81. /**
  82. * 禁用版本
  83. * @auth true
  84. * @throws \think\Exception
  85. * @throws \think\exception\PDOException
  86. */
  87. public function forbid()
  88. {
  89. $this->_save($this->table, ['status' => '0']);
  90. }
  91. /**
  92. * 启用版本
  93. * @auth true
  94. * @throws \think\Exception
  95. * @throws \think\exception\PDOException
  96. */
  97. public function resume()
  98. {
  99. $this->_save($this->table, ['status' => '1']);
  100. }
  101. /**
  102. * 删除版本
  103. * @auth true
  104. * @throws \think\Exception
  105. * @throws \think\exception\PDOException
  106. */
  107. public function remove()
  108. {
  109. $this->_delete($this->table);
  110. }
  111. }