删除综合管理图片页

This commit is contained in:
陈诗浩 2023-09-04 17:30:46 +08:00
parent fdb1f7926f
commit 0b7294d18d

View File

@ -1,81 +0,0 @@
<template>
<div class="main">
<Header :headerObj="{title:'中科软养老大数据分析平台', index: '5'}"/>
<img src="@/assets/img/page2/05综合管理.png" alt="" style="width: 100vw;height: calc(100vh - 5vw);">
</div>
</template>
<script>
import Header from '@/components/header'
export default {
name: "index",
data: function () {
return {
param: {
startYear: "",
endYear: "",
},
};
},
created() {
this.param = {
startYear: "",
endYear: "",
};
// this.init();
},
components: {
Header,
},
methods: {
init() {
this.getData();
},
getData() {
Index(this.param).then((res) => {
console.log(res);
});
},
},
};
</script>
<style scoped lang="less">
.main {
height: 100%;
background: url(../../assets/img/bigScreen/background.jpg) no-repeat;
background-size: 100% 100%;
/deep/ .modal,
/deep/ .el-icon-close {
display: none;
}
h1 {
font-size: 50px;
font-weight: 600;
padding-top: 50px;
text-align: center;
-webkit-line-clamp: 2;
background-image: -webkit-linear-gradient(bottom, #eefcff, #51dcfe);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.h1 {
position: absolute;
left: 50%;
margin-left: -509px;
}
//.b {
// position: absolute;
// bottom: 0;
// width: 100%;
// // animation:turn 10s linear infinite;
//}
@keyframes turn {
0% {
transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
}
100% {
transform: rotateX(0deg) rotateY(180deg) rotateZ(0deg);
}
}
}
</style>