7e47ce238b
添加了管理后台所需的图片资源、Excel文件、安装程序以及设计相关的图片文件
59 lines
1.5 KiB
PHP
59 lines
1.5 KiB
PHP
<?php
|
|
//-------------------------------订货须知-界面
|
|
header("Content-type: text/html; charset=utf-8");
|
|
$json_data="{";
|
|
if(THIS_IN!="edt_ipad")
|
|
exit("错误的访问!");
|
|
$uid=check_cookie_jxs();
|
|
$json_data.="\"uid\":\"".$uid."\",";
|
|
switch($_a){
|
|
case "menu_icon_survey":
|
|
$json_data.="\"_a\":\"".$_a."\",";
|
|
if(is_array($sys_menu_other)){
|
|
$ct=0;
|
|
for($i=0;$i<count($sys_menu_other);$i++){
|
|
$arr1=$sys_menu_other[$i];
|
|
if($arr1[2]==$_a){
|
|
$json_data.="\"title\":\"".$arr1[0]."\",";
|
|
$json_data.="\"url\":\"".$arr1[1]."\",";
|
|
$ct++;
|
|
break;
|
|
}
|
|
}
|
|
if($ct>0){
|
|
$json_data.="\"code\":101,";
|
|
}else{
|
|
$json_data.="\"code\":0,\"msg\":\"模块错误.请确认config文件wjdc设置路径正确\",";
|
|
}
|
|
}else{
|
|
$json_data.="\"code\":0,\"msg\":\"请先开启问卷调查.\",";
|
|
}
|
|
break;
|
|
case "menu_icon_ppt":
|
|
case "menu_icon_dhxz":
|
|
$json_data.="\"_a\":\"".$_a."\",";
|
|
if(is_array($sys_menu_other)){
|
|
$ct=0;
|
|
for($i=0;$i<count($sys_menu_other);$i++){
|
|
$arr1=$sys_menu_other[$i];
|
|
if($arr1[2]==$_a){
|
|
$json_data.="\"title\":\"".$arr1[0]."\",";
|
|
$json_data.="\"url\":\"".$arr1[1]."\",";
|
|
$ct++;
|
|
break;
|
|
}
|
|
}
|
|
if($ct>0){
|
|
$json_data.="\"code\":100,";
|
|
}else{
|
|
$json_data.="\"code\":0,\"msg\":\"模块错误.请确认config文件dhxz设置路径正确\",";
|
|
}
|
|
}else{
|
|
$json_data.="\"code\":0,\"msg\":\"请先开启订货须知.\",";
|
|
}
|
|
break;
|
|
}
|
|
$json_data=substr($json_data,0,-1)."}";
|
|
echo $json_data;
|
|
?>
|