@@ -181,9 +181,6 @@
-
了解详情
@@ -242,7 +239,8 @@ export default {
computed: {
...mapGetters([
'homeTypeList',
- 'newsList'
+ 'newsList',
+ 'caseList'
])
},
@@ -252,9 +250,15 @@ export default {
orderField: 'sort'
})
+ this.getCaseList({
+ limit: 4,
+ type: 'biz'
+ })
+
this.getNewsList({
limit: 4
})
+
$(".products #productsTab div a").hover(
function () {
$(this).find("img").stop().animate({ "opacity": "1" }, 700)
@@ -276,6 +280,7 @@ export default {
setNavPath: 'app/setNavPath',
getHomeCniyvTypeList: 'cniyv/getHomeCniyvTypeList',
getNewsList: 'news/getNewsLists',
+ getCaseList: 'cases/getCaseLists'
}),
handleToProducts(e) {
@@ -292,7 +297,14 @@ export default {
localStorage.setItem('menuPath', '/news')
localStorage.setItem('newsTitle', activeTitle)
this.setNavPath('/news')
- }
+ },
+
+ handleSetBusinessTitle(e) {
+ const activeTitle = e.target.dataset.title
+ localStorage.setItem('menuPath', '/business')
+ localStorage.setItem('bizTitle', activeTitle)
+ this.setNavPath('/business')
+ },
}
}
@@ -352,6 +364,20 @@ export default {
color: #fff;
}
+h2 {
+ color: #fff;
+ font-weight: bold;
+ margin-bottom: 20px;
+}
+
+.centera a {
+ color: #e6e6e6;
+}
+
+.joina {
+ margin: 0;
+}
+
.text-left a {
overflow: hidden;
white-space: nowrap;
@@ -359,6 +385,7 @@ export default {
display: inline-block;
width: 100%;
padding-left: 5px !important;
+ font-size: 14px;
}
.video-top {
@@ -402,6 +429,10 @@ export default {
}
}
+.biza {
+ color: #e6e6e6;
+}
+
.title-ell {
overflow: hidden;
white-space: nowrap;
diff --git a/src/views/ProductDetail/index.vue b/src/views/ProductDetail/index.vue
index 03aada4..3e36b79 100644
--- a/src/views/ProductDetail/index.vue
+++ b/src/views/ProductDetail/index.vue
@@ -128,8 +128,13 @@ export default {