123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
- $view
- ->set('name', 'course')
- ->import('inc/head')
- ->fetch(array('.product p', 0), '<{Dever::load("main/content.getMenuName", "course")}>')
- ->fetch('.product .en', '<{Dever::load("main/content.getMenuEName", "course")}>')
- # 课程管理
- ->loop
- (
- '.content',
- 'main/content.course?method=getPage',
- array
- (
- 'img' => array
- (
- 'src' => '$v.pic_cover',
- 'title' => '$v.name',
- 'alt' => '$v.name',
- 'width' => '500px',
- ),
- '.label' => array
- (
- 'html' => '$v.name',
- ),
- '.detail' => array
- (
- 'html' => '$v.desc',
- ),
- 'a' => array
- (
- 'href' => '$v.link',
- ),
- )
- )
- ->fetch('#newsPage', 'Dever::page("current")')
- ->import('inc/foot')
- ->display();
|