1
This commit is contained in:
parent
a9cd952636
commit
92c812fa06
@ -71,8 +71,8 @@
|
||||
},
|
||||
"index": {
|
||||
"companyProfile": "COMPANY PROFILE",
|
||||
"corporateName": "SINOTRUCK HOWO SALES CO.,LTD.",
|
||||
"companyProfileContent": "SINOTRUCK HOWO SALES CO.,LTD.is located in Jinan city, Shandong Province, P.R. China. It is the cradle and leading production base of the heavy-duty truck industry in China. It is famous for developing and manufacturing SINOTRUK HOWO tractor trucks, dump trucks, fuel tanker trucks and concrete mixer truck, water spraying trucks etc.",
|
||||
"corporateName": "Shandong Chengda Truck Trailer Co., Ltd.",
|
||||
"companyProfileContent": "Shandong Chengda Truck Trailer Co., Ltd.is located in Jinan city, Shandong Province, P.R. China. It is the cradle and leading production base of the heavy-duty truck industry in China. It is famous for developing and manufacturing SINOTRUK HOWO tractor trucks, dump trucks, fuel tanker trucks and concrete mixer truck, water spraying trucks etc.",
|
||||
"highQuality": "HIGH QUALITY",
|
||||
"LEadingbBraNd": "LEADING BRAND",
|
||||
"experiencedStaff": "EXPERIENCED STAFF",
|
||||
@ -86,7 +86,7 @@
|
||||
},
|
||||
"aboutUs": {
|
||||
"AboutUs": "About Us",
|
||||
"company": "Sinotruck Howo Sales Co.,Ltd",
|
||||
"company": "Shandong Chengda Truck Trailer Co., Ltd.",
|
||||
"address": "Room 2403, No.1 Yinzuo Jingdu Mansion, Shunhe East Street No.66, District Shizhong, Jinan city, shandong province, China"
|
||||
},
|
||||
"contactUs": {
|
||||
|
@ -25,7 +25,7 @@ export default {
|
||||
},
|
||||
{
|
||||
name: 'description',
|
||||
content: 'Sinotruck Howo Sales Co.,Ltd is one of the most professional trailer, truck, trailer parts, truck parts manufacturers in China. Our factory brings here a great selection of truck for sale. Welcome to consult price with us.'
|
||||
content: 'Shandong Chengda Truck Trailer Co., Ltd. is one of the most professional trailer, truck, trailer parts, truck parts manufacturers in China. Our factory brings here a great selection of truck for sale. Welcome to consult price with us.'
|
||||
}
|
||||
],
|
||||
link: [
|
||||
|
@ -78,7 +78,7 @@
|
||||
<!-- <p>{{ $t('common.truckModel') }}: ZZ4257N3247C1</p>
|
||||
<p>{{ $t('common.dimension') }}: 6800x2490x3668</p>
|
||||
<p>{{ $t('common.approachingAngle/Departure') }}: 16/70</p> -->
|
||||
<nuxt-link class="view-details" :to="`/products/${son.id}?catgId=${son.catgId}&maxCatgId=660179025d0e2e0e4263db0eec86a8cc`">
|
||||
<nuxt-link class="view-details" :to="`/products/${son.id}?catgId=${son.catgId}&maxCatgId=${son.maxCatgId}&title=${son.title}`">
|
||||
{{ $t('common.viewDetails') }}
|
||||
<img src="~assets/image/icon/goto.png" :alt="$t('common.viewDetails')" />
|
||||
</nuxt-link>
|
||||
@ -89,10 +89,10 @@
|
||||
</template>
|
||||
</b-carousel-slide>
|
||||
</b-carousel>
|
||||
<template v-if="hotProductList.length >0">
|
||||
<template v-if="hotProductList[0].length >0">
|
||||
<nuxt-link
|
||||
class="more box_shadow"
|
||||
:to="`/products?maxCatgId=${hotProductList[0].maxCatgId}`"
|
||||
:to="`/products?maxCatgId=${hotProductList[0][0].maxCatgId}`"
|
||||
>
|
||||
{{ $t('common.readMore') }}
|
||||
</nuxt-link>
|
||||
@ -107,7 +107,7 @@
|
||||
<ul style="margin-top: 1.25rem;" class="row pl-0">
|
||||
<li class="col-12 col-md-6 mb-4" v-for="item in productTopList" :key="item.id">
|
||||
<article class="products-item box_shadow">
|
||||
<nuxt-link :to="`/products/${item.id}?catgId=${item.catgId}&maxCatgId=660179025d0e2e0e4263db0eec86a8cc`" class="row">
|
||||
<nuxt-link :to="`/products/${item.id}?catgId=${item.catgId}&maxCatgId=${item.maxCatgId}&title=${item.title}`" class="row">
|
||||
<div class="col-7 col-md-6 pr-0">
|
||||
<b-img :src="item.mainPic" fluid :alt="item.title"></b-img>
|
||||
</div>
|
||||
@ -154,7 +154,7 @@
|
||||
<div class="pc-news-footer">
|
||||
<nuxt-link
|
||||
class="more box_shadow"
|
||||
:to="`/article-page/${hotNewsList[0].id}?&maxCatgId=${hotNewsList[0].maxCatgId}&catgId=${hotNewsList[0].catgId}`"
|
||||
:to="`/article-page/${hotNewsList[0].id}?&maxCatgId=${hotNewsList[0].maxCatgId}&catgId=${hotNewsList[0].catgId}&title=${hotNewsList[0].title}`"
|
||||
>
|
||||
{{ $t('common.readMore') }}
|
||||
</nuxt-link>
|
||||
@ -165,7 +165,7 @@
|
||||
<ul class="col-12 col-md-6">
|
||||
<li class="new-item box_shadow mb-3" v-for="item in hotNewsList.slice(1, 5)" :key="item.id">
|
||||
<article>
|
||||
<nuxt-link class="row" :to="`/article-page/${item.id}?&maxCatgId=${item.maxCatgId}&catgId=${item.catgId}`">
|
||||
<nuxt-link class="row" :to="`/article-page/${item.id}?&maxCatgId=${item.maxCatgId}&catgId=${item.catgId}&title=${item.title}`">
|
||||
<img class="col-5 cover" :src="item.mainPic" fluid-grow :alt="item.title"></img>
|
||||
<div class="news-info col-7">
|
||||
<h4 class="text-ellipsis">{{ item.title }}</h4>
|
||||
@ -289,7 +289,6 @@ export default {
|
||||
}
|
||||
// 普通产品前十
|
||||
const {data: productTopList} = await $axios.get('/web/product')
|
||||
console.log(productTopList)
|
||||
// 热门新闻
|
||||
const { data: hotNewsList } = await $axios.get('/web/hotNews')
|
||||
return {
|
||||
|
@ -198,6 +198,7 @@ export default {
|
||||
}
|
||||
}
|
||||
},
|
||||
watchQuery: ['maxCatgId','title'],
|
||||
computed: {
|
||||
...mapState(['footerInfo'])
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user