apicp.TablePositionList.php
491 Bytes
<?php
/**
* 跨域处理
*/
header('Access-Control-Allow-Origin:*');
header("Access-Control-Allow-Methods:GET,POST");
/**
* 返回桌位编号
*/
include "Common/JsonResponse.php";
include "Common/mysqlHelper.php";
include "Common/WechatHelper.php";
include "Common/Encrypter.php";
$mysql = new mysqlHelper();
$data = $mysql->fetchAll("SELECT number FROM table_position");
// 返回桌位列表
JsonResponse::result(['data' => $data]);