12345678910111213141516171819202122 |
- <?php
- namespace Cas\Controller;
- /**
- * 钛金卡
- * lihuanchun
- */
- class CmbCard extends Controller {
-
- /**
- * 页面:默认首页
- */
- public function doDefault() {
- $this->tpl = 'cmb_card';
- $this->setOutput('title', 'vogue钛金卡');
- }
-
-
- public function display() {
- $this->setOutput('action', 'index');
- return $this->render();
- }
- }
|