添加网站文件
This commit is contained in:
25
application/admin/controller/Walkthorder.php
Normal file
25
application/admin/controller/Walkthorder.php
Normal file
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
namespace app\admin\controller;
|
||||
use app\admin\logic\OrderautoLogic;
|
||||
use app\admin\logic\OrderchanelLogic;
|
||||
use app\admin\logic\{ LeaveLogic};
|
||||
use app\admin\logic\GoodsCategoryLogic;
|
||||
|
||||
class Walkthorder extends AdminBase
|
||||
{
|
||||
|
||||
//预排订单等待执行
|
||||
|
||||
public function lists(){
|
||||
|
||||
if ($this->request->isAjax()) {
|
||||
$get = $this->request->get();
|
||||
$this->_success('获取成功', OrderautoLogic::lists($get));
|
||||
}
|
||||
$type = \app\common\model\Ad::getAdTypeDesc(true);
|
||||
$this->assign('ordertypelist',OrderchanelLogic::infolist());
|
||||
$this->assign('type', $type);
|
||||
return $this->fetch();
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user