yujialong 12 months ago
parent ad5d81c0b3
commit 4620b86d73
  1. 5
      src/components/rightColumns/index.vue
  2. 3
      src/layouts/header/index.vue
  3. 3
      src/pages/article/activity.vue
  4. 4
      src/pages/article/editor.css
  5. 3
      src/pages/article/index.vue
  6. 4
      src/pages/careers/index.vue
  7. 3
      src/pages/column/index.vue
  8. 2
      src/pages/iasf/index.vue
  9. 3
      src/pages/talentCentre/index.vue
  10. 40
      src/pages/team/index.vue

@ -161,9 +161,4 @@ export default {
background-color: $partyTheme;
}
}
@media (max-width: 1200px) {
.right {
width: 100%;
}
}
</style>

@ -57,7 +57,8 @@
<input ref="search"
type="text"
:placeholder="$t('column.titlePlaceholder')"
v-model="title">
v-model="title"
@keydown.enter="handleSearch">
<img class="search-icon"
src="@/assets/images/search.png"
alt=""

@ -167,6 +167,9 @@ export default {
color: #333;
}
/deep/.des {
a {
color: rgb(0, 0, 238);
}
img {
max-width: 100%;
}

@ -84,7 +84,9 @@
}
.tiny-wrap .people .pic {
max-width: 400px;
margin-right: 50px;
}
.tiny-wrap .people .texts {
margin-left: 50px;
}
.tiny-wrap .people h6 {
font-size: 24px;

@ -227,6 +227,9 @@ export default {
border-bottom: 1px solid #d8d8d8;
}
/deep/.des {
a {
color: rgb(0, 0, 238);
}
img {
max-width: 100%;
}

@ -19,7 +19,7 @@
<div class="block">
<div class="inner">
<ul class="card">
<li class="wow fadeInDown"
<!-- <li class="wow fadeInDown"
data-wow-delay="0.1s">
<img class="pic"
:src="modules[1].form.pic"
@ -34,7 +34,7 @@
:class="{'cursor-pointer': isLink(modules[1].form.link.linkName)}"
@click="openLink(modules[1].form)">
</div>
</li>
</li> -->
<li class="wow fadeInDown"
data-wow-delay="0.3s">
<img class="pic"

@ -1365,6 +1365,9 @@ export default {
border-bottom: 1px solid #d8d8d8;
}
/deep/.des {
a {
color: rgb(0, 0, 238);
}
img {
max-width: 100%;
}

@ -314,7 +314,7 @@ export default {
},
mounted () {
this.height = window.innerHeight + 'px'
new WOW().init()
this.$store.getters.getModelType && new WOW().init()
document.onscroll = this.throttle(this.scroll, 200)
},

@ -114,7 +114,7 @@ export default {
json[4].list = json[4].list.filter(e => e.isEnable)
json[4].list.unshift({
title: '人才中心'
title: '加入我们'
})
json[4].list.forEach((e, i) => {
e.id = i
@ -198,7 +198,6 @@ export default {
.texts {
left: 50px;
right: auto;
background: rgba(255, 255, 255, 0.43);
}
}
}

@ -10,28 +10,24 @@
</div>
<div class="content">
<div class="left">
<ul class="list">
<template v-for="(item, i) in modules[1].list">
<li v-if="item.isEnable"
:key="i"
:class="{'cursor-pointer': isLink(item.link.linkName)}"
@click="openLink(item)">
<img :src="item.pic"
alt=""
class="pic">
<div class="texts">
<h6>{{ item.title }}</h6>
<p class="job">{{ item.subTitle }}</p>
<div class="text"
v-html="item.des"></div>
</div>
</li>
</template>
</ul>
</div>
<RightColumns />
<ul class="list">
<template v-for="(item, i) in modules[1].list">
<li v-if="item.isEnable"
:key="i"
:class="{'cursor-pointer': isLink(item.link.linkName)}"
@click="openLink(item)">
<img :src="item.pic"
alt=""
class="pic">
<div class="texts">
<h6>{{ item.title }}</h6>
<p class="job">{{ item.subTitle }}</p>
<div class="text"
v-html="item.des"></div>
</div>
</li>
</template>
</ul>
</div>
</div>
</template>

Loading…
Cancel
Save