kun 19/10/15 9:22

This commit is contained in:
沈学坤
2019-10-15 09:21:20 +08:00
parent 78a3bc2751
commit b02dd30336
4 changed files with 45 additions and 13 deletions

View File

@@ -27,11 +27,6 @@ body {
}
}
@font-face {
font-family: "MicrosoftYaHei";
src: url("../static/fontFile/MicrosoftYaHei.ttf");
}
@font-face {
font-family: "HanWangKaiBold-Gb5";
src: url("../static/fontFile/HanWangKaiBold-Gb5.ttf");

View File

@@ -14,7 +14,7 @@
:key="index"
@click="$jParams('newsDetails',{id:banner.id})"
>
<img :src="banner.cover" alt />
<img :src="banner.cover ? banner.cover : moren" alt />
<div class="box">{{banner.title}}</div>
</div>
</template>
@@ -201,7 +201,8 @@ export default {
wjx: require("../../../static/img/wjx.png"),
img3: require("../../../static/img/img3.png"),
right: require("../../../static/img/right.png"),
left: require("../../../static/img/left.png")
left: require("../../../static/img/left.png"),
moren: require('../../../static/img/default.jpg'),
},
bgData: [],
};

View File

@@ -602,7 +602,7 @@ export default {
plcode: _this.plcode,
pname: _this.pname,
poster: _this.poster,
respoophone: _this.poffice_tel,
poffice_tel: _this.poffice_tel,
aphone: _this.aphone,
cname: _this.cname,
cpost: _this.cpost,

View File

@@ -5,11 +5,13 @@
<!-- 公告 -->
<div class="top">
<img :src="imgUrl.xlb" alt />
<div v-if="cd !== 0">
<!-- <aside v-for="(list,index) in bgValue.announcement" :key="index"> -->
<div class="div-v" v-if="cd !== 0">
<!-- <aside class="animation" v-for="(list,index) in bgValue.announcement" :key="index">
<span>{{list.name + list.pro_content}}</span>
<time>{{list.protime}}</time>
</aside>-->
<span>{{bgValue.announcement[0].name + bgValue.announcement[0].pro_content}}</span>
<time>{{bgValue.announcement[0].protime}}</time>
<!-- </aside> -->
</div>
<div v-else>
<span>暂无项目申报内容</span>
@@ -627,7 +629,7 @@ export default {
outline: none;
font-size: 18px;
color: #666;
text-align: center
text-align: center;
}
.three {
@@ -648,7 +650,7 @@ export default {
outline: none;
font-size: 18px;
color: #666;
text-align: center
text-align: center;
}
span {
display: inline-block;
@@ -752,6 +754,30 @@ export default {
justify-content: space-between;
align-items: center;
/*
.div-v {
width: 100%;
height: 100%;
overflow: hidden;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: flex-start;
}
.animation {
display: flex;
justify-content: space-between;
animation: myMove 15s linear infinite;
animation-fill-mode: forwards;
width: 95%;
height: 100%;
margin-bottom: 25px;
margin-left: 25px;
}
*/
img {
width: 33px;
height: 27px;
@@ -783,4 +809,14 @@ export default {
}
}
}
/*文字无缝滚动*/
@keyframes myMove {
0% {
transform: translateY(0);
}
100% {
transform: translateY(-150px);
}
}
</style>