This repository has been archived on 2026-06-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
EDT/ipad/module/common.php
T
wsh5485 7e47ce238b chore: 添加多个图片和资源文件
添加了管理后台所需的图片资源、Excel文件、安装程序以及设计相关的图片文件
2025-06-15 13:04:37 +08:00

24 lines
540 B
PHP

<?php
header("Content-type: text/html; charset=utf-8");
$json_data="{";
switch($_a){
case "jd_button":
//取得交单状态
$json_data.="\"code\":99,";
$is_brand=is_brand();
$json_data.="\"is_brand\":\"".$is_brand."\",";
$show_jd=get_set("show_jd");
$json_data.="\"show_jd\":\"".$show_jd."\",";
//is_jd
$json_data.="\"is_jd\":\"".$msg_client["is_jd"]."\",";
//is_qr
$json_data.="\"is_qr\":\"".$msg_client["is_checked"]."\",";
break;
default:
//
break;
}
$json_data=substr($json_data,0,-1)."}";
echo $json_data;
?>