123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- <?php
- namespace app\admin\controller;
- use think\facade\View;
- use think\facade\Lang;
- /**
-
- *
-
- *
- * ----------------------------------------------------------------------------
- *
-
- * 控制器
- */
- class Flea extends AdminControl
- {
- public function initialize()
- {
- parent::initialize(); // TODO: Change the autogenerated stub
- Lang::load(base_path() . 'admin/lang/' . config('lang.default_lang') . '/flea.lang.php');
- if (config('ds_config.flea_isuse') != 1) {
- $this->error(lang('flea_index_unable'), 'dashboard/welcome');
- }
- }
- /**
- * 商品管理
- */
- public function flea()
- {
- $flea_model = model('flea');
- /**
- * 排序
- */
- $special_condition = array();
- $keyword = trim(input('param.search_goods_name'));
- if ($keyword) {
- $special_condition['keyword'] = $keyword;
- }
- $like_member_name = trim(input('param.search_store_name'));
- if ($like_member_name) {
- $special_condition['like_member_name'] = $like_member_name; //店铺名称
- }
- $search_brand_id = intval(input('param.search_brand_id'));
- if ($search_brand_id) {
- $special_condition['brand_id'] = $search_brand_id;
- }
- $cate_id = intval(input('param.cate_id'));
- if ($cate_id) {
- $special_condition['fleaclass_id'] = $cate_id;
- }
- /**
- * 分页
- */
- $goods_list = $flea_model->getFleaList($special_condition, 10);
- if (is_array($goods_list) and !empty($goods_list)) {
- foreach ($goods_list as $key => $val) {
- $goods_list[$key]['goods_image'] = $goods_list[$key]['goods_image'] == '' ? '' : ds_get_pic(ATTACH_MFLEA . '/' . $val['member_id'], str_replace('_1024', '_240', $val['goods_image']));
- }
- }
- /**
- * 商品类别
- */
- /**
- * 商品分类
- */
- $fleaclass_model = model('fleaclass');
- $goods_class = $fleaclass_model->getTreeClassList(1);
- View::assign('goods_class', $goods_class);
- View::assign('goods_list', $goods_list);
- View::assign('show_page', $flea_model->page_info->render());
- View::assign('filtered', $special_condition ? 1 : 0); //是否有查询条件
- $this->setAdminCurItem('index');
- return View::fetch('index');
- }
- /**
- * 闲置商品删除
- */
- public function del()
- {
- $del_id = input('param.del_id');
- $del_id_array = ds_delete_param($del_id);
- if ($del_id_array == FALSE) {
- ds_json_encode('10001', lang('goods_index_argument_invalid'));
- }
- $flea_model = model('flea');
- $result = $flea_model->delFlea($del_id_array);
- if ($result) {
- ds_json_encode('10000', lang('goods_index_del_succ'));
- } else {
- ds_json_encode('10001', lang('goods_index_choose_del'));
- }
- }
- /**
- * ajax操作
- */
- public function ajax()
- {
- $branch = input('get.branch');
- $column = input('get.column');
- $value = trim(input('get.value'));
- $id = intval(input('get.id'));
- switch ($branch) {
- /**
- * 商品名称
- */
- case 'goods_name':
- $flea_model = model('flea');
- $update_array = array();
- $update_array[$column] = $value;
- $flea_model->editFlea($update_array, array('goods_id' => $id));
- echo 'true';
- exit;
- break;
- }
- }
- protected function getAdminItemList()
- {
- $menu_array = array(
- array(
- 'name' => 'index', 'text' => lang('flea_all_ldle'), 'url' => (string)url('Flea/flea')
- ),
- );
- return $menu_array;
- }
- }
|