123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- <?php
- namespace app\admin\controller;
- use think\facade\View;
- use think\facade\Lang;
- /**
- * ============================================================================
- *
- * ============================================================================
- * 版权所有 2014-2028 浙江惠利玛产业互联网有限公司,并保留所有权利。
- * 网站地址: https://www.valimart.net/
- * ----------------------------------------------------------------------------
- *
- * ============================================================================
- * 控制器
- */
- class Navigation extends AdminControl {
- public function initialize() {
- parent::initialize();
- Lang::load(base_path() . 'admin/lang/'.config('lang.default_lang').'/navigation.lang.php');
- }
- public function index() {
- $navigation_model = model('navigation');
- $condition = array();
- $nav_title = input('param.nav_title');
- if (!empty($nav_title)) {
- $condition[]=array('nav_title','like', "%" . $nav_title . "%");
- }
- $nav_location = input('param.nav_location');
- if (!empty($nav_location)) {
- $condition[]=array('nav_location','=',$nav_location);
- }
- $nav_list = $navigation_model->getNavigationList($condition, 10);
- View::assign('nav_list', $nav_list);
- View::assign('show_page', $navigation_model->page_info->render());
- $this->setAdminCurItem('index');
- return View::fetch();
- }
- public function add() {
- if (!(request()->isPost())) {
- $nav = [
- 'nav_location' => 'header',
- 'nav_new_open' => 0,
- ];
- View::assign('nav', $nav);
- return View::fetch('form');
- } else {
- $data['nav_title'] = input('post.nav_title');
- $data['nav_location'] = input('post.nav_location');
- $data['nav_url'] = input('post.nav_url');
- $data['nav_new_open'] = intval(input('post.nav_new_open'));
- $data['nav_sort'] = intval(input('post.nav_sort'));
- $navigation_validate = ds_validate('navigation');
- if (!$navigation_validate->scene('add')->check($data)) {
- $this->error($navigation_validate->getError());
- }
- $navigation_model= model('navigation');
- $result=$navigation_model->addNavigation($data);
- if ($result) {
- dsLayerOpenSuccess(lang('ds_common_op_succ'));
- } else {
- $this->error(lang('error'));
- }
- }
- }
- public function edit() {
- $navigation_model= model('navigation');
- $nav_id = input('param.nav_id');
- if (empty($nav_id)) {
- $this->error(lang('param_error'));
- }
- if (!request()->isPost()) {
- $condition = array();
- $condition[] = array('nav_id','=',$nav_id);
- $nav=$navigation_model->getOneNavigation($condition);
- View::assign('nav', $nav);
- return View::fetch('form');
- } else {
- $data['nav_title'] = input('post.nav_title');
- $data['nav_location'] = input('post.nav_location');
- $data['nav_url'] = input('post.nav_url');
- $data['nav_new_open'] = intval(input('post.nav_new_open'));
- $data['nav_sort'] = intval(input('post.nav_sort'));
- $navigation_validate = ds_validate('navigation');
- if (!$navigation_validate->scene('edit')->check($data)) {
- $this->error($navigation_validate->getError());
- }
- $condition = array();
- $condition[] = array('nav_id','=',$nav_id);
- $result = $navigation_model->eidtNavigation($data,$condition);
- if ($result>=0) {
- dsLayerOpenSuccess(lang('ds_common_op_succ'));
- } else {
- $this->error(lang('error'));
- }
- }
- }
- public function drop() {
- $navigation_model= model('navigation');
- $nav_id = input('param.nav_id');
- $nav_id_array = ds_delete_param($nav_id);
- if($nav_id_array === FALSE){
- ds_json_encode('10001', lang('param_error'));
- }
- $condition = array(array('nav_id', 'in', $nav_id_array));
- $result =$navigation_model->delNavigation($condition);
- if ($result) {
- ds_json_encode('10000', lang('ds_common_del_succ'));
- } else {
- ds_json_encode('10001', lang('ds_common_del_fail'));
- }
- }
- /**
- * 获取卖家栏目列表,针对控制器下的栏目
- */
- protected function getAdminItemList() {
- $menu_array = array(
- array(
- 'name' => 'index',
- 'text' => lang('ds_manage'),
- 'url' => (string)url('Navigation/index')
- ),
- array(
- 'name' => 'add',
- 'text' => lang('ds_add'),
- 'url' => "javascript:dsLayerOpen('".(string)url('Navigation/add')."','".lang('ds_add')."')"
- ),
- );
- return $menu_array;
- }
- }
|