|
@@ -67,27 +67,78 @@
|
|
|
<!--====== COMMON BREADCRUMB END ======-->
|
|
|
|
|
|
|
|
|
- <!--====== SOLUTION SECTION START ======-->
|
|
|
|
|
|
|
|
|
<!--====== SOLUTION TYPE START ======-->
|
|
|
<section style="background:#F4F8FD" class="solutionType">
|
|
|
<div class="container" style="text-align:center">
|
|
|
<div class=" solutionTypeOne" v-for="(item,i) in solutionTypes" :class="item.id == colin ? 'active' : ''" @click="facilityClick(i, item)">
|
|
|
- <img src="../assets/img/solution/type1.svg" alt="">
|
|
|
- <img src="../assets/img/solution/type1-active.svg" alt="" class="type-active">
|
|
|
+ <div style="width:40px;height:40px;;overflow:hidden;margin:0 auto" >
|
|
|
+ <img :src="item.imagePath" alt="">
|
|
|
+ </div>
|
|
|
<P>{{item.categoryName}}</P>
|
|
|
</div>
|
|
|
</div>
|
|
|
</section>
|
|
|
<!--====== SOLUTION TYPE END ======-->
|
|
|
|
|
|
+
|
|
|
<section class="solution-section pt-40">
|
|
|
- <div class="container pt-40" v-for="arr in array">
|
|
|
+ <div class="container pt-40 pt-40" v-for="arr in solutionArray">
|
|
|
+ <div class="section-title both-border mb-20">
|
|
|
+ <span class="title-tag2">{{arr.title}}</span>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- type1 背景 开始 -->
|
|
|
+ <div class="row align-items-center justify-content-center" v-if="arr.lmtitle === '1'">
|
|
|
+ <div class="col-md-12 mb-20" v-html="arr.content">
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <!-- 1 背景 结束 -->
|
|
|
+
|
|
|
+ <!-- 2 痛点与挑战 开始 -->
|
|
|
+ <div class="row align-items-center justify-content-center" v-if="arr.lmtitle === '2'">
|
|
|
+ <div class="col-md-12 mb-20" v-html="arr.content">
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <!-- 2 痛点与挑战 结束 -->
|
|
|
+
|
|
|
+ <!-- 3 方案概述 开始 -->
|
|
|
+ <div class="row align-items-center justify-content-center" v-if="arr.lmtitle === '3'">
|
|
|
+ <div class="col-md-12 mb-20" v-html="arr.content">
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <!-- 3 方案概述 结束 -->
|
|
|
+
|
|
|
+ <!-- 4 系统架构 开始 -->
|
|
|
+ <div class="row align-items-center justify-content-center" v-if="arr.lmtitle === '4'">
|
|
|
+ <div class="pt-40 mb-40 col-md-12 solution-img" >
|
|
|
+ <img :src="arr.image" alt="">
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <!-- 4 系统架构 结束 -->
|
|
|
+
|
|
|
+ <!-- 5 功能模块 开始 -->
|
|
|
+ <div class="row align-items-center justify-content-center" v-if="arr.lmtitle === '5'">
|
|
|
+ <div class="col-md-12 mb-20" v-html="arr.content">
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <!-- 5 功能模块 结束 -->
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ </div>
|
|
|
+ <br>
|
|
|
+ <br>
|
|
|
+
|
|
|
+
|
|
|
+ <div class="container pt-40" v-for="arr in array" style="display:none">
|
|
|
<div class="section-title both-border mb-20">
|
|
|
<span class="title-tag2">{{arr.title}}</span>
|
|
|
</div>
|
|
|
|
|
|
+
|
|
|
+
|
|
|
<!-- ordinary普通样式 开始 -->
|
|
|
<div class="row align-items-center justify-content-center" v-if="arr.cssType === 'ordinary'" v-for="cont in arr.content">
|
|
|
<div class="col-md-12 mb-20" v-if="cont.text_content != ''">
|
|
@@ -179,7 +230,16 @@
|
|
|
</div>
|
|
|
<!-- doubleTabs双重tabs切换样式 结束 -->
|
|
|
</div>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
</section>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
<!--====== SOLUTION SECTION END ======-->
|
|
|
|
|
|
<!--====== FOOTER PART START ======-->
|