12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <?php
- namespace app\admin\controller;
- use app\admin\logic\AccountLogic;
- use app\BaseController;
- use think\exception\ValidateException;
- use think\facade\Config;
- use think\facade\Validate;
- class Account extends BaseController
- {
- //账户列表
- public function list()
- {
- $param = $this->request->only(['page' => 1, 'size' => 10, 'username' => '', 'name' => '', 'mobile' => ''], 'post');
- return AccountLogic::list($param);
- }
- //添加账户
- public function add()
- {
- $param = $this->request->only(['company_id', 'card_id', 'username', 'starttime', 'expiretime', 'video_ids', 'mobile' => '', 'name' => '', 'remark' => ''], 'post');
- $val = Validate::rule(Config::get('validate_rules.AccountAdd'));
- if (!$val->check($param)) throw new ValidateException($val->getError());
- return AccountLogic::add($param);
- }
- //账户详情
- public function read()
- {
- $id = $this->request->post('id/d', 0);
- return AccountLogic::read($id);
- }
- //编辑账户
- public function edit()
- {
- $param = $this->request->only(['id', 'company_id', 'card_id', 'username', 'starttime', 'expiretime', 'video_ids', 'mobile' => '', 'name' => '', 'remark' => ''], 'post');
- $val = Validate::rule(array_merge(Config::get('validate_rules.AccountAdd'), ['id' => 'require|number|gt:0']));
- if (!$val->check($param)) throw new ValidateException($val->getError());
- return AccountLogic::edit($param);
- }
- //批量添加账户
- public function batchAdd()
- {
- $param = $this->request->only(['company_id', 'card_id', 'username_prefix', 'suffix_start', 'suffix_end', 'starttime', 'expiretime', 'video_ids'], 'post');
- $val = Validate::rule(Config::get('validate_rules.AccountBatchAdd'));
- if (!$val->check($param)) throw new ValidateException($val->getError());
- return AccountLogic::batchAdd($param);
- }
- //删除
- public function delete()
- {
- $id = $this->request->post('id/d', 0);
- return AccountLogic::delete($id);
- }
- }
|