* Date: 2018-4-3 */ namespace app\admin\controller; use think\Page; class Region extends Base { /** * 获取子类列表 */ public function ajax_get_region($pid = 0, $text = ''){ $data = model('Region')->getList($pid); $html = ""; foreach($data as $key=>$val){ $html.=""; } return $html; } }