From ec93af2bf590da9f0d738165041e97b8f76f1bb7 Mon Sep 17 00:00:00 2001 From: LMR <59361885@qq.com> Date: Thu, 12 May 2022 14:29:58 +0800 Subject: [PATCH] f --- application/controllers/overseas.php | 58 +++++++++++++++++++++++++ application/views/bootstrap/welcome.php | 2 +- 2 files changed, 59 insertions(+), 1 deletion(-) create mode 100644 application/controllers/overseas.php diff --git a/application/controllers/overseas.php b/application/controllers/overseas.php new file mode 100644 index 00000000..f02df736 --- /dev/null +++ b/application/controllers/overseas.php @@ -0,0 +1,58 @@ +permission->is_admin(); + //$this->output->enable_profiler(TRUE); + $this->load->model('Area_model'); + $this->load->model('Information_model'); + $this->load->model('InfoContents_model'); + $this->load->model('InfoStructures_model'); + } + + //团购信息 + public function index() + { + $overseas_id = 1; + //查询结构根节点,当为空则建立 + $rootStructure = $this->Information_model->GetRoot('g', $overseas_id); + if ($rootStructure == FALSE) { + $this->InfoContents_model->Add( + '', + 'Overseas', + 'root', + '', + '', + '', + '', + '', + '', + 0, + 0, + '', + '', + 0, + 0, + '', + '', + $overseas_id, + 'g', + 0, + '', + '' + ); + $this->InfoStructures_model->Add(0, $this->InfoContents_model->insert_id); + $is_id = $this->InfoStructures_model->insert_id; + } else { + $is_id = $rootStructure->is_id; + } + redirect(site_url('information/edit/' . $is_id)); + } +} diff --git a/application/views/bootstrap/welcome.php b/application/views/bootstrap/welcome.php index bd69b2c6..7c1634f6 100644 --- a/application/views/bootstrap/welcome.php +++ b/application/views/bootstrap/welcome.php @@ -21,7 +21,7 @@