index_list.php 373 B

1
  1. <?php /** * Created by PhpStorm. * User: wanggagtao * Date: 2019/4/18 * Time: 10:47 AM */ try { $index_list=Index::getIndexList(); if(empty($index_list)) throw new MyException("指数列表不存在",101); echo action_msg_data(API::SUCCESS_MSG, API::SUCCESS, $index_list); }catch (MyException $e){ $api->ApiError($e->getCode(), $e->getMessage()); }