feat: Modify logo , title

This commit is contained in:
ruofei.yu 2025-09-03 10:04:22 +08:00
parent f2ce3f31aa
commit 216866b26c
3 changed files with 164 additions and 164 deletions

BIN
gyhl.zip Normal file

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 400 KiB

After

Width:  |  Height:  |  Size: 3.1 MiB

View File

@ -1,164 +1,164 @@
<template> <template>
<div> <div>
<!-- <dv-full-screen-container> --> <!-- <dv-full-screen-container> -->
<div id="index"> <div id="index">
<div class="header-wrap"> <div class="header-wrap">
<div class="myheader"> <div class="myheader">
<p class="header-title"> <p class="header-title">
江西液压件工业互联网平台数字化展示中心 江西心诚药业互联网平台数字化展示中心
</p> </p>
<div class="time">{{ time }}</div> <div class="time">{{ time }}</div>
<!-- <div class="weather">{{ "🌤晴 22℃" }}</div> --> <!-- <div class="weather">{{ "🌤晴 22℃" }}</div> -->
</div> </div>
</div> </div>
<div class="main-wrap"> <div class="main-wrap">
<Left ref="left" style="z-index:999"></Left> <Left ref="left" style="z-index:999"></Left>
<Center></Center> <Center></Center>
<Right ref="right" style="z-index:999"></Right> <Right ref="right" style="z-index:999"></Right>
<!-- <div style="position: absolute;top: 0;left: 0;"> <!-- <div style="position: absolute;top: 0;left: 0;">
<model3d v-if="show == 'cj'" @ok="swtchModel" /> <model3d v-if="show == 'cj'" @ok="swtchModel" />
<model3dsb v-if="show == 'sb'" @ok="swtchModel" /> <model3dsb v-if="show == 'sb'" @ok="swtchModel" />
<model3dhcl v-if="show == 'hcl'" @ok="swtchModel" /> <model3dhcl v-if="show == 'hcl'" @ok="swtchModel" />
<model3dfq v-if="show == 'fq'" @ok="swtchModel" /> <model3dfq v-if="show == 'fq'" @ok="swtchModel" />
</div> --> </div> -->
</div> </div>
</div> </div>
<!-- </dv-full-screen-container> --> <!-- </dv-full-screen-container> -->
<!-- <div id="index" v-else> <!-- <div id="index" v-else>
<div class="header-wrap" @click="handleClick" title="点击开启屏幕适配"> <div class="header-wrap" @click="handleClick" title="点击开启屏幕适配">
<div class="myheader"> <div class="myheader">
<p class="header-title"> <p class="header-title">
路信云广西建筑工企综合服务平台大数据展示中心 路信云广西建筑工企综合服务平台大数据展示中心
</p> </p>
</div> </div>
</div> </div>
<div class="main-wrap"> <div class="main-wrap">
<Left></Left> <Left></Left>
<Center></Center> <Center></Center>
<Right></Right> <Right></Right>
</div> </div>
</div> --> </div> -->
</div> </div>
</template> </template>
<script> <script>
import "../../utils/flexble"; import "../../utils/flexble";
import Left from "./left"; import Left from "./left";
import Center from "./center"; import Center from "./center";
import Right from "./right"; import Right from "./right";
import moment from "moment"; import moment from "moment";
import model3d from "./screen-3d"; import model3d from "./screen-3d";
import model3dsb from "./screen-3d-sb"; import model3dsb from "./screen-3d-sb";
import model3dhcl from "./screen-3d-hcl"; import model3dhcl from "./screen-3d-hcl";
import model3dfq from "./screen-3d-fq"; import model3dfq from "./screen-3d-fq";
export default { export default {
name: "LongScreen", name: "LongScreen",
components: { components: {
Center, Center,
Left, Left,
Right, Right,
model3d, model3d,
model3dsb, model3dsb,
model3dhcl, model3dhcl,
model3dfq model3dfq
}, },
data() { data() {
return { return {
time: "", time: "",
timeSelse: null, timeSelse: null,
show: "cj" show: "cj"
}; };
}, },
mounted() { mounted() {
this.timeSelse = setInterval(() => { this.timeSelse = setInterval(() => {
this.getTime(); this.getTime();
}, 1000); }, 1000);
}, },
methods: { methods: {
swtchModel(val) { swtchModel(val) {
this.show = val; this.show = val;
}, },
getTime() { getTime() {
this.time = moment() this.time = moment()
.subtract(0, "hours") .subtract(0, "hours")
.format("yyyy-MM-DD HH:mm:ss"); .format("yyyy-MM-DD HH:mm:ss");
}, },
handleClick() { handleClick() {
this.isUseVScaleScreen = !this.isUseVScaleScreen; this.isUseVScaleScreen = !this.isUseVScaleScreen;
} }
} }
}; };
</script> </script>
<style scoped lang="less"> <style scoped lang="less">
#index { #index {
width: 100vw; width: 100vw;
height: 100vh; height: 100vh;
overflow: hidden; overflow: hidden;
background: url("../../assets/longscreen2/background.png"); background: url("../../assets/longscreen2/background.png");
} }
.header-wrap { .header-wrap {
width: 100%; width: 100%;
height: 10.4rem; height: 10.4rem;
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
cursor: pointer; cursor: pointer;
position: relative; position: relative;
.time { .time {
position: absolute; position: absolute;
left: 1.2rem; left: 1.2rem;
top: 1rem; top: 1rem;
color: #fff; color: #fff;
font-size: 1.8rem; font-size: 1.8rem;
} }
.weather { .weather {
position: absolute; position: absolute;
right: 1.2rem; right: 1.2rem;
top: 1rem; top: 1rem;
color: #fff; color: #fff;
font-size: 1.8rem; font-size: 1.8rem;
} }
.myheader { .myheader {
width: 100%; width: 100%;
height: 10.4rem; height: 10.4rem;
background: url("../../assets/longscreen2/header-bg.png"); background: url("../../assets/longscreen2/header-bg.png");
background-size: 100% 100%; background-size: 100% 100%;
background-position: center center; background-position: center center;
background-repeat: no-repeat; background-repeat: no-repeat;
display: flex; display: flex;
justify-content: center; justify-content: center;
padding-top: 1.6rem; padding-top: 1.6rem;
box-sizing: border-box; box-sizing: border-box;
.header-title { .header-title {
font-size: 4rem; font-size: 4rem;
letter-spacing: 1px; letter-spacing: 1px;
// font-family: "Courier New", Courier, monospace; // font-family: "Courier New", Courier, monospace;
font-family: PangMenZhengDao-3, PangMenZhengDao; font-family: PangMenZhengDao-3, PangMenZhengDao;
font-weight: bold; font-weight: bold;
color: #fffde8; color: #fffde8;
background: linear-gradient(180deg, #00a9ff 0%, #e8feff 70%); background: linear-gradient(180deg, #00a9ff 0%, #e8feff 70%);
height: 5.2rem; height: 5.2rem;
line-height: 5.2rem; line-height: 5.2rem;
-webkit-background-clip: text; -webkit-background-clip: text;
-webkit-text-fill-color: transparent; -webkit-text-fill-color: transparent;
} }
} }
} }
.main-wrap { .main-wrap {
width: 100%; width: 100%;
height: calc(100% - 10.4rem); height: calc(100% - 10.4rem);
// padding: 0px 40px; // padding: 0px 40px;
// margin-top: 15px; // margin-top: 15px;
// box-sizing: border-box; // box-sizing: border-box;
display: flex; display: flex;
// justify-content: space-between; // justify-content: space-between;
} }
</style> </style>