Browse Source

首次提交

hanzhengyi 3 years ago
parent
commit
c4ef5664b9
1 changed files with 79 additions and 0 deletions
  1. 79 0
      wxapp2.php

+ 79 - 0
wxapp2.php

@@ -0,0 +1,79 @@
+<?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"
+                }
+            ]
+        }
+    ]
+}
+*/