34 lines
518 B
PHP
34 lines
518 B
PHP
<?php
|
|
|
|
namespace addon\saas\shop\controller;
|
|
class Kpi extends SaasBase
|
|
{
|
|
public function list()
|
|
{
|
|
if (request()->isAjax()) {
|
|
|
|
|
|
|
|
|
|
return success();
|
|
}
|
|
$this->forthMenu();
|
|
return $this->fetch('kpi/list');
|
|
}
|
|
|
|
|
|
/***
|
|
* 奖励记录
|
|
* @return array|mixed
|
|
*/
|
|
public function reward()
|
|
{
|
|
if (request()->isAjax()) {
|
|
|
|
return success();
|
|
}
|
|
$this->forthMenu();
|
|
return $this->fetch('reward/list');
|
|
}
|
|
|
|
} |