123456789101112131415161718192021222324252627 |
- {template 'common/header'}
- <div class="we7-page-title">首页</div>
- <div class="welcome-container" id="js-phoneapp-home-welcome" ng-controller="PhoneappWelcomeCtrl" ng-cloak>
- <div class="panel we7-panel">
- <div class="panel-heading">
- 公告
- <a href="./index.php?c=article&a=notice-show" target="_blank" class="pull-right color-default">更多</a>
- </div>
- <ul class="list-group">
- <li class="list-group-item" ng-repeat="notice in notices" ng-if="notices">
- <a ng-href="{{notice.url}}" class="text-over" target="_blank" ng-bind="notice.title"></a>
- <span class="time pull-right color-gray" ng-bind="notice.createtime"></span>
- </li>
- <li class="list-group-item text-center" ng-if="!notices">
- <span>暂无数据</span>
- </li>
- </ul>
- </div>
-
- </div>
- <script>
- angular.module('phoneApp').value('config', {
- notices: {php echo !empty($notices) ? json_encode($notices) : 'null'},
- });
- angular.bootstrap($('#js-phoneapp-home-welcome'), ['phoneApp']);
- </script>
- {template 'common/footer'}
|