You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
information-system/lmrxedit/index.php

17 lines
346 B
PHTML

<?php
/***路由***/
if (isset($_GET['template'])) {
$template = $_GET['template'];
switch ($template) {
case 'r_tpl_empty':
case 'tpl_empty':
include 'template/0.php'; //不带左导航
break;
default:
include 'template/1.php'; //带左导航
break;
}
}
?>