Files
2022-01-20 09:51:41 +08:00

36 lines
750 B
PHP

<?php
defined('BASEPATH') OR exit('No direct script access allowed');
/**
* Notes:跳转小程序
* Created on: 2022/1/19 11:19
* Created by: dengbw
*/
class Jumpmp extends CI_Controller
{
public function __construct()
{
parent::__construct();
}
/**
* Notes:
* https://liche-dev.xiaoyu.com/h5/jumpmp
* https://www.liche.cn/h5/jumpmp
* Created on: 2022/1/19 11:19
* Created by: dengbw
*/
public function index()
{
$params = $this->input->get();
if ($params['app_id' == 1]) {
$title = '狸车';
} else {
$title = '狸车宝';
}
$data = ['title' => $title];
$this->load->view('/h5/jumpmp/index', $data);
}
}