完成供应链模块初始框架
This commit is contained in:
parent
0f6bc586d2
commit
49080c9b0b
60
app/admin/controller/supplychain/Index.php
Normal file
60
app/admin/controller/supplychain/Index.php
Normal file
@ -0,0 +1,60 @@
|
||||
<?php
|
||||
/**
|
||||
* @copyright Copyright (c) 2021 勾股工作室
|
||||
* @license https://opensource.org/licenses/Apache-2.0
|
||||
* @link https://www.gougucms.com
|
||||
*/
|
||||
namespace app\admin\controller\supplychain;
|
||||
|
||||
use app\admin\BaseController;
|
||||
use think\facade\Db;
|
||||
use think\facade\View;
|
||||
|
||||
class Index extends BaseController
|
||||
{
|
||||
public function __construct()
|
||||
{
|
||||
$this->adminInfo = get_login_admin();
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* 供应链团队列表
|
||||
*
|
||||
*/
|
||||
public function Index()
|
||||
{
|
||||
return view();
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* 新增
|
||||
*
|
||||
*/
|
||||
public function add()
|
||||
{
|
||||
return view();
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* 编辑
|
||||
*
|
||||
*/
|
||||
public function edit()
|
||||
{
|
||||
return view();
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* 删除
|
||||
*
|
||||
*/
|
||||
public function delete()
|
||||
{
|
||||
return view();
|
||||
}
|
||||
|
||||
}
|
71
app/admin/controller/supplychain/Merchant.php
Normal file
71
app/admin/controller/supplychain/Merchant.php
Normal file
@ -0,0 +1,71 @@
|
||||
<?php
|
||||
/**
|
||||
* @copyright Copyright (c) 2021 勾股工作室
|
||||
* @license https://opensource.org/licenses/Apache-2.0
|
||||
* @link https://www.gougucms.com
|
||||
*/
|
||||
namespace app\admin\controller\supplychain;
|
||||
|
||||
use app\admin\BaseController;
|
||||
use think\facade\Db;
|
||||
use think\facade\View;
|
||||
|
||||
class Merchant extends BaseController
|
||||
{
|
||||
public function __construct()
|
||||
{
|
||||
$this->adminInfo = get_login_admin();
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* 供应链团队列表
|
||||
*
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
return view();
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* 交易订单
|
||||
*
|
||||
*/
|
||||
public function bill()
|
||||
{
|
||||
return view();
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* 新增
|
||||
*
|
||||
*/
|
||||
public function add()
|
||||
{
|
||||
return view();
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* 编辑
|
||||
*
|
||||
*/
|
||||
public function edit()
|
||||
{
|
||||
return view();
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* 删除
|
||||
*
|
||||
*/
|
||||
public function delete()
|
||||
{
|
||||
return view();
|
||||
}
|
||||
|
||||
}
|
0
app/admin/view/supplychain/index/index.html
Normal file
0
app/admin/view/supplychain/index/index.html
Normal file
0
app/admin/view/supplychain/merchant/bill.html
Normal file
0
app/admin/view/supplychain/merchant/bill.html
Normal file
0
app/admin/view/supplychain/merchant/index.html
Normal file
0
app/admin/view/supplychain/merchant/index.html
Normal file
Loading…
x
Reference in New Issue
Block a user