vr-shopxo-source/service/Application/Api/Controller/SearchController.class.php

51 lines
1.1 KiB
PHP
Executable File

<?php
namespace Api\Controller;
use Service\SearchService;
use Service\GoodsService;
/**
* 商品搜索
* @author Devil
* @blog http://gong.gg/
* @version 0.0.1
* @datetime 2016-12-01T21:51:08+0800
*/
class SearchController extends CommonController
{
/**
* [_initialize 前置操作-继承公共前置方法]
* @author Devil
* @blog http://gong.gg/
* @version 0.0.1
* @datetime 2016-12-03T12:39:08+0800
*/
public function _initialize()
{
// 调用父类前置方法
parent::_initialize();
// 是否ajax请求
if(!IS_AJAX)
{
$this->error(L('common_unauthorized_access'));
}
}
/**
* 商品搜索
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2018-07-12
* @desc description
*/
public function Index()
{
$result = SearchService::GoodsList($this->data_post);
$result['category'] = GoodsService::GoodsCategoryRow(['id'=>$this->data_post['category_id']]);
$this->ajaxReturn(L('common_operation_success'), 0, $result);
}
}
?>