25 lines
674 B
PHP
25 lines
674 B
PHP
<?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();
|
|
}
|
|
|
|
} |