123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- namespace app\controller\admin\v1\merchant;
- use think\facade\App;
- use app\controller\admin\AuthController;
- use app\services\store\SystemStoreServices;
- /**
- * 门店管理控制器
- * Class SystemAttachment
- * @package app\controller\admin\v1\merchant
- *
- */
- class SystemStore extends AuthController
- {
- /**
- * 构造方法
- * SystemStore constructor.
- * @param App $app
- * @param SystemStoreServices $services
- */
- public function __construct(App $app, SystemStoreServices $services)
- {
- parent::__construct($app);
- $this->services = $services;
- }
- /**
- * 获取门店列表1
- * @return mixed
- */
- public function index()
- {
- $where = $this->request->getMore([
- [['keywords', 's'], ''],
- [['type', 'd'], 0]
- ]);
- return $this->success($this->services->getStoreList($where));
- }
- /**
- * 获取门店头部
- * @return mixed
- */
- public function get_header()
- {
- $count = $this->services->getStoreData();
- return $this->success(compact('count'));
- }
- /**
- * 门店设置
- * @return mixed
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function get_info()
- {
- [$id] = $this->request->getMore([
- [['id', 'd'], 0],
- ], true);
- $info = $this->services->getStoreDispose($id);
- return $this->success(compact('info'));
- }
- /**
- * 位置选择
- * @return mixed
- */
- public function select_address()
- {
- $key = sys_config('tengxun_map_key');
- if (!$key) return $this->fail('提示:前往设置->系统设置->第三方接口 配置腾讯地图KEY');
- return $this->success(compact('key'));
- }
- /**
- * 设置单个门店是否显示
- * @param string $is_show
- * @param string $id
- * @return json
- */
- public function set_show($is_show = '', $id = '')
- {
- ($is_show == '' || $id == '') && $this->fail('缺少参数');
- $res = $this->services->update((int)$id, ['is_show' => (int)$is_show]);
- if ($res) {
- return $this->success($is_show == 1 ? '设置显示成功' : '设置隐藏成功');
- } else {
- return $this->fail($is_show == 1 ? '设置显示失败' : '设置隐藏失败');
- }
- }
- /**
- * 保存修改门店信息
- * param int $id
- * */
- public function save($id = 0)
- {
- $data = $this->request->postMore([
- ['name', ''],
- ['introduction', ''],
- ['image', ''],
- ['phone', ''],
- ['address', ''],
- ['detailed_address', ''],
- ['latlng', ''],
- ['day_time', []],
- ]);
- $this->validate($data, \app\validate\admin\merchant\SystemStoreValidate::class, 'save');
- $data['address'] = implode(',', $data['address']);
- $data['latlng'] = explode(',', $data['latlng']);
- if (!isset($data['latlng'][0]) || !isset($data['latlng'][1])) {
- return $this->fail('请选择门店位置');
- }
- $data['latitude'] = $data['latlng'][0];
- $data['longitude'] = $data['latlng'][1];
- $data['day_time'] = implode(' - ', $data['day_time']);
- unset($data['latlng']);
- if ($data['image'] && strstr($data['image'], 'http') === false) {
- $site_url = sys_config('site_url');
- $data['image'] = $site_url . $data['image'];
- }
- $this->services->saveStore((int)$id, $data);
- return $this->success('操作成功!');
- }
- /**
- * 删除恢复门店
- * @param $id
- */
- public function delete($id)
- {
- if (!$id) return $this->fail('数据不存在');
- $storeInfo = $this->services->get($id);
- if (!$storeInfo) {
- return $this->fail('数据不存在');
- }
- if ($storeInfo->is_del == 1) {
- $storeInfo->is_del = 0;
- if (!$storeInfo->save())
- return $this->fail('恢复失败,请稍候再试!');
- else
- return $this->success('恢复门店成功!');
- } else {
- $storeInfo->is_del = 1;
- if (!$storeInfo->save())
- return $this->fail('删除失败,请稍候再试!');
- else
- return $this->success('删除门店成功!');
- }
- }
- }
|