1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace app\api\controller;
- use app\api\logic\StatisticsLogic;
- use think\Controller;
- /**
- * 套餐配送
- *
- * @author wj
- * @date 2022-12-03
- */
- class Statistics extends Controller
- {
- /**
- * 日间照料中心数据统计
- *
- * @return void
- * @author wj
- * @date 2023-01-31
- */
- public function getmealcenterlist()
- {
- $post = request()->post();
- $l_s = new StatisticsLogic();
- $result = $l_s->getmealcenterlist($post);
- if (empty($result['status'])) {
- return backjson2(0, $result['msg']);
- }
- return backjson2(200, $result['msg'], $result['data']);
- }
- }
|