You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
349 B

  1. <?php
  2. namespace backend\controllers;
  3. use yii\web\Controller;
  4. use Yii;
  5. class RunInfoController extends Controller
  6. {
  7. public function actionGetRunInfo()
  8. {
  9. $user_id = Yii::$app->request->post('user_id','');
  10. $data = [
  11. 'code'=>0,
  12. 'info'=>$user_id
  13. ];
  14. return json_encode($data,true);
  15. }
  16. }