12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <?php
- // 应用入口文件
- // 检测PHP环境
- if(version_compare(PHP_VERSION,'5.3.0','<')) die('require PHP > 5.3.0 !');
- // 开启调试模式 建议开发阶段开启 部署阶段注释或者设为false
- define('APP_DEBUG',true);
- //define('APP_DEBUG',false);
- // 定义应用目录
- define('APP_PATH','./wxapp2/');
- //自定义
- // 引入ThinkPHP入口文件
- require './ThinkPHP/ThinkPHP.php';
- /*
- {
- "button": [
- {
- "name": "软件平台",
- "sub_button": [
- {
- "type": "view",
- "name": "巡检",
- "url": "http://www.jd-ioe.com/jdxf/weixin.php/home/xunj/"
- },
- {
- "type": "view",
- "name": "建筑物安全评估",
- "url": "http://www.jd-ioe.com/jdxf/wxapp.php/Home/Fireinsur"
- }
- ]
- },
- {
- "name": "消防系统",
- "sub_button": [
- {
- "type": "view",
- "name": "消防综合信息",
- "url": "http://www.jd-ioe.com/jdxf/wxapp.php"
- },
- {
- "type": "view",
- "name": "设置",
- "url": "http://www.jd-ioe.com/jdxf/weixin.php/Home/Fire/setperm"
- }
- ]
- },
- {
- "name": "关于觉大",
- "sub_button": [
- {
- "type": "view",
- "name": "成功案例",
- "url": "http://www.jd-ioe.com/jdxf/wxapp.php/Home/Public/Vexample"
- },
- {
- "type": "click",
- "name": "联系我们",
- "key": "V1001_EVET_ADDRESS",
- "sub_button": [ ]
- },
- {
- "type": "view",
- "name": "客户建议",
- "url": "http://www.jd-ioe.com/jdxf/wxapp.php/Home/Public/Mainfback"
- },
- {
- "type": "view",
- "name": "客户投诉",
- "url": "http://www.jd-ioe.com/jdxf/wxapp.php/Home/Public/Profback"
- }
- ]
- }
- ]
- }
- */
|