You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
595 lines
28 KiB
595 lines
28 KiB
<?php
|
|
namespace apps\store\controllers;
|
|
use apps\base\controllers\FrontendController;
|
|
|
|
class IndexController extends FrontendController {
|
|
private $region_id = 0;
|
|
private $area_info = array();
|
|
private $user_id = 0;
|
|
private $review_goods;
|
|
public function __construct(){
|
|
parent::__construct();
|
|
$this->user_id = !empty($_SESSION['user_id'])? $_SESSION['user_id'] : 0;
|
|
//初始化位置信息
|
|
$this->init_params();
|
|
$this->review_goods = $GLOBALS['_CFG']['review_goods']==1 ? ' and review_status>2 ' : '' ;
|
|
$this->assign('area_id',$this->area_info['region_id']);
|
|
$this->assign('warehouse_id',$this->region_id);
|
|
}
|
|
public function actionIndex()
|
|
{
|
|
$where = I('where','');
|
|
$where = str_replace(",jia,", "+", $where);
|
|
$type = I('type','');
|
|
$page = I('page',1);
|
|
$page = empty($page) ? 1 : $page-1;
|
|
if(!empty($type)){
|
|
if($type==1){
|
|
$seachwhere = '';
|
|
$where = "a.user_shopMain_category LIKE '%".$where.":%'";
|
|
|
|
}elseif($type==2){
|
|
if(empty($_SESSION['keywordwhere']) || $_SESSION['keywordwhere'] != $where ) {
|
|
if(!empty($where)) {
|
|
/*记录搜索历史记录*/
|
|
if (!empty($_COOKIE['ECS']['keywords'])) {
|
|
$history = explode(',', $_COOKIE['ECS']['keywords']);
|
|
array_unshift($history, $where); //在数组开头插入一个或多个元素
|
|
$history = array_unique($history); //移除数组中的重复的值,并返回结果数组。
|
|
setcookie('ECS[keywords]', implode(',', $history), gmtime() + 3600 * 24 * 30);
|
|
} else {
|
|
setcookie('ECS[keywords]', $where, gmtime() + 3600 * 24 * 30);
|
|
}
|
|
}
|
|
$_SESSION['keywordwhere'] = $where;
|
|
}
|
|
$seachwhere = $where;
|
|
$where = "a.rz_shopName LIKE '%".$where."%'";
|
|
}
|
|
}else{
|
|
$where = empty($where)? 1 : $where;
|
|
}
|
|
|
|
$sql = "SELECT count(user_id) as max FROM {pre}merchants_shop_information as a
|
|
LEFT JOIN {pre}seller_shopinfo as b ON a.user_id=b.ru_id
|
|
WHERE ".$where;
|
|
$maxpage = $this->db->getOne($sql);
|
|
$maxpage = ceil($maxpage/4);
|
|
|
|
if(IS_AJAX){
|
|
$page = $page *4;
|
|
$sql = "SELECT * FROM {pre}merchants_shop_information as a
|
|
LEFT JOIN {pre}seller_shopinfo as b ON a.user_id=b.ru_id
|
|
WHERE ".$where.' and merchants_audit = 1 order by a.shop_id desc limit '.$page.',4 ';
|
|
$data = $this->db->getAll($sql);
|
|
foreach($data as $key){
|
|
//评分 start
|
|
if($key['user_id'] > 0){
|
|
//商家所有商品评分类型汇总
|
|
$merchants_goods_comment = get_merchants_goods_comment($key['user_id']);
|
|
}
|
|
//评分 end
|
|
//店铺关注人数
|
|
$sql = "SELECT count(user_id) FROM {pre}collect_store WHERE ru_id=".$key['user_id'];
|
|
$gaze = $this->db->getCol($sql);
|
|
//取出店铺商品
|
|
$sql = "SELECT * FROM {pre}goods WHERE user_id=".$key['user_id']." AND is_on_sale = 1 AND is_alone_sale = 1 AND is_delete = 0 ".$this->review_goods."ORDER BY goods_id desc LIMIT 4";
|
|
$goods = $this->db->getAll($sql);
|
|
if($_SESSION['user_id']>0){
|
|
$sql = "SELECT rec_id FROM {pre}collect_store WHERE user_id=".$_SESSION['user_id']." AND ru_id=".$key['user_id'];
|
|
$status = $this->db->getOne($sql);
|
|
$status = $status>0 ? 'active' : '';
|
|
}
|
|
//是否关注
|
|
$goods = count($goods)>0 ? $goods : 0 ;
|
|
$goodsarr = array();
|
|
if($goods) {
|
|
foreach ($goods as $gkey) {
|
|
$goodsarr[] = get_goods_info($gkey['goods_id'], $this->region_id, $this->area_info['region_id']);
|
|
}
|
|
foreach ($goodsarr as $k => $val){
|
|
$goodsarr[$k]['promote_price'] = empty($val['promote_price']) ? strip_tags(price_format(0)) : strip_tags($val['promote_price']);
|
|
}
|
|
}else{
|
|
$goodsarr = 0;
|
|
}
|
|
$info[]=array(
|
|
'shop_id'=>$key['shop_id'],
|
|
'url'=>U('store/index/shop_info',array('id'=>$key['user_id'])),
|
|
'user_id'=>$key['user_id'],
|
|
'shop_name'=>get_shop_name($key['user_id'], 1),
|
|
'shop_logo'=>$key['logo_thumb'],
|
|
'commentrank'=>$merchants_goods_comment['cmt']['commentRank']['zconments']['score'],//商品评分
|
|
'commentrank_bg'=>$this->cmt($merchants_goods_comment['cmt']['commentRank']['zconments']['score']),//商品评分背景
|
|
'commentserver'=>$merchants_goods_comment['cmt']['commentServer']['zconments']['score'],//服务评分
|
|
'commentserver_bg'=>$this->cmt($merchants_goods_comment['cmt']['commentServer']['zconments']['score']),//服务评分背景
|
|
'commentdelivery'=>$merchants_goods_comment['cmt']['commentDelivery']['zconments']['score'],//时效评分
|
|
'commentdelivery_bg'=>$this->cmt($merchants_goods_comment['cmt']['commentDelivery']['zconments']['score']),//时效评分背景
|
|
'commentrank_font'=>$this->font($merchants_goods_comment['cmt']['commentRank']['zconments']['score']),
|
|
'commentrank_box'=>$this->boxbg($merchants_goods_comment['cmt']['commentRank']['zconments']['score']),
|
|
'commentserver_font'=>$this->font($merchants_goods_comment['cmt']['commentServer']['zconments']['score']),
|
|
'commentserver_box'=>$this->boxbg($merchants_goods_comment['cmt']['commentServer']['zconments']['score']),
|
|
'commentdelivery_font'=>$this->font($merchants_goods_comment['cmt']['commentDelivery']['zconments']['score']),
|
|
'commentdelivery_box'=>$this->boxbg($merchants_goods_comment['cmt']['commentDelivery']['zconments']['score']),
|
|
'gaze_number'=>$gaze[0],//关注人数
|
|
'gaze_status'=>$status,//当前用户是否关注
|
|
'goods'=>$goodsarr,
|
|
'title'=>$title = count($goods)>0 ? '爆款商品' : '',
|
|
);
|
|
}
|
|
$show = count($data)>0 || $page > 1 ? 1 : 0;
|
|
die(json_encode(array('list'=>$info,'show'=>$show, 'totalPage'=>$maxpage)));
|
|
}
|
|
if($type==2){
|
|
$where = $seachwhere;
|
|
}
|
|
$where = str_replace("+", ",jia,", $where);
|
|
$cat_name = $this->db->getAll('SELECT cat_id, cat_name, cat_alias_name FROM {pre}category WHERE parent_id=0 and is_show=1');
|
|
$category = array();
|
|
foreach ($cat_name as $key => $val){
|
|
$category[$key]['id'] = $val['cat_id'];
|
|
$category[$key]['cat_alias_name'] = empty($val['cat_alias_name']) ? $val['cat_name'] : $val['cat_alias_name'] ;
|
|
}
|
|
$this->assign('where',$where);
|
|
$this->assign('type',$type);
|
|
$this->assign('page',$page);
|
|
$this->assign('maxpage',$maxpage);
|
|
$this->assign('cat_one',$category);
|
|
$this->assign('page_title','店铺街');
|
|
$this->display('shopping_list');
|
|
}
|
|
public function actionAddCollect(){
|
|
$shopid = I('shopid','');
|
|
if(!empty($shopid) && $_SESSION['user_id']>0){
|
|
$status=$this->db->getRow('SELECT user_id, rec_id FROM {pre}collect_store WHERE ru_id='.$shopid." AND user_id=".$_SESSION['user_id']);
|
|
if(count($status)>0){
|
|
$this->db->query('DELETE FROM {pre}collect_store WHERE rec_id='.$status['rec_id']);
|
|
die(json_encode(array('error'=>2, 'msg'=>'已取消关注')));
|
|
}else{
|
|
$this->db->query("INSERT INTO {pre}collect_store (user_id, ru_id, add_time, is_attention) VALUES (".$_SESSION['user_id'].",'$shopid',".time().",1)");
|
|
die(json_encode(array('error'=>1, 'msg'=>'已关注')));
|
|
}
|
|
}else{
|
|
die(json_encode(array('error'=>0, 'msg'=>'请登录')));
|
|
}
|
|
|
|
}
|
|
public function actionShopInfo($id=''){
|
|
$userid = I('id','');
|
|
$userid = empty($id) ? $userid : $id ;
|
|
$sql = "SELECT * FROM {pre}merchants_shop_information as a
|
|
JOIN {pre}seller_shopinfo as b ON a.user_id=b.ru_id
|
|
WHERE user_id=".$userid;
|
|
$data = $this->db->getRow($sql);
|
|
if(empty($userid) || $data['user_id'] !== $userid){
|
|
ecs_header("Location: " . U('store/index/index'));
|
|
exit;
|
|
}
|
|
if($_SESSION['user_id']>0){
|
|
$sql = "SELECT rec_id FROM {pre}collect_store WHERE user_id=".$_SESSION['user_id']." AND ru_id=".$data['user_id'];
|
|
$status = $this->db->getOne($sql);
|
|
$status = $status>0 ? 'active' : '';
|
|
};
|
|
$sql = "SELECT count(user_id) as a FROM {pre}collect_store WHERE ru_id=".$data['user_id'];
|
|
$gaze = $this->db->getOne($sql);
|
|
$gaze = empty($gaze) ? 0 : $gaze;
|
|
$cat = get_user_store_category($data['user_id']);
|
|
$cat = array_slice($cat,0,8);
|
|
$sql = "SELECT goods_id FROM {pre}goods
|
|
WHERE user_id=".$data['user_id']."
|
|
and is_on_sale=1 and is_alone_sale=1 and is_delete=0 ".$this->review_goods."
|
|
LIMIT 6";
|
|
$list = $this->db->getAll($sql);
|
|
$sql = "SELECT img_url FROM {pre}seller_shopslide WHERE ru_id=".$data['user_id']." AND is_show=1";
|
|
$flash = $this->db->getRow($sql);
|
|
$flash['img_url'] = (stripos($flash['img_url'], '../') === false) ? '../'.$flash['img_url']:$flash['img_url'];
|
|
if($list) {
|
|
foreach ($list as $key => $val) {
|
|
$list[$key] = get_goods_info($val['goods_id'], $this->region_id, $this->area_info['region_id']);
|
|
}
|
|
foreach ($list as $key => $val){
|
|
if(empty($val['promote_price'])){
|
|
$list[$key]['promote_price'] = price_format(0);
|
|
}
|
|
}
|
|
}
|
|
$info = $this->shopdata($data['user_id']);
|
|
$info['shop_id'] = $data['shop_id'];
|
|
$info['ru_id'] = $data['user_id'];
|
|
$info['shop_logo'] = $data['logo_thumb'];
|
|
$info['count_gaze'] = $gaze;
|
|
$info['gaze_status'] = $status;
|
|
$info['goods_list'] = $list;
|
|
$info['shop_name'] = get_shop_name($data['user_id'], 1);
|
|
$info['shop_desc'] = $data['shop_name'];
|
|
$info['shop_start'] = $data['shop_expireDateStart'];
|
|
$info['shop_address'] = $data['shop_address'];
|
|
$info['shop_flash'] = get_image_path($data['street_thumb']);
|
|
$info['shop_wangwang'] = $data['kf_ww'];
|
|
$info['shop_qq'] = $data['kf_qq'];
|
|
$info['shop_tel'] = $data['kf_tel'];
|
|
$info['shop_category'] = $cat;
|
|
if(!empty($id)){
|
|
//评分 start
|
|
if($data['user_id'] > 0){
|
|
//商家所有商品评分类型汇总
|
|
$merchants_goods_comment = get_merchants_goods_comment($data['user_id']);
|
|
}
|
|
//评分 end
|
|
//是否关注
|
|
if($_SESSION['user_id']>0){
|
|
$sql="SELECT rec_id FROM {pre}collect_store WHERE user_id=".$_SESSION['user_id']." AND ru_id=".$data['shop_id'];
|
|
$status=$this->db->getOne($sql);
|
|
$status=$status>0 ? 'active' : '';
|
|
}
|
|
$info['commentrank'] = $merchants_goods_comment['cmt']['commentRank']['zconments']['score'].'分';//商品评分
|
|
$info['commentserver'] = $merchants_goods_comment['cmt']['commentServer']['zconments']['score'].'分';//服务评分
|
|
$info['commentdelivery'] = $merchants_goods_comment['cmt']['commentDelivery']['zconments']['score'].'分';//时效评分
|
|
$info['commentrank_font'] = $this->font($merchants_goods_comment['cmt']['commentRank']['zconments']['score']);
|
|
$info['commentserver_font'] = $this->font($merchants_goods_comment['cmt']['commentServer']['zconments']['score']);
|
|
$info['commentdelivery_font'] = $this->font($merchants_goods_comment['cmt']['commentDelivery']['zconments']['score']);
|
|
$info['gaze_status'] = $status;//当前用户是否关注
|
|
|
|
return $info;
|
|
}else{
|
|
$this->assign('page_title',$info['shop_name']);
|
|
$this->assign('info',$info);
|
|
$this->display('shopping_info');
|
|
}
|
|
}
|
|
public function actionShopAbout(){
|
|
$ru_id=I('ru_id','');
|
|
$info = $this->actionShopInfo($ru_id);
|
|
$info['code']="http://qr.liantu.com/api.php?bg=f3f3f3&fg=000&el=l&w=800&m=30&text=http://".$_SERVER ['HTTP_HOST'].__ROOT__."index.php?r=store/index/shop_info%26 id=".$ru_id;
|
|
$this->assign('info',$info);
|
|
$this->assign('page_title',$info['shop_name']);
|
|
$this->display('shopping_about');
|
|
|
|
}
|
|
public function actionProList(){
|
|
$type = I('type','');
|
|
$ru_id = I('ru_id','');
|
|
$page = I('page','');
|
|
$by = I('sort','');
|
|
$keyword = I('keyword','');
|
|
$bid = I('bid','');
|
|
$cat_id = I('cat_id','');
|
|
$bigcat = I('bigcat','');
|
|
$whereinfo= I('where','');
|
|
|
|
if(empty($type)){
|
|
$where = 'user_id='.$ru_id;
|
|
}elseif($type=='is_new'){
|
|
$where = 'user_id='.$ru_id.' AND is_new=1';
|
|
}elseif($type=='is_promote'){
|
|
$where = 'user_id='.$ru_id.' AND is_promote=1';
|
|
}
|
|
//搜索
|
|
if(!empty($keyword)){
|
|
$where = 'user_id='.$ru_id. " AND goods_name LIKE '%".$keyword."%'";
|
|
}
|
|
if(!empty($bid)){
|
|
|
|
$where = 'user_id='.$ru_id.' AND brand_id='.$bid;
|
|
|
|
}
|
|
|
|
if(!empty($cat_id)){
|
|
$children = get_category_parentChild_tree1($cat_id, 1);
|
|
|
|
$children = arr_foreach($children);
|
|
if($children){
|
|
$children = implode(",", $children) . "," . $cat_id;
|
|
$children = get_children($children, 0, 1);
|
|
$children = substr($children,2,strlen($children));
|
|
$goods_in = get_extension_goods($children);
|
|
$goods_in = substr($goods_in,2,strlen($goods_in));
|
|
$children = $children.' OR '.$goods_in;
|
|
}else{
|
|
$children = "cat_id IN ($cat_id)";
|
|
$goods_in = get_extension_goods($children);
|
|
$goods_in = substr($goods_in,2,strlen($goods_in));
|
|
$children = $children.' OR '.$goods_in;
|
|
}
|
|
$where = ' user_id='.$ru_id.' AND '.$children;
|
|
}
|
|
if(!empty($bigcat)){
|
|
$children = get_category_parentChild_tree1($bigcat, 1);
|
|
$children = arr_foreach($children);
|
|
if($children){
|
|
$children = implode(",", $children) . "," . $bigcat;
|
|
$children = get_children($children, 0, 1);
|
|
$children = substr($children,2,strlen($children));
|
|
$goods_in = get_extension_goods($children);
|
|
$goods_in = substr($goods_in,2,strlen($goods_in));
|
|
$children = $children.' OR '.$goods_in;
|
|
}else{
|
|
$children = "cat_id IN ($bigcat)";
|
|
$goods_in = get_extension_goods($children);
|
|
$goods_in = substr($goods_in,2,strlen($goods_in));
|
|
$children = $children.' OR '.$goods_in;
|
|
}
|
|
$where = ' user_id='.$ru_id.' AND '.$children;
|
|
}
|
|
if(IS_AJAX){
|
|
if($by == 1){
|
|
if(empty($_SESSION['sort']['goods_id'])){
|
|
$orderby = ' order by goods_id desc ' ;
|
|
$_SESSION['sort']['goods_id'] = 'desc';
|
|
}else{
|
|
$orderby = ' order by goods_id asc ' ;
|
|
$_SESSION['sort']['goods_id'] = '';
|
|
}
|
|
|
|
}elseif($by == 2){
|
|
if(empty($_SESSION['sort']['add_time'])){
|
|
$orderby = ' order by add_time desc ' ;
|
|
$_SESSION['sort']['add_time'] = 'desc';
|
|
}else{
|
|
$orderby = ' order by add_time asc ' ;
|
|
$_SESSION['sort']['add_time'] = '';
|
|
}
|
|
|
|
}elseif($by == 3){
|
|
if(empty($_SESSION['sort']['sales_volume'])){
|
|
$orderby = ' order by sales_volume desc ' ;
|
|
$_SESSION['sort']['sales_volume'] = 'desc';
|
|
}else{
|
|
$orderby = ' order by sales_volume asc ' ;
|
|
$_SESSION['sort']['sales_volume'] = '';
|
|
}
|
|
|
|
}elseif($by == 4){
|
|
if(empty($_SESSION['sort']['shop_price'])){
|
|
$orderby = ' order by shop_price desc ' ;
|
|
$_SESSION['sort']['shop_price'] = 'desc';
|
|
}else{
|
|
$by = ' order by shop_price asc ' ;
|
|
$_SESSION['sort']['shop_price'] = '';
|
|
}
|
|
|
|
}else{
|
|
$orderby = ' order by goods_id desc ' ;
|
|
$_SESSION['sort']['goods_id'] = 'desc';
|
|
}
|
|
$where = $where." AND is_on_sale = 1 AND is_alone_sale = 1 AND is_delete = 0".$this->review_goods;
|
|
|
|
if(!empty($keyword) || !empty($bid) || !empty($cat_id)){
|
|
$sql = 'SELECT count(goods_id) as max FROM {pre}goods WHERE '.$where;
|
|
$maxpage = $this->db->getOne($sql);
|
|
$maxpage = ceil($maxpage/6);
|
|
$page = empty($page) ? 0 : ($page-1)*6 ;
|
|
|
|
$sql = 'SELECT goods_id FROM {pre}goods WHERE '.$where.$orderby.' limit '.$page.',6';
|
|
}else{
|
|
$sql = 'SELECT count(goods_id) as maxcal FROM {pre}goods WHERE '.$where.$orderby;
|
|
$maxpage = $this->db->getOne($sql);
|
|
$maxpage = ceil($maxpage/6);
|
|
$page = empty($page) ? 0 : ($page-1)*6 ;
|
|
|
|
$sql = 'SELECT goods_id FROM {pre}goods WHERE '.$where.$orderby.' limit '.$page.',6';
|
|
}
|
|
$list = $this->db->getAll($sql);
|
|
foreach ($list as $key => $val) {
|
|
$list[$key] = get_goods_info($val['goods_id'], $this->region_id, $this->area_info['region_id']);
|
|
}
|
|
foreach ($list as $key => $val){
|
|
if(empty($val['promote_price'])){
|
|
$list[$key]['promote_price'] = price_format(0);
|
|
}
|
|
$list[$key]['promote_price'] = empty($val['promote_price']) ? strip_tags(price_format(0)) : strip_tags($val['promote_price']);
|
|
$list[$key]['goods_number'] = empty($list[$key]['goods_number']) ? 0 : $list[$key]['goods_number'];
|
|
$attr = get_goods_properties($val['goods_id'], $this->region_id, $this->area_info['region_id']);
|
|
$list[$key]['spe'] = $attr['spe'];
|
|
}
|
|
/*记录搜索历史记录*/
|
|
if (!empty($_COOKIE['ECS']['keywords'])) {
|
|
$history = explode(',', $_COOKIE['ECS']['keywords']);
|
|
array_unshift($history, $keyword); //在数组开头插入一个或多个元素
|
|
$history = array_unique($history); //移除数组中的重复的值,并返回结果数组。
|
|
setcookie('ECS[keywords]', implode(',', $history), gmtime() + 3600 * 24 * 30);
|
|
}else{
|
|
setcookie('ECS[keywords]', $keyword, gmtime() + 3600 * 24 * 30);
|
|
}
|
|
$show = empty($list) && $page <1 ? 0 : 1;
|
|
die(json_encode(array('list'=>$list,'totalPage'=>$maxpage,'show'=>$show)));
|
|
}
|
|
$sql = "SELECT bid, bank_name_letter, brandName FROM {pre}merchants_shop_brand WHERE user_id=".$ru_id;
|
|
$brand = $this->db->getAll($sql);
|
|
$category=get_user_store_category($ru_id);
|
|
$page = empty($page) ? 0 : $page;
|
|
$this->assign('category',$category);
|
|
$this->assign('bigcat',$bigcat);//顶级分类
|
|
$this->assign('brand',$brand);
|
|
$this->assign('page',$page);
|
|
$this->assign('type',$type);
|
|
$this->assign('ru_id',$ru_id);
|
|
$this->assign('cat_id',$cat_id);
|
|
$this->assign('keyword',$keyword);//关键字
|
|
$this->assign('bid',$bid);//分类
|
|
$this->assign('where','');
|
|
$this->assign('page_title','店铺商品列表');
|
|
$this->display('shopping_pro_list');
|
|
}
|
|
|
|
public function shopdata($id){
|
|
$info['count_goods'] = $this->sql('user_id='.$id." AND is_on_sale = 1 AND is_alone_sale = 1 AND is_delete = 0".$this->review_goods);//所有商品
|
|
$info['count_goods_new'] = $this->sql('is_new = 1 AND user_id='.$id." AND is_on_sale = 1 AND is_alone_sale = 1 AND is_delete = 0".$this->review_goods);//所有新品
|
|
$info['count_goods_promote'] = $this->sql('is_promote = 1 AND user_id='.$id." AND is_on_sale = 1 AND is_alone_sale = 1 AND is_delete = 0".$this->review_goods);//促销品
|
|
$info['count_bonus'] = $this->sql('user_id='.$id.' AND send_end_date>'.time(),'');//优惠卷总数
|
|
$info['bonus_all'] = $this->sql('user_id='.$id.' AND send_end_date>'.time(),'',1);//优惠卷
|
|
return $info;
|
|
}
|
|
public function sql($where,$type=1,$data=''){
|
|
if($type==1){
|
|
$sql = "SELECT goods_id FROM {pre}goods WHERE ".$where;
|
|
$info= $this->db->getAll($sql);
|
|
return count($info);
|
|
}else{
|
|
$sql = "SELECT * FROM {pre}bonus_type WHERE ".$where;
|
|
$info= $this->db->getAll($sql);
|
|
if($data==''){
|
|
return count($info);
|
|
}else{
|
|
|
|
foreach( $info as $key => $val ){
|
|
$info[$key]['min_goods_amount'] = intval($val['min_goods_amount']);
|
|
$info[$key]['type_money'] = intval($val['type_money']);
|
|
}
|
|
return $info;
|
|
}
|
|
}
|
|
}
|
|
public function font($key){
|
|
if($key>4){
|
|
return '高';
|
|
}elseif($key>3){
|
|
return '中';
|
|
}else{
|
|
return '低';
|
|
}
|
|
}
|
|
public function cmt($num) {
|
|
if( $num >= 4) {
|
|
$str = 't-first';
|
|
}elseif( $num > 3) {
|
|
$str = 't-center';
|
|
}else{
|
|
$str = 't-low';
|
|
}
|
|
return $str;
|
|
}
|
|
public function boxbg($num) {
|
|
if( $num >= 4) {
|
|
$str = '';
|
|
}elseif( $num > 3) {
|
|
$str = 'em-p-center';
|
|
}else{
|
|
$str = 'em-p-low';
|
|
}
|
|
return $str;
|
|
}
|
|
/**
|
|
* 初始化参数
|
|
*/
|
|
private function init_params(){
|
|
#需要查询的IP start
|
|
|
|
if(!isset($_COOKIE['province'])){
|
|
$area_array = get_ip_area_name();
|
|
|
|
if($area_array['county_level'] == 2){
|
|
$date = array('region_id', 'parent_id', 'region_name');
|
|
$where = "region_name = '" .$area_array['area_name']. "' AND region_type = 2";
|
|
$city_info = get_table_date('region', $where, $date, 1);
|
|
|
|
$date = array('region_id', 'region_name');
|
|
$where = "region_id = '" .$city_info[0]['parent_id']. "'";
|
|
$province_info = get_table_date('region', $where, $date);
|
|
|
|
$where = "parent_id = '" .$city_info[0]['region_id']. "' order by region_id asc limit 0, 1";
|
|
$district_info = get_table_date('region', $where, $date, 1);
|
|
|
|
}elseif($area_array['county_level'] == 1){
|
|
$area_name = $area_array['area_name'];
|
|
|
|
$date = array('region_id', 'region_name');
|
|
$where = "region_name = '$area_name'";
|
|
$province_info = get_table_date('region', $where, $date);
|
|
|
|
$where = "parent_id = '" .$province_info['region_id']. "' order by region_id asc limit 0, 1";
|
|
$city_info = get_table_date('region', $where, $date, 1);
|
|
|
|
$where = "parent_id = '" .$city_info[0]['region_id']. "' order by region_id asc limit 0, 1";
|
|
$district_info = get_table_date('region', $where, $date, 1);
|
|
}
|
|
}
|
|
#需要查询的IP end
|
|
$order_area = get_user_order_area($this->user_id);
|
|
$user_area = get_user_area_reg($this->user_id); //2014-02-25
|
|
|
|
if($order_area['province'] && $this->user_id > 0){
|
|
$this->province_id = $order_area['province'];
|
|
$this->city_id = $order_area['city'];
|
|
$this->district_id = $order_area['district'];
|
|
}else{
|
|
//省
|
|
if($user_area['province'] > 0){
|
|
$this->province_id = $user_area['province'];
|
|
setcookie('province', $user_area['province'], gmtime() + 3600 * 24 * 30);
|
|
$this->region_id = get_province_id_warehouse($this->province_id);
|
|
}else{
|
|
$sql = "select region_name from " .$this->ecs->table('region_warehouse'). " where regionId = '" .$province_info['region_id']. "'";
|
|
$warehouse_name = $this->db->getOne($sql);
|
|
|
|
$this->province_id = $province_info['region_id'];
|
|
$cangku_name = $warehouse_name;
|
|
$this->region_id = get_warehouse_name_id(0, $cangku_name);
|
|
}
|
|
//市
|
|
if($user_area['city'] > 0){
|
|
$this->city_id = $user_area['city'];
|
|
setcookie('city', $user_area['city'], gmtime() + 3600 * 24 * 30);
|
|
}else{
|
|
$this->city_id = $city_info[0]['region_id'];
|
|
}
|
|
//区
|
|
if($user_area['district'] > 0){
|
|
$this->district_id = $user_area['district'];
|
|
setcookie('district', $user_area['district'], gmtime() + 3600 * 24 * 30);
|
|
}else{
|
|
$this->district_id = $district_info[0]['region_id'];
|
|
}
|
|
}
|
|
|
|
$this->province_id = isset($_COOKIE['province']) ? $_COOKIE['province'] : $this->province_id;
|
|
|
|
$child_num = get_region_child_num($this->province_id);
|
|
if($child_num > 0){
|
|
$this->city_id = isset($_COOKIE['city']) ? $_COOKIE['city'] : $this->city_id;
|
|
}else{
|
|
$this->city_id = '';
|
|
}
|
|
|
|
$child_num = get_region_child_num($this->city_id);
|
|
if($child_num > 0){
|
|
$this->district_id = isset($_COOKIE['district']) ? $_COOKIE['district'] : $this->district_id;
|
|
}else{
|
|
$this->district_id = '';
|
|
}
|
|
|
|
$this->region_id = !isset($_COOKIE['region_id']) ? $this->region_id : $_COOKIE['region_id'];
|
|
$goods_warehouse = get_warehouse_goods_region($this->province_id); //查询用户选择的配送地址所属仓库
|
|
if($goods_warehouse){
|
|
$this->regionId = $goods_warehouse['region_id'];
|
|
if($_COOKIE['region_id'] && $_COOKIE['regionId']){
|
|
$gw = 0;
|
|
}else{
|
|
$gw = 1;
|
|
|
|
}
|
|
}
|
|
if($gw){
|
|
$this->region_id = $this->regionId;
|
|
setcookie('area_region', $this->region_id, gmtime() + 3600 * 24 * 30);
|
|
}
|
|
|
|
setcookie('goodsId', $this->goods_id, gmtime() + 3600 * 24 * 30);
|
|
|
|
$sellerInfo = get_seller_info_area();
|
|
if(empty($this->province_id)){
|
|
$this->province_id = $sellerInfo['province'];
|
|
$this->city_id = $sellerInfo['city'];
|
|
$this->district_id = 0;
|
|
|
|
setcookie('province', $this->province_id, gmtime() + 3600 * 24 * 30);
|
|
setcookie('city', $this->city_id, gmtime() + 3600 * 24 * 30);
|
|
setcookie('district', $this->district_id, gmtime() + 3600 * 24 * 30);
|
|
|
|
$this->region_id = get_warehouse_goods_region($this->province_id);
|
|
}
|
|
//ecmoban模板堂 --zhuo end 仓库
|
|
$this->area_info = get_area_info($this->province_id);
|
|
}
|
|
}
|
|
|
|
|