12345678910111213141516171819202122232425262728 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>营销中心</title>
- #parse("sys/header.html")
- <link rel="stylesheet" href="${rc.contextPath}/statics/css/mkcenter.css">
- </head>
- <body>
- <div id="rrapp">
- <div>
- <div class="self-class" v-for="item in mkCenterMenuList" :item="item"><!-- ngIf: inItem.isServiceAvailable==1 -->
- <a target="_self" ng-href="#" class="ng-scope" :href="item.menuUrl">
- <div class="list-item clearfix">
- <div class="item-img r-2x fl">
- <img ng-src="item.picUrl" alt="" :src="item.picUrl">
- </div>
- <div class="item-intro fl" style="width:70%;">
- <p class="intro-title text-elepsis ng-binding">{{item.menuName}} <!-- ngIf: inItem.smallProgram==0 --></p>
- <p class="intro-detail text-elepsis ng-binding" :title="item.menuDetail" >{{item.menuDetail}}</p><!-- ngIf: inItem.tagName -->
- </div>
- </div>
- </a><!-- end ngIf: inItem.isServiceAvailable==1 --> <!-- ngIf: inItem.isServiceAvailable==0 -->
- </div>
- </div>
- </div>
- <script src="${rc.contextPath}/js/mk/mkcenter.js?_${date.systemTime}"></script>
- </body>
- </html>
|