搭建后台模板

Original 2019-07-20 14:57:12 266
abstract:搭建后台模板<?phpnamespace app\admin\controller;use think\Controller;class Index extends Controller{public function index(){return $this->fetch();}public function welcome(){return $this->fetch();}}

搭建后台模板

<?php

namespace app\admin\controller;

use think\Controller;


class Index extends Controller

{


public function index()

{

return $this->fetch();

}


public function welcome()

{

return $this->fetch();

}

}



Correcting teacher:查无此人Correction time:2019-07-22 09:36:04
Teacher's summary:完成的不错,后台cms管理,页面不需要多绚丽,但是功能要做的方便。继续加油。

Release Notes

Popular Entries