abstract:index控制器中的代码<?phpnamespace app\admin\controller;use think\Controller;class Index extends Controller{ public function index() { return $this->
index控制器中的代码
<?php
namespace app\admin\controller;
use think\Controller;
class Index extends Controller
{
public function index()
{
return $this->fetch('index');
}
public function welcome(){
return $this->fetch();
}
}
2.运行效果图
Correcting teacher:查无此人Correction time:2019-05-17 10:02:22
Teacher's summary:完成的不错。后台cms管理系统,就是对数据进行操作。操作越简单越好。继续加油