Account.php 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <?php
  2. namespace app\admin\controller;
  3. use app\admin\logic\AccountLogic;
  4. use app\BaseController;
  5. use think\exception\ValidateException;
  6. use think\facade\Config;
  7. use think\facade\Validate;
  8. class Account extends BaseController
  9. {
  10. //账户列表
  11. public function list()
  12. {
  13. $param = $this->request->only(['page' => 1, 'size' => 10, 'username' => '', 'name' => '', 'mobile' => ''], 'post');
  14. return AccountLogic::list($param);
  15. }
  16. //添加账户
  17. public function add()
  18. {
  19. $param = $this->request->only(['company_id', 'card_id', 'username', 'starttime', 'expiretime', 'video_ids', 'mobile' => '', 'name' => '', 'remark' => ''], 'post');
  20. $val = Validate::rule(Config::get('validate_rules.AccountAdd'));
  21. if (!$val->check($param)) throw new ValidateException($val->getError());
  22. return AccountLogic::add($param);
  23. }
  24. //账户详情
  25. public function read()
  26. {
  27. $id = $this->request->post('id/d', 0);
  28. return AccountLogic::read($id);
  29. }
  30. //编辑账户
  31. public function edit()
  32. {
  33. $param = $this->request->only(['id', 'company_id', 'card_id', 'username', 'starttime', 'expiretime', 'video_ids', 'mobile' => '', 'name' => '', 'remark' => ''], 'post');
  34. $val = Validate::rule(array_merge(Config::get('validate_rules.AccountAdd'), ['id' => 'require|number|gt:0']));
  35. if (!$val->check($param)) throw new ValidateException($val->getError());
  36. return AccountLogic::edit($param);
  37. }
  38. //批量添加账户
  39. public function batchAdd()
  40. {
  41. $param = $this->request->only(['company_id', 'card_id', 'username_prefix', 'suffix_start', 'suffix_end', 'starttime', 'expiretime', 'video_ids'], 'post');
  42. $val = Validate::rule(Config::get('validate_rules.AccountBatchAdd'));
  43. if (!$val->check($param)) throw new ValidateException($val->getError());
  44. return AccountLogic::batchAdd($param);
  45. }
  46. //删除
  47. public function delete()
  48. {
  49. $id = $this->request->post('id/d', 0);
  50. return AccountLogic::delete($id);
  51. }
  52. }