123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <ion-view view-title="轮播图详情页">
- <div class="bar bar-header" style="background-color:transparent;background-image: none;">
- <button class="button button-icon icon ion-ios-arrow-left" data-tap-disabled="true" ng-click="goback()" style="color:#fff;"></button>
- </div>
- <ion-content>
- <div class="mod-body">
- <!--正文Start-->
- <div class="activityAll">
- <div class="topBanner">
- <div class="leftInfos">
- <h3 ng-if="defaultLan == 'Chinese'">
- 技术转移{{versionno}}
- <span class="taps"></span>
- </h3>
- <h3 ng-if="defaultLan == 'English'">
- Technology transfer{{versionno}}
- </h3>
- <p ng-if="defaultLan == 'Chinese'">
- <span ng-repeat="r in subTitList track by $index" ng-bind="r.title"></span>
- </p>
- <p ng-if="defaultLan == 'English'">
- <span>Resource crowdfunding Distributed Architecture Multi dimensional evaluation</span>
- </p>
- </div>
- <div class="rightImgs" ng-if="defaultLan == 'Chinese'"><em></em></div>
- <div class="underWave"></div>
- </div>
- <div class="estensionAll" ng-repeat="h in bannerContentList track by $index" ng-if="defaultLan == 'Chinese'">
- <h3 ng-bind="h.title"></h3>
- <p ng-bind="h.content"></p>
- <div class="underImgs">
- <img ng-src="{{h.systemPictureList[0].originalName|imgfilter}}"/>
- </div>
- </div>
- <div class="estensionAll" ng-if="defaultLan == 'English'">
- <h3>Resource crowdfunding</h3>
- <p>Ordinary app users can obtain and share the latest content of science and technology resource library, and obtain corresponding points in the visit and input of resources in technology transfer.</p>
- <h3>Distributed Architecture</h3>
- <p>The platform provides distributed deployment and multi node technology transfer cloud platform for regional resource database.</p>
- <h3>Multi dimensional evaluation</h3>
- <p>App users become the auditors of technical resources. The multi-dimensional evaluation of demand and achievements makes the market of technology transfer grow explosively!</p>
- </div>
- <div class="underMiniBanner">
- <h3 ng-if="defaultLan == 'Chinese'">App技转更容易<span>需求成果匹配更简单</span></h3>
- <h3 ng-if="defaultLan == 'English'">App technology transfer is easier<span>The matching of requirements and achivements is simpler</span></h3>
- </div>
- </div>
- <!--正文End-->
- </div>
- </ion-content>
- </ion-view>
|