亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

渲染后臺(tái)首頁(yè)和歡迎頁(yè)代碼

Original 2019-03-21 14:14:15 192
abstract:<?php namespace app\admin\controller; use think\Controller; class Index extends Controller { //渲染后臺(tái)首頁(yè) public function index() { return $this->fetch(
<?php
namespace app\admin\controller;
use think\Controller;

class Index extends Controller
{
	//渲染后臺(tái)首頁(yè)
	public function index()
	{
		return $this->fetch();
	}
        //渲染后臺(tái)歡迎頁(yè)
	public function welcome()
	{
		return $this->fetch();
	}
}


Correcting teacher:天蓬老師Correction time:2019-03-21 14:51:10
Teacher's summary:推薦寫上模板文件名, 盡可能不要用默認(rèn)值,哪怕你重寫一次默認(rèn)名: return $this->fetch('index');

Release Notes

Popular Entries