123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 |
- <?php
-
-
- namespace app\admin\controller\shop;
-
-
- use app\admin\logic\shop\CategoryLogic;
- use app\admin\logic\shop\StoreLogic;
- use app\admin\validate\shop\StoreLValidate;
- use app\admin\validate\shop\StoreStatusValidate;
- use app\common\basics\AdminBase;
- use app\common\server\ConfigServer;
- use app\common\server\JsonServer;
- use think\facade\Log;
-
- /**
- * 商家管理
- * Class Store
- * @package app\admin\controller\shop
- */
- class Store extends AdminBase
- {
- /**
- * NOTE: 商家列表
- * @author: 张无忌
- */
- public function lists()
- {
- if ($this->request->isAjax()) {
- $get = $this->request->get();
- $lists = StoreLogic::lists($get);
- return JsonServer::success('获取成功', $lists);
- }
-
- return view('', [
- 'category' => CategoryLogic::getCategory()
- ]);
- }
-
- /**
- * NOTE: 新增商家
- * @author: 张无忌
- */
- public function add()
- {
- if ($this->request->isAjax()) {
- $post = $this->request->post();
- if (empty($post['expire_time'])) {
- $post['expire_time'] = time();
- }
-
- (new StoreLValidate())->goCheck('add', $post);
-
- $lists = StoreLogic::add($post);
- if ($lists === false) {
- $error = StoreLogic::getError() ?: '新增失败';
- return JsonServer::error($error);
- }
- return JsonServer::success('新增成功');
- }
-
- return view('', [
- 'category' => CategoryLogic::getCategory(),
- 'tx_map_key' => ConfigServer::get('map', 'tx_map_key')
- ]);
- }
-
- /**
- * NOTE: 编辑商家
- * @author: 张无忌
- */
- public function edit()
- {
- if ($this->request->isAjax()) {
- (new StoreLValidate())->goCheck('edit');
- $post = $this->request->post();
- if (!empty($post['password'])) {
- (new StoreLValidate())->goCheck('pwd');
- }
-
- $res = StoreLogic::edit($post);
- if ($res === false) {
- $error = StoreLogic::getError() ?: '编辑失败';
- return JsonServer::error($error);
- }
- return JsonServer::success('编辑成功');
- }
-
- $id = $this->request->get('id');
- return view('', [
- 'detail' => StoreLogic::detail($id),
- 'category' => CategoryLogic::getCategory(),
- 'tx_map_key' => ConfigServer::get('map', 'tx_map_key')
- ]);
- }
-
- /**
- * NOTE: 设置商家
- * @author: 张无忌
- */
- public function set()
- {
- if ($this->request->isAjax()) {
- (new StoreLValidate())->goCheck('set');
- $post = $this->request->post();
- $res = StoreLogic::set($post);
-
- if ($res === false) {
- $error = StoreLogic::getError() ?: '设置失败';
- return JsonServer::error($error);
- }
- return JsonServer::success('设置成功');
- }
-
-
-
- $id = $this->request->get('id');
-
- //调用服务套餐
- $sg = StoreLogic::getServerGoods($id);
-
- return view('', [
- 'detail' => StoreLogic::detail($id),
- 'goods_list' => $sg
- ]);
- }
-
- /**
- * NOTE: 编辑账号
- * @author: 张无忌
- */
- public function account()
- {
- if ($this->request->isAjax()) {
- (new StoreLValidate())->goCheck('account');
- $post = $this->request->post();
- if (!empty($post['password'])) {
- (new StoreLValidate())->goCheck('pwd');
- }
-
- $res = StoreLogic::account($post);
- if ($res === false) {
- $error = StoreLogic::getError() ?: '更新失败';
- return JsonServer::error($error);
- }
- return JsonServer::success('更新成功');
- }
-
- $id = $this->request->get('id');
- return view('', [
- 'detail' => StoreLogic::getAccountInfo($id)
- ]);
- }
-
- /**
- * @notes 批量操作
- * @return \think\response\Json|void
- * @author 段誉
- * @date 2022/3/17 10:42
- */
- public function batchOperation()
- {
- if ($this->request->isAjax()) {
- (new StoreStatusValidate())->goCheck();
- $post = $this->request->post();
- $res = StoreLogic::batchOperation($post['ids'], $post['field'], $post['value']);
- if (false === $res) {
- $error = StoreLogic::getError() ?: '操作失败';
- return JsonServer::error($error);
- }
- return JsonServer::success('操作成功');
- }
- }
- }
|