审查视图

app/portal/controller/LoadController.php 1.3 KB
王晓刚 authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
<?php
/**
 * Created by PhpStorm.
 * User: Administrator
 * Date: 2019/6/7
 * Time: 16:48
 */

namespace app\portal\controller;


use app\portal\model\IndentModel;
use cmf\controller\HomeBaseController;

class LoadController extends HomeBaseController
{
    public function index(){
        $indentModel = new IndentModel();
        $where['state'] = ['eq',2];
        $data = $indentModel->selectData($where);
        if(!empty($data)){
            foreach($data as $key => $vo){
                $birdController = new BirdController();
                $result = $birdController->getOrder($vo['id']);
            }
        }
    }
王晓刚 authored
28
    public function test(){
王晓刚 authored
29
王晓刚 authored
30
        dump(cache('param'));
王晓刚 authored
31
        dump(cache('result'));
王晓刚 authored
32
        dump(cache('data'));
王晓刚 authored
33
    }
王晓刚 authored
34
    public function notify(){
王晓刚 authored
35
王晓刚 authored
36 37 38 39 40 41 42
        $RequestType = $_POST['RequestType'];
        $RequestData = $_POST['RequestData'];
        if(empty($RequestType)){
            $this->error('error');
        }
        if($RequestType != 101){
            $this->error('error');
王晓刚 authored
43
        }
王晓刚 authored
44 45 46 47 48
        $result = json_decode($RequestData,true);
        cache('result',$result);
        $bird = config('bird');
        $date = date("Y-m-d H:i:s",time());
        $data = '{ "EBusinessID": "test1472267", "UpdateTime": "'.$date.'", "Success": true, "Reason": ""}';
王晓刚 authored
49
        cache('data',$data);
王晓刚 authored
50
        return $data;
王晓刚 authored
51
    }
王晓刚 authored
52
}