b01baeda by yangjianbin

init

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