|
...
|
...
|
@@ -12,6 +12,7 @@ use App\Models\ASide\APublicModel; |
|
|
|
use App\Models\Channel\Channel;
|
|
|
|
use App\Models\Com\KeywordVideoTask;
|
|
|
|
use App\Models\Domain\DomainInfo;
|
|
|
|
use App\Models\HomeCount\AfterCount;
|
|
|
|
use App\Models\Manage\ManageHr;
|
|
|
|
use App\Models\Product\Category;
|
|
|
|
use App\Models\Product\Keyword;
|
|
...
|
...
|
@@ -570,4 +571,15 @@ class OptimizeController extends BaseController |
|
|
|
$this->response('success',Code::SUCCESS,$list);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @remark :售后数据统计
|
|
|
|
* @name :getAfterCount
|
|
|
|
* @author :lyh
|
|
|
|
* @method :post
|
|
|
|
* @time :2025/3/27 17:21
|
|
|
|
*/
|
|
|
|
public function getAfterCount(AfterCount $afterCount){
|
|
|
|
$list = $afterCount->lists($this->map,$this->page,$this->row);
|
|
|
|
$this->response('success',Code::SUCCESS,$list);
|
|
|
|
}
|
|
|
|
} |
...
|
...
|
|