ctms/ctms-home/config/params.php
2025-04-10 23:19:13 +08:00

76 lines
2.4 KiB
PHP
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
# @Author: 嗨噜客科技(www.hiluker.cn) <Fm453>
# @Date: 1970-01-01T08:00:00+08:00
# @Email: fm453@hiluker.com
# @Last modified by: Fm453
# @Last modified time: 2021-09-15T00:07:22+08:00
global $_HI;
$_HI['siteRoot'] = $_SERVER['SERVER_NAME'].YII_APP.'/web';
$_HI['siteUrl'] = '//'.$_HI['siteRoot'].'/index.php';
$_HI['resourceUrl'] = '//'.$_HI['siteRoot'].'/resource';
$_HI['staticUrl'] = '//'.$_HI['siteRoot'].'/static';
$_HI['os'] = (isset($_GET['app']) && $_GET['app']==1) ? 'app' : 'web';
//网站风格等
$_HI['siteStyle'] = 'default';
$_HI['siteName'] ='车辆运输平台管理系统';
$_HI['brand'] = '路客运车';
$_HI['logo'] = $_HI['resourceUrl'].'/img/logo.png';
$_HI['homeMenu'] = '轿车托运';
$_HI['mpqrcode'] = $_HI['resourceUrl'].'/img/qrcode.jpg';
$_HI['ICP'] = '琼ICP备14001297号';
//公众号、小程序
//类型参数type:1服务号2认证服务号3订阅号4认证订阅号
$_HI['mp'][] = array('name'=>'嗨路客','code'=>'hiluker','qrcode'=>$_HI['resourceUrl'].'/img/qrcode.jpg','type'=>'2');
$_HI['wxapp'][] = array('name'=>'嗨噜','qrcode'=>$_HI['resourceUrl'].'/img/qrcode-wxapp.jpg');
$_HI['tel']= '185-8959-1880';
$_HI['addr'] = '三亚·吉阳区·吉阳大道212号·双创中心·';
$_HI['hotLine'] = '18608981880';
//客服浮层
$_HI['kefu']=array();
$i=0;
$kefu = array();
$kefu['qq'][]=array('code'=>'1280880631','name'=>'运车客服');
$kefu['phone'][]=array('code'=>'18608981880','name'=>'服务监督');
$_HI['kefu'][$i] = $kefu;
$i++;
unset($kefu);unset($i);
//SEO设置
$_HI['seo']['title'] ='路客运车-轿车托运O2O平台';
$_HI['seo']['keywords']='轿车托运,汽车托运,道路救援';
$_HI['seo']['description']='专业配备大中型运载板车、救援清障车承接全国各大主要城市往返车辆运输业务。联络热线18608981880';
//顶栏目导航
$menus = array();
$parent=$child=array();
$i=0;
$i++;
$menu=array('title'=>'管理系统','url'=>'','do'=>'site','ac'=>'aboutus');
$parent[$i]=$menu;
$i++;
$menu=array('title'=>'了解报价','url'=>'','do'=>'site','ac'=>'price');
$parent[$i]=$menu;
$i++;
$menu=array('title'=>'运车百科','url'=>'https://che.hiluker.com','do'=>'','ac'=>'');
$parent[$i]=$menu;
$menus=array('parent'=>$parent,'child'=>$child);
$_HI['menus'] = $menus;
unset($parent);unset($child);unset($menu);unset($smenu);
//底栏目导航
$navs = array();
$_HI['navs'] = $navs;
unset($menu);unset($navs);
$_HI['adminEmail'] = 'fm453@lukegzs.com';
return $_HI;