123456789101112131415161718192021222324252627 |
- <?php
- # 后续添加:自定义的待办、快捷方式、数据概览、推荐列表等
- $view
- ->fetch('.dever-notice@style', 'manage/auth.notice', 'none')
- ->loop
- (
- '#dever-notice div',
- 'manage/auth.notice',
- array
- (
- 'a' => array
- (
- 'href' => '<{Dever::url("notice?where_id=".$v.id."&where_config=".$v.config)}>',
- 'title' => '<{$v.name}>',
- 'html' => '<{$v.name}>',
- 'class' => 'layui-bg-red',
- 'style' => 'background-color: #FF5722!important;',
- ),
- )
- )
- # display
- ->display();
|