1
0

mkcenter.html 1.2 KB

12345678910111213141516171819202122232425262728
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>营销中心</title>
  5. #parse("sys/header.html")
  6. <link rel="stylesheet" href="${rc.contextPath}/statics/css/mkcenter.css">
  7. </head>
  8. <body>
  9. <div id="rrapp">
  10. <div>
  11. <div class="self-class" v-for="item in mkCenterMenuList" :item="item"><!-- ngIf: inItem.isServiceAvailable==1 -->
  12. <a target="_self" ng-href="#" class="ng-scope" :href="item.menuUrl">
  13. <div class="list-item clearfix">
  14. <div class="item-img r-2x fl">
  15. <img ng-src="item.picUrl" alt="" :src="item.picUrl">
  16. </div>
  17. <div class="item-intro fl" style="width:70%;">
  18. <p class="intro-title text-elepsis ng-binding">{{item.menuName}} <!-- ngIf: inItem.smallProgram==0 --></p>
  19. <p class="intro-detail text-elepsis ng-binding" :title="item.menuDetail" >{{item.menuDetail}}</p><!-- ngIf: inItem.tagName -->
  20. </div>
  21. </div>
  22. </a><!-- end ngIf: inItem.isServiceAvailable==1 --> <!-- ngIf: inItem.isServiceAvailable==0 -->
  23. </div>
  24. </div>
  25. </div>
  26. <script src="${rc.contextPath}/js/mk/mkcenter.js?_${date.systemTime}"></script>
  27. </body>
  28. </html>