chore: 添加多个图片和资源文件
添加了管理后台所需的图片资源、Excel文件、安装程序以及设计相关的图片文件
This commit is contained in:
@@ -0,0 +1,58 @@
|
||||
<?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;
|
||||
?>
|
||||
Reference in New Issue
Block a user