|
...
|
...
|
@@ -12,6 +12,7 @@ namespace App\Http\Logic\Bside\Scoring; |
|
|
|
use App\Http\Logic\Bside\BaseLogic;
|
|
|
|
use App\Models\Scoring\RatingQuestion;
|
|
|
|
use App\Models\Scoring\ScoringSystem;
|
|
|
|
use App\Models\User\User;
|
|
|
|
use AWS\CRT\Log;
|
|
|
|
|
|
|
|
class RatingLogic extends BaseLogic
|
|
...
|
...
|
@@ -34,7 +35,7 @@ class RatingLogic extends BaseLogic |
|
|
|
public function getRatingRead(){
|
|
|
|
$data = [
|
|
|
|
'company'=>$this->project['company'],
|
|
|
|
'mobile'=>$this->project['mobile'],
|
|
|
|
'mobile'=>$this->user['mobile'],
|
|
|
|
'uptime'=>$this->project['uptime'],
|
|
|
|
'domain'=>$this->user['domain'],
|
|
|
|
'question'=>$this->model->list(['type'=>$this->param['type']]),
|
|
...
|
...
|
@@ -43,6 +44,7 @@ class RatingLogic extends BaseLogic |
|
|
|
return $this->success($data);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @remark :提交统计
|
|
|
|
* @name :ratingSave
|
...
|
...
|
|