60 lines
1002 B
Vue
60 lines
1002 B
Vue
|
|
<!--
|
||
|
|
* @Description: file content
|
||
|
|
* @Author: tc
|
||
|
|
* @Date: 2022-01-01 12:53:00
|
||
|
|
* @LastEditors: your name
|
||
|
|
* @LastEditTime: 2022-01-01 14:06:07
|
||
|
|
-->
|
||
|
|
<template>
|
||
|
|
<div id="follow-us" class="guanzhu" style="padding: 20px;">
|
||
|
|
<h2 class="hometitle">中国一重</h2>
|
||
|
|
<ul>
|
||
|
|
<li class="wx">
|
||
|
|
<img
|
||
|
|
src="@/assets/cfhi.png"
|
||
|
|
alt="中国一重logo"
|
||
|
|
/>
|
||
|
|
|
||
|
|
</li>
|
||
|
|
</ul>
|
||
|
|
|
||
|
|
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default {
|
||
|
|
props: {
|
||
|
|
data: Object
|
||
|
|
},
|
||
|
|
data() {
|
||
|
|
return {
|
||
|
|
|
||
|
|
};
|
||
|
|
},
|
||
|
|
mounted() {},
|
||
|
|
components: {},
|
||
|
|
methods: {
|
||
|
|
|
||
|
|
}
|
||
|
|
};
|
||
|
|
</script>
|
||
|
|
<style>
|
||
|
|
.guanzhu ul li {
|
||
|
|
font-size: 12px;
|
||
|
|
margin-bottom: 10px;
|
||
|
|
background: #fff;
|
||
|
|
color: #525252;
|
||
|
|
line-height: 40px;
|
||
|
|
border: 1px solid #ddd;
|
||
|
|
border-radius: 2px;
|
||
|
|
position: relative;
|
||
|
|
text-overflow: ellipsis;
|
||
|
|
white-space: nowrap;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
.guanzhu .wx img {
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
</style>
|