初始上传

This commit is contained in:
2026-04-04 17:27:12 +08:00
parent 4d80d28eb4
commit b7e11774ee
11191 changed files with 1588469 additions and 0 deletions

View File

@@ -0,0 +1,89 @@
<?php
/**
* Niushop商城系统 - 团队十年电商经验汇集巨献!
* =========================================================
* Copy right 2019-2029 杭州牛之云科技有限公司, 保留所有权利。
* ----------------------------------------------
* 官方网址: https://www.niushop.com
* =========================================================
*/
namespace app\shop\controller;
use app\model\goods\GoodsService as GoodsServiceModel;
class Goodsservice extends BaseShop
{
/**
* 商品服务列表
*/
public function lists()
{
if (request()->isJson()) {
$page_index = input('page', 1);
$page_size = input('page_size', PAGE_LIST_ROWS);
$search_keys = input('search_keys', '');
$condition = [];
$condition[] = [ 'site_id', '=', $this->site_id ];
if (!empty($search_keys)) {
$condition[] = [ 'service_name', 'like', '%' . $search_keys . '%' ];
}
$goods_attr_model = new GoodsServiceModel();
$list = $goods_attr_model->getServicePageList($condition, $page_index, $page_size);
return $list;
} else {
return $this->fetch('goodsservice/lists');
}
}
/**
* 商品服务添加
*/
public function add()
{
if (request()->isJson()) {
$data = [
'site_id' => $this->site_id,
'service_name' => input('service_name', ''),
'desc' => input('desc', 0),
'icon' => input('icon', '')
];
$model = new GoodsServiceModel();
$res = $model->addService($data);
return $res;
}
}
/**
* 商品服务编辑
*/
public function edit()
{
if (request()->isJson()) {
$id = input('id', '');
$data = [
'service_name' => input('service_name', ''),
'desc' => input('desc', 0),
'icon' => input('icon', '')
];
$model = new GoodsServiceModel();
$res = $model->editService($data, [ [ 'id', '=', $id ], [ 'site_id', '=', $this->site_id ] ]);
return $res;
}
}
/**
* 商品服务删除
*/
public function delete()
{
if (request()->isJson()) {
$id = input('id', 0);
$model = new GoodsServiceModel();
$result = $model->deleteService([ [ 'id', '=', $id ], [ 'site_id', '=', $this->site_id ] ]);
return $result;
}
}
}