From e1e2fe5710a5b5cd9c19bd3aa99c998a1a613ca8 Mon Sep 17 00:00:00 2001
From: quanwei <419654421@qq.com>
Date: Sat, 17 Jan 2026 17:58:01 +0800
Subject: [PATCH] 团购组件增加筛选
---
admin/app/shop/controller/supplier/Supplier.php | 21 ++++++++++++++++-----
1 files changed, 16 insertions(+), 5 deletions(-)
diff --git a/admin/app/shop/controller/supplier/Supplier.php b/admin/app/shop/controller/supplier/Supplier.php
index 5ffbe04..4bd5561 100644
--- a/admin/app/shop/controller/supplier/Supplier.php
+++ b/admin/app/shop/controller/supplier/Supplier.php
@@ -2,6 +2,7 @@
namespace app\shop\controller\supplier;
+use app\common\enum\supplier\SupplierType;
use app\shop\controller\Controller;
use app\shop\model\supplier\Supplier as SupplierModel;
use app\shop\model\supplier\Apply as ApplyModel;
@@ -23,6 +24,7 @@
*/
public function index()
{
+ $typeList = SupplierType::getTypeName();
//获取该角色管理的区域 by yj 2023.12.20
$shop_supplier_ids = SupplierModel::getSupplierIdsByUser($this->store['user']);
// 供应商列表
@@ -32,7 +34,7 @@
$postData["shop_supplier_ids"] = $shop_supplier_ids;
}
$list = $model->getList($postData);
- return $this->renderSuccess('', compact('list'));
+ return $this->renderSuccess('', compact('list','typeList'));
}
/**
@@ -41,10 +43,17 @@
public function add()
{
$model = new SupplierModel;
- $category = CategoryModel::getALL();
+ $typeList = SupplierType::getTypeName();
+
+ // 获取请求的供应商类型参数
+ $supplier_type = $this->request->get('supplier_type', 10); // 默认为10(实物)
+
+ // 根据供应商类型获取对应的分类
+ $category = CategoryModel::getALL(['category_type'=>$supplier_type]);
+
$region = AreaModel::getALL();
if($this->request->isGet()){
- return $this->renderSuccess('', compact('category','region'));
+ return $this->renderSuccess('', compact('category','region','typeList'));
}
// 新增记录
if ($model->add($this->postData())) {
@@ -60,7 +69,7 @@
public function edit($shop_supplier_id)
{
$model = SupplierModel::detail($shop_supplier_id, ['logo', 'business', 'qyQrcode','superUser.user']);
- $category = CategoryModel::getALL();
+ $category = CategoryModel::getALL(['category_type'=>$model['supplier_type']]);
$region = AreaModel::getALL();
//获取站点设置
$storeValues=SettingModel::getItem('store');
@@ -97,14 +106,16 @@
{
//获取该角色管理的区域 by yj 2023.12.20
$area_ids = SupplierModel::getAreaIdsByUser($this->store['user']);
+ $typeList = SupplierType::getTypeName();
// 供应商列表
$model = new ApplyModel;
$postData = $this->postData();
if(!empty($area_ids)){
$postData["area_ids"] = $area_ids;
}
+
$list = $model->getList($postData);
- return $this->renderSuccess('', compact('list'));
+ return $this->renderSuccess('', compact('list','typeList'));
}
/**
* 供应商待审核详情
--
Gitblit v1.9.2