xiugai
This commit is contained in:
parent
b343b7fed0
commit
5107d08322
|
@ -7,6 +7,7 @@
|
||||||
"build": "vue-cli-service build"
|
"build": "vue-cli-service build"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"@element-plus/icons-vue": "^2.3.1",
|
||||||
"axios": "^1.6.8",
|
"axios": "^1.6.8",
|
||||||
"core-js": "^3.8.3",
|
"core-js": "^3.8.3",
|
||||||
"element-plus": "^2.7.2",
|
"element-plus": "^2.7.2",
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 4.8 KiB After Width: | Height: | Size: 1.8 KiB |
Binary file not shown.
After Width: | Height: | Size: 39 KiB |
Binary file not shown.
After Width: | Height: | Size: 1.8 KiB |
|
@ -23,7 +23,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="main-img">
|
<div class="main-img">
|
||||||
<el-carousel height="8.5625rem">
|
<el-carousel height="8.5625rem" :pause-on-hover="false">
|
||||||
<el-carousel-item v-for="item in imgList" :key="item">
|
<el-carousel-item v-for="item in imgList" :key="item">
|
||||||
<img :src="$baseUrl+item.path" alt="">
|
<img :src="$baseUrl+item.path" alt="">
|
||||||
</el-carousel-item>
|
</el-carousel-item>
|
||||||
|
|
|
@ -37,7 +37,6 @@ export default {
|
||||||
font-size: .25rem;
|
font-size: .25rem;
|
||||||
color: #505050;
|
color: #505050;
|
||||||
line-height: .6rem;
|
line-height: .6rem;
|
||||||
min-height: 800px;
|
|
||||||
img{
|
img{
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: auto;
|
height: auto;
|
||||||
|
@ -57,9 +56,10 @@ export default {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
.back{
|
.back{
|
||||||
position: fixed;
|
display: flex;
|
||||||
bottom: 3.75rem;
|
justify-content: center;
|
||||||
right: 1.25rem;
|
transform: rotate(90deg);
|
||||||
|
margin-bottom: 1rem;
|
||||||
img{
|
img{
|
||||||
width: 1.25rem;
|
width: 1.25rem;
|
||||||
height: auto;
|
height: auto;
|
||||||
|
|
|
@ -67,18 +67,18 @@
|
||||||
<div class="list">
|
<div class="list">
|
||||||
<div class="left">
|
<div class="left">
|
||||||
<div class="item" v-for="(item,i) in information" @click="jumpToArticle(item.id)">
|
<div class="item" v-for="(item,i) in information" @click="jumpToArticle(item.id)">
|
||||||
<span class="title" v-if="item.tittle.length<=25">{{item.tittle}}</span>
|
<span class="title" v-if="item.tittle.length<=35">{{item.tittle}}</span>
|
||||||
<span class="title" v-else>{{item.tittle.slice(0,25)}}...</span>
|
<span class="title" v-else>{{item.tittle.slice(0,35)}}...</span>
|
||||||
<span class="time">{{item.submitTime}}</span>
|
<span class="time">{{item.submitTime}}</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="right">
|
<!-- <div class="right">
|
||||||
<div class="item" v-for="(item,i) in information.slice(0,2)" @click="jumpToArticle(item.id)">
|
<div class="item" v-for="(item,i) in information.slice(0,2)" @click="jumpToArticle(item.id)">
|
||||||
<img :src="$baseUrl+item.img" alt="">
|
<img :src="$baseUrl+item.img" alt="">
|
||||||
<div class="title" v-if="item.tittle.length>20">{{item.tittle.slice(0,20)}}...</div>
|
<div class="title" v-if="item.tittle.length>20">{{item.tittle.slice(0,20)}}...</div>
|
||||||
<div class="title" v-else>{{item.tittle}}</div>
|
<div class="title" v-else>{{item.tittle}}</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div> -->
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -211,6 +211,7 @@
|
||||||
color: #333333;
|
color: #333333;
|
||||||
line-height: .6rem;
|
line-height: .6rem;
|
||||||
font-family: Source Han Sans CN;
|
font-family: Source Han Sans CN;
|
||||||
|
text-indent: 2em;
|
||||||
}
|
}
|
||||||
.menu{
|
.menu{
|
||||||
display: flex;
|
display: flex;
|
||||||
|
@ -256,7 +257,6 @@
|
||||||
margin-bottom: .55rem;
|
margin-bottom: .55rem;
|
||||||
position: relative;
|
position: relative;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
|
||||||
img{
|
img{
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
@ -271,9 +271,9 @@
|
||||||
color: #FFFFFF;
|
color: #FFFFFF;
|
||||||
line-height: .55rem;
|
line-height: .55rem;
|
||||||
font-family: Source Han Sans CN;
|
font-family: Source Han Sans CN;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -303,12 +303,12 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.list{
|
.list{
|
||||||
margin: 0 2.375rem;
|
margin: 0 3.375rem;
|
||||||
margin-bottom: 1rem;
|
margin-bottom: 1rem;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
.left{
|
.left{
|
||||||
width: 8.25rem;
|
width: 100%;
|
||||||
.item{
|
.item{
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: .75rem;
|
height: .75rem;
|
||||||
|
@ -319,12 +319,26 @@
|
||||||
color: #282828;
|
color: #282828;
|
||||||
border-bottom: .0125rem solid #DADADA;
|
border-bottom: .0125rem solid #DADADA;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
position: relative;
|
||||||
|
&::before{
|
||||||
|
position: absolute;
|
||||||
|
content: '';
|
||||||
|
width: .125rem;
|
||||||
|
height: .125rem;
|
||||||
|
border-radius: 50%;
|
||||||
|
background-color: #e93535;
|
||||||
|
left: .0625rem;
|
||||||
|
}
|
||||||
&:hover{
|
&:hover{
|
||||||
color: #189eef;
|
color: #189eef;
|
||||||
}
|
}
|
||||||
&:last-child{
|
&:last-child{
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
|
.title{
|
||||||
|
font-size: .25rem;
|
||||||
|
margin-left: .375rem;
|
||||||
|
}
|
||||||
.time{
|
.time{
|
||||||
color: #666666;
|
color: #666666;
|
||||||
font-size: .23rem;
|
font-size: .23rem;
|
||||||
|
|
|
@ -1,22 +1,32 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="page">
|
<div class="page">
|
||||||
<div class="list">
|
<div class="list">
|
||||||
<div class="item" v-for="(item,i) in certificate">
|
<div class="item" v-for="(item,i) in certificate" @click="showImg(item)">
|
||||||
<img :src="$baseUrl+item.img" alt="">
|
<img :id="item.id" :src="getUrl(item.id,$baseUrl+item.img)">
|
||||||
<div class="title">{{item.tittle}}</div>
|
<div class="title">{{item.tittle}}</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="preview" v-if="bigImgShow">
|
||||||
|
<img id="bigImg" :src="bigImg" alt="">
|
||||||
|
<el-icon class="icon" :size="48" color="#fff" @click="bigImgShow=false">
|
||||||
|
<CircleClose />
|
||||||
|
</el-icon>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import { CircleClose } from '@element-plus/icons-vue';
|
||||||
export default {
|
export default {
|
||||||
name: 'Bottom',
|
name: 'Bottom',
|
||||||
components: {
|
components: {
|
||||||
|
CircleClose
|
||||||
},
|
},
|
||||||
data(){
|
data(){
|
||||||
return{
|
return{
|
||||||
certificate:[]
|
certificate:[],
|
||||||
|
bigImgShow: false,
|
||||||
|
bigImg:''
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created(){
|
created(){
|
||||||
|
@ -29,6 +39,42 @@
|
||||||
this.certificate = res.data.rows
|
this.certificate = res.data.rows
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
showImg(item){
|
||||||
|
this.bigImgShow = true
|
||||||
|
this.$nextTick(()=>{
|
||||||
|
const element = document.getElementById('bigImg');
|
||||||
|
this.hidePic(element,this.$baseUrl+item.img)
|
||||||
|
|
||||||
|
|
||||||
|
})
|
||||||
|
},
|
||||||
|
// 防止盗图
|
||||||
|
getUrl(id,url){
|
||||||
|
this.$nextTick(()=>{
|
||||||
|
const eleAppend = document.getElementById(id);
|
||||||
|
this.hidePic(eleAppend,url)
|
||||||
|
})
|
||||||
|
|
||||||
|
},
|
||||||
|
hidePic(element,url){
|
||||||
|
window.URL = window.URL || window.webkitURL
|
||||||
|
console.log(element)
|
||||||
|
if(typeof history.pushState === 'function'){
|
||||||
|
var xhr = new XMLHttpRequest()
|
||||||
|
xhr.open('get', url, true)
|
||||||
|
xhr.responseType = 'blob'
|
||||||
|
xhr.onload = function () {
|
||||||
|
if (this.status === 200) {
|
||||||
|
var blob = this.response
|
||||||
|
element.onload = function (e) {
|
||||||
|
window.URL.revokeObjectURL(element.src)
|
||||||
|
}
|
||||||
|
element.src = window.URL.createObjectURL(blob)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
xhr.send()
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -59,6 +105,27 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.preview{
|
||||||
|
position: fixed;
|
||||||
|
z-index: 999;
|
||||||
|
top: 0;
|
||||||
|
width: 100vw;
|
||||||
|
height: 100vh;
|
||||||
|
background-color: rgba(0, 0, 0, .5);
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
img{
|
||||||
|
width: auto;
|
||||||
|
height: 80vh;
|
||||||
|
|
||||||
|
}
|
||||||
|
.el-icon{
|
||||||
|
position: absolute;
|
||||||
|
top: .5rem;
|
||||||
|
right: .8rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -194,10 +194,11 @@
|
||||||
.lianxi{
|
.lianxi{
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 2.5rem;
|
height: 2.5rem;
|
||||||
background-color: #ccc;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding-left: 1.625rem;
|
padding-left: 1.625rem;
|
||||||
|
background: url('@/assets/images/lx-bg.jpg') no-repeat;
|
||||||
|
background-size: 100% 100%;
|
||||||
.phone,.address{
|
.phone,.address{
|
||||||
display: flex;
|
display: flex;
|
||||||
margin-left: .75rem;
|
margin-left: .75rem;
|
||||||
|
@ -226,6 +227,7 @@
|
||||||
line-height: .575rem;
|
line-height: .575rem;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
padding-left: .375rem;
|
padding-left: .375rem;
|
||||||
|
font-size: .25rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<div class="list">
|
<div class="list">
|
||||||
<div class="item" v-for="item in data">
|
<div class="item" v-for="item in data">
|
||||||
<div class="title">
|
<div class="title">
|
||||||
<span class="position">电气工程师 </span>
|
<span class="position">{{item.tittle}}</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="content">
|
<div class="content">
|
||||||
<div class="left">
|
<div class="left">
|
||||||
|
|
Loading…
Reference in New Issue