Help.php 234 B

123456789101112131415
  1. <?php
  2. namespace store\Admin;
  3. use Dever;
  4. class Help extends Core
  5. {
  6. # 列表
  7. public function getList()
  8. {
  9. $data = Dever::db('main/help')->select_page(array('type' => 3));
  10. return $data;
  11. }
  12. }