123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 |
- <?php
- /*
- * 规格管理
- */
- namespace app\admin\controller;
- use think\facade\View;
- use think\facade\Lang;
- /**
-
- *
-
- *
- * ----------------------------------------------------------------------------
- *
-
- * 控制器
- */
- class Spec extends AdminControl
- {
- public function initialize()
- {
- parent::initialize();
- Lang::load(base_path() . 'admin/lang/' . config('lang.default_lang') . '/spec.lang.php');
- }
- public function index()
- {
- /**
- * 查询条件
- */
- $where = array();
- $sp_name = trim(input('param.sp_name'));
- if ($sp_name != '') {
- $where[] = array('sp_name', 'like', '%' . $sp_name . '%');
- }
- $gc_name = trim(input('param.gc_name'));
- if ($gc_name != '') {
- $where[] = array('gc_name', 'like', '%' . $gc_name . '%');
- }
- $spec_model = model('spec');
- $spec_list = $spec_model->getSpecList($where, 10);
- View::assign('spec_list', $spec_list);
- View::assign('show_page', $spec_model->page_info->render());
- $this->setAdminCurItem('index');
- return View::fetch();
- }
- public function spec_add()
- {
- if (!(request()->isPost())) {
- $spec = [
- 'gc_id' => 0,
- ];
- View::assign('spec', $spec);
- $gc_list = model('goodsclass')->getGoodsclassListByParentId(0);
- View::assign('gc_list', $gc_list);
- return View::fetch('spec_form');
- } else {
- $data = array(
- 'sp_name' => input('post.sp_name'),
- 'sp_sort' => input('post.sp_sort'),
- 'gc_id' => input('post.gc_id'),
- 'gc_name' => input('post.gc_name'),
- );
- $spec_validate = ds_validate('spec');
- if (!$spec_validate->scene('spec_add')->check($data)) {
- $this->error($spec_validate->getError());
- }
- $spec_model = model('spec');
- $result = $spec_model->addSpec($data);
- if ($result) {
- dsLayerOpenSuccess(lang('ds_common_op_succ'));
- } else {
- $this->error(lang('error'));
- }
- }
- }
- public function spec_edit()
- {
- //注:pathinfo地址参数不能通过get方法获取,查看“获取PARAM变量”
- $sp_id = input('param.sp_id');
- if (empty($sp_id)) {
- $this->error(lang('param_error'));
- }
- if (!request()->isPost()) {
- $spec_model = model('spec');
- $spec = $spec_model->getSpecInfo($sp_id);
- View::assign('spec', $spec);
- $gc_list = model('goodsclass')->getGoodsclassListByParentId(0);
- View::assign('gc_list', $gc_list);
- return View::fetch('spec_form');
- } else {
- $data = array(
- 'sp_name' => input('post.sp_name'),
- 'sp_sort' => input('post.sp_sort'),
- 'gc_id' => input('post.gc_id'),
- 'gc_name' => input('post.gc_name'),
- );
- $spec_validate = ds_validate('spec');
- if (!$spec_validate->scene('spec_edit')->check($data)) {
- $this->error($spec_validate->getError());
- }
- $spec_model = model('spec');
- $condition = array();
- $condition[] = array('sp_id', '=', $sp_id);
- $result = $spec_model->editSpec($data, $condition);
- if ($result >= 0) {
- dsLayerOpenSuccess(lang('ds_common_op_succ'));
- } else {
- $this->error(lang('ds_common_op_fail'));
- }
- }
- }
- public function spec_drop()
- {
- //注:pathinfo地址参数不能通过get方法获取,查看“获取PARAM变量”
- $sp_id = intval(input('param.sp_id'));
- // sp_id 值为1 不能删除,用于处理前台显示图片的规格
- if ($sp_id <= 1) {
- $this->error(lang('param_error'));
- }
- $spec_model = model('spec');
- $result = $spec_model->delSpec(array('sp_id' => $sp_id));
- 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_spec'),
- 'url' => (string)url('Spec/index')
- ),
- array(
- 'name' => 'spec_add',
- 'text' => lang('ds_new'),
- 'url' => "javascript:dsLayerOpen('" . (string)url('Spec/spec_add') . "','" . lang('ds_new') . "')"
- ),
- );
- return $menu_array;
- }
- }
|