You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
yanzong/app/store/controller/Merchant.php

120 lines
3.3 KiB

7 months ago
<?php
// +----------------------------------------------------------------------
// | 萤火商城系统 [ 致力于通过产品和服务,帮助商家高效化开拓市场 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2017~2023 https://www.yiovo.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed 这不是一个自由软件,不允许对程序代码以任何形式任何目的的再发行
// +----------------------------------------------------------------------
// | Author: 萤火科技 <admin@yiovo.com>
// +----------------------------------------------------------------------
declare (strict_types=1);
namespace app\store\controller;
use app\common\model\store\StoreSettle;
use think\response\Json;
use app\store\model\Merchant as MerchantModel;
use app\common\model\Channel;
7 months ago
use app\store\model\store\User as StoreUserModel;
7 months ago
/**
* 商户ID、商店ID 隔离商城里面的商户
* Class Store
* @package app\store\controller
*/
class Merchant extends Controller
{
7 months ago
/**
* 获取当前登录的商城信息
* @return Json
*/
public function userinfo(): Json
{
$model = new StoreUserModel;
$list = $model->getList($this->request->param());
print_r($list);die;
$model2 = new MerchantModel;
$list = $model2->getList($this->request->param());
return $this->renderSuccess(['storeInfo' => $model2]);
}
7 months ago
/**
* 获取当前登录的商城信息
* @return Json
*/
public function info(): Json
{
// 商城详情
$model = MerchantModel::detail($this->storeId);
return $this->renderSuccess(['storeInfo' => $model]);
}
/**
* 更新商城信息
* @return Json
*/
public function edit(): Json
{
// 商城详情
7 months ago
$model = MerchantModel::detail($this->postForm()['merchant_id']);
7 months ago
// 更新记录
if (!$model->edit($this->postForm())) {
return $this->renderError($model->getError() ?: '更新失败');
}
return $this->renderSuccess('更新成功');
7 months ago
}
/**
* 更新商城信息
* @return Json
*/
public function add(): Json
{
// 新增记录
$model = new MerchantModel;
$data = $this->postForm();
if ($model->add($data)) {
return $this->renderSuccess('添加成功');
}
return $this->renderError($model->getError() ?: '添加失败');
7 months ago
}
7 months ago
/**
* 删除门店
* @param int $shopId
* @return Json
*/
public function delete(int $merchantId): Json
{
// 门店详情
$model = MerchantModel::detail($merchantId);
if (!$model->setDelete()) {
return $this->renderError($model->getError() ?: '删除失败');
}
return $this->renderSuccess('删除成功');
}
7 months ago
/**
* 列表
*/
public function list(): Json {
7 months ago
$model = new MerchantModel;
$list = $model->getList($this->request->param());
7 months ago
return $this->renderSuccess(compact('list'));
}
/**
* 门店入驻详情
*/
public function settleDetail(int $id): Json
{
$detail = MerchantModel::get($id);
return $this->renderSuccess(compact('detail'));
}
}