|
@@ -1,22 +1,18 @@
|
|
|
<template>
|
|
|
<div id="top">
|
|
|
<el-row>
|
|
|
- <el-col :span="24" class="top">
|
|
|
- <el-col :span="19" class="title"> 您好,欢迎访问{{ info.name }}! </el-col>
|
|
|
- <!-- <el-col :span="4" class="fenxiang">
|
|
|
- <el-col :span="12" class="weibo">
|
|
|
- <el-link :underline="false">
|
|
|
- <el-image :src="weibo"></el-image>
|
|
|
- <span>官方微博</span>
|
|
|
- </el-link>
|
|
|
+ <el-col :span="24">
|
|
|
+ <el-image :src="info.banner" style="height:340px;" fit="fit"></el-image>
|
|
|
+ <div class="w_1270">
|
|
|
+ <el-col :span="24" class="info">
|
|
|
+ <el-col :span="2">
|
|
|
+ <el-image style="width:112px;height:112px;" :src="info.logo"></el-image>
|
|
|
</el-col>
|
|
|
- <el-col :span="12" class="weibo">
|
|
|
- <el-link :underline="false">
|
|
|
- <el-image :src="weixin"></el-image>
|
|
|
- <span>官方微信</span>
|
|
|
- </el-link>
|
|
|
+ <el-col :span="22" style="padding:30px 10px;">
|
|
|
+ <p class="title">{{ info.name }}</p>
|
|
|
</el-col>
|
|
|
- </el-col> -->
|
|
|
+ </el-col>
|
|
|
+ </div>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
</div>
|
|
@@ -29,10 +25,7 @@ export default {
|
|
|
info: null,
|
|
|
},
|
|
|
components: {},
|
|
|
- data: () => ({
|
|
|
- weibo: require('@/assets/微博.png'),
|
|
|
- weixin: require('@/assets/微信.png'),
|
|
|
- }),
|
|
|
+ data: () => ({}),
|
|
|
created() {},
|
|
|
computed: {},
|
|
|
methods: {},
|
|
@@ -40,27 +33,32 @@ export default {
|
|
|
</script>
|
|
|
|
|
|
<style lang="less" scoped>
|
|
|
-.top {
|
|
|
- height: 40px;
|
|
|
- overflow: hidden;
|
|
|
- background: #f5f5f5;
|
|
|
+.w_1270 {
|
|
|
+ width: 1270px;
|
|
|
+ margin: 0 auto;
|
|
|
}
|
|
|
-.top .title {
|
|
|
- height: 40px;
|
|
|
- line-height: 40px;
|
|
|
- color: #535362;
|
|
|
- font-size: 16px;
|
|
|
+p {
|
|
|
+ padding: 0;
|
|
|
+ margin: 0;
|
|
|
}
|
|
|
-.weibo {
|
|
|
- height: 40px;
|
|
|
+.info {
|
|
|
+ position: absolute;
|
|
|
+ top: 25%;
|
|
|
+ left: 5%;
|
|
|
+ width: 93%;
|
|
|
}
|
|
|
-.weibo .el-image {
|
|
|
- float: left;
|
|
|
- padding: 4px;
|
|
|
+.info .title {
|
|
|
+ font-size: 42px;
|
|
|
+ color: #1770c4;
|
|
|
+ font-family: cursive;
|
|
|
+ text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
|
|
|
+ font-weight: 600;
|
|
|
}
|
|
|
-.weibo span {
|
|
|
- float: left;
|
|
|
- height: 40px;
|
|
|
- line-height: 40px;
|
|
|
+.info .english {
|
|
|
+ font-size: 24px;
|
|
|
+ color: #1770c4;
|
|
|
+ font-family: cursive;
|
|
|
+ text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
|
|
|
+ font-weight: 600;
|
|
|
}
|
|
|
</style>
|