人人商城

version-home.html 1012B

123456789101112131415161718192021222324252627
  1. {template 'common/header'}
  2. <div class="we7-page-title">首页</div>
  3. <div class="welcome-container" id="js-phoneapp-home-welcome" ng-controller="PhoneappWelcomeCtrl" ng-cloak>
  4. <div class="panel we7-panel">
  5. <div class="panel-heading">
  6. 公告
  7. <a href="./index.php?c=article&a=notice-show" target="_blank" class="pull-right color-default">更多</a>
  8. </div>
  9. <ul class="list-group">
  10. <li class="list-group-item" ng-repeat="notice in notices" ng-if="notices">
  11. <a ng-href="{{notice.url}}" class="text-over" target="_blank" ng-bind="notice.title"></a>
  12. <span class="time pull-right color-gray" ng-bind="notice.createtime"></span>
  13. </li>
  14. <li class="list-group-item text-center" ng-if="!notices">
  15. <span>暂无数据</span>
  16. </li>
  17. </ul>
  18. </div>
  19. </div>
  20. <script>
  21. angular.module('phoneApp').value('config', {
  22. notices: {php echo !empty($notices) ? json_encode($notices) : 'null'},
  23. });
  24. angular.bootstrap($('#js-phoneapp-home-welcome'), ['phoneApp']);
  25. </script>
  26. {template 'common/footer'}