CmbCard.class.php 350 B

12345678910111213141516171819202122
  1. <?php
  2. namespace Cas\Controller;
  3. /**
  4. * 钛金卡
  5. * lihuanchun
  6. */
  7. class CmbCard extends Controller {
  8. /**
  9. * 页面:默认首页
  10. */
  11. public function doDefault() {
  12. $this->tpl = 'cmb_card';
  13. $this->setOutput('title', 'vogue钛金卡');
  14. }
  15. public function display() {
  16. $this->setOutput('action', 'index');
  17. return $this->render();
  18. }
  19. }