|
@@ -7,7 +7,7 @@ use library\Controller;
|
|
|
use think\Db;
|
|
|
|
|
|
/**
|
|
|
- * 供货商商品
|
|
|
+ * 供货商产品
|
|
|
* Class SupplierGoods
|
|
|
* @package app\mall\controller
|
|
|
*/
|
|
@@ -21,7 +21,7 @@ class SupplierGoods extends Controller
|
|
|
protected $table = 'SupplierGoods';
|
|
|
|
|
|
/**
|
|
|
- * 供货商商品列表
|
|
|
+ * 供货商产品列表
|
|
|
* @auth true
|
|
|
* @menu true
|
|
|
* @throws \think\Exception
|
|
@@ -32,7 +32,7 @@ class SupplierGoods extends Controller
|
|
|
*/
|
|
|
public function index()
|
|
|
{
|
|
|
- $this->title = '供货商商品列表';
|
|
|
+ $this->title = '供货商产品列表';
|
|
|
$supplier_id = input('get.supplier_id');
|
|
|
$name = input('get.name');
|
|
|
$company_id = input('get.company_id');
|
|
@@ -76,7 +76,7 @@ class SupplierGoods extends Controller
|
|
|
|
|
|
|
|
|
/**
|
|
|
- * 添加供货商商品
|
|
|
+ * 添加供货商产品
|
|
|
* @auth true
|
|
|
* @menu true
|
|
|
* @throws \think\Exception
|
|
@@ -87,14 +87,14 @@ class SupplierGoods extends Controller
|
|
|
*/
|
|
|
public function add()
|
|
|
{
|
|
|
- $this->title = '添加供货商商品';
|
|
|
+ $this->title = '添加供货商产品';
|
|
|
$this->supplier_id = input('supplier_id');
|
|
|
$this->_form($this->table, 'form');
|
|
|
}
|
|
|
|
|
|
|
|
|
/**
|
|
|
- * 编辑供货商商品
|
|
|
+ * 编辑供货商产品
|
|
|
* @auth true
|
|
|
* @menu true
|
|
|
* @throws \think\Exception
|
|
@@ -105,7 +105,7 @@ class SupplierGoods extends Controller
|
|
|
*/
|
|
|
public function edit()
|
|
|
{
|
|
|
- $this->title = '编辑供货商商品';
|
|
|
+ $this->title = '编辑供货商产品';
|
|
|
$this->supplier_id = input('supplier_id');
|
|
|
$this->_form($this->table, 'form');
|
|
|
}
|