后台模板总览

Original 2019-06-14 11:01:36 221
abstract:<?php namespace app\admin\controller; use think\Controller; class Index extends Controller {     public function index()    &nb
<?php
namespace app\admin\controller;
use think\Controller;
class Index extends Controller
{
    public function index()
    {
//        halt('执行了');
        return $this->fetch();
    }

    public function welcome()
    {
        return $this->fetch();
    }
}


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

Release Notes

Popular Entries