12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- $view
- ->import('inc/head')
- ->set('info', 'task/info.one')
- ->set('title', '$info.name')
- ->set('name', 'task')
- ->fetch('header .back@href', '<{Dever::url("task/list", "main")}>')
- ->render('info', array
- (
- '.wrapper' => array
- (
- 'dt' => '$v.name',
- '.ico-jc' => '$v.cate.name',
- '.ico-person' => '<{$v.user_num}>人领取',
- '.ico-time' => '任务到期:<{$v.edate_str}>',
- '.tk-coin' => array
- (
- 'span|0' => '$v.list_score',
- ),
- '.tk-coin' => array
- (
- 'span|1' => '$v.list_group_score',
- ),
- '.tk-article' => '$v.content',
- '.ctrls|0' => array
- (
- 'section' => '$v.button.desc',
- 'a' => array
- (
- 'class' => '$v.button.class',
- 'href' => '$v.button.link',
- ),
- ),
- '.ctrls|1' => array
- (
- 'style' => 'display:none',
- ),
- ),
- ))
- ->import('inc/foot')
- ->display();
|