b01baeda by yangjianbin

init

1 parent 20ddab94
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Data extends CI_Controller {
/**
* 控制台默认页面
*/
public function index()
{
$this->load->view('data/index');
}
}
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Finance extends CI_Controller {
/**
* 控制台默认页面
*/
public function index()
{
$this->load->view('finance/index');
}
}
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Loan extends CI_Controller {
/**
* 控制台默认页面
*/
public function index()
{
$this->load->view('loan/index');
}
}
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Work extends CI_Controller {
/**
* 控制台默认页面
*/
class Login extends CI_Controller {
public function index()
{
$this->load->view('work/index');
$this->load->view('login');
}
}
}
\ No newline at end of file
......
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Perm extends CI_Controller {
/**
* 控制台默认页面
*/
public function index()
{
$this->load->view('perm/index');
}
}
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class User extends CI_Controller {
/**
* 控制台默认页面
*/
public function index()
{
$this->load->view('user/index');
}
}
<?php
/**
* Created by PhpStorm.
* User: mac01
* Date: 2018/3/11
* Time: 下午3:25
*/
\ No newline at end of file
defined('BASEPATH') OR exit('No direct script access allowed');
class Work extends CI_Controller {
/**
* 控制台默认页面
*/
public function index()
{
$this->load->view('work/index');
}
}
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!