Title.php 221 B

123456789101112131415161718
  1. <?php
  2. namespace app\component\controller;
  3. /**
  4. * 顶部标题·组件
  5. */
  6. class Title extends BaseDiyView
  7. {
  8. /**
  9. * 后台编辑界面
  10. */
  11. public function design()
  12. {
  13. return $this->fetch("title/design.html");
  14. }
  15. }