Compare commits

..

No commits in common. "387bbcb45aa7fbab46ef09f72bc0cee4cc074da6" and "4b70e4956cbd5f7309b19b3b60518f0f6571feb5" have entirely different histories.

5 changed files with 39 additions and 67 deletions

View File

@ -1,24 +1,27 @@
<template> <template>
<div class="navbar" :style="showTitle ? 'background: rgba(8,17,50,0.25)' : ''"> <div class="navbar" :style="showTitle ? 'background: rgba(8,17,50,0.25)' : ''" style="padding-right: 23px;">
<div v-if="showTitle" class="homeNavIcon" @click="goToRootPage"> <hamburger
v-if="showhome"
id="hamburger-container"
:is-active="sidebar.opened"
class="hamburger-container"
@toggleClick="toggleSideBar"
/>
<div
v-if="showTitle"
style="cursor: pointer; color: #fff;font-size: 22px; float: left; letter-spacing: 1px; font-weight: 500; padding-left: 24px; marginTop: 5px"
@click="goToRootPage"
>
<img <img
src="../../assets/img/cnbm.png" src="../../assets/img/cnbm.png"
style="width: 26px; height: 26px; position: relative; top: 6px; marginRight: 14px" style="width: 26px; height: 26px; position: relative; top: 6px; marginRight: 14px"
alt="" alt=""
/> >
{{ 'title' | i18nFilter }} {{ 'title' | i18nFilter }}
</div> </div>
<div v-if="showhome" style="display:flex; align-items: center;"> <breadcrumb id="breadcrumb-container" class="breadcrumb-container" />
<hamburger
id="hamburger-container"
:is-active="sidebar.opened"
class="hamburger-container"
@toggleClick="toggleSideBar"
/>
<breadcrumb id="breadcrumb-container" class="breadcrumb-container" />
</div>
<div class="right-menu"> <div class="right-menu">
<div v-if="showhome" class="right-menu-back" @click="toHome"> <div v-if="showhome" class="right-menu-back" @click="toHome">
@ -93,7 +96,7 @@
trigger="click" trigger="click"
> >
<div class="avatar-wrapper"> <div class="avatar-wrapper">
<img :src="require('@/assets/img/head.png')" class="user-avatar" /> <img :src="require('@/assets/img/head.png')" class="user-avatar">
<div class="avatar-username" :title="username">{{ username }}</div> <div class="avatar-username" :title="username">{{ username }}</div>
<div class="avatar-roles" :title="roles.join(',')">{{ roles.length > 0 ? roles[0] : '' }}</div> <div class="avatar-roles" :title="roles.join(',')">{{ roles.length > 0 ? roles[0] : '' }}</div>
<!-- <i class="el-icon-caret-bottom" /> --> <!-- <i class="el-icon-caret-bottom" /> -->
@ -140,7 +143,7 @@
<el-tooltip class="item" effect="dark" placement="bottom-end"> <el-tooltip class="item" effect="dark" placement="bottom-end">
<div slot="content"> <div slot="content">
{{ 'copyright.copyright' | i18nFilter }}{{ 'copyright.company' | i18nFilter }} {{ 'copyright.copyright' | i18nFilter }}{{ 'copyright.company' | i18nFilter }}
<br /> <br>
{{ 'copyright.version' | i18nFilter }}3.0 {{ 'copyright.version' | i18nFilter }}3.0
</div> </div>
<svg-icon <svg-icon
@ -325,32 +328,15 @@ export default {
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.time-menu {
display: inline-block;
}
.navbar { .navbar {
// height: 48px; height: 48px;
height: calc(100vh / 1600 * 80);
overflow: hidden; overflow: hidden;
position: relative; position: relative;
background: #fff; background: #fff;
box-shadow: 0 1px 4px rgba(0, 21, 41, 0.08); box-shadow: 0 1px 4px rgba(0, 21, 41, 0.08);
padding-right: calc(100vw / 2560 * 32);
display: flex;
justify-content: space-between;
align-items: center;
.homeNavIcon {
cursor: pointer;
color: #fff;
font-size: calc(100vh / 1600 * 32);
line-height: 1;
float: left;
letter-spacing: 1px;
font-weight: 500;
padding-left: calc(100vw / 2560 * 32);
* {
vertical-align: middle;
}
}
.hamburger-container { .hamburger-container {
line-height: 48px; line-height: 48px;

View File

@ -10,12 +10,11 @@ export default {}
<style scoped> <style scoped>
.techy-box { .techy-box {
background: rgba(255, 255, 255, 0.0168); background: transparent;
box-shadow: inset 0 0 17px 0 rgba(255, 255, 255, 0.168); box-shadow: inset 0 0 16px 1px rgba(255, 255, 255, 0.5);
display: inline-block; display: inline-block;
height: 100%; height: 100%;
width: 100%; width: 100%;
border-radius: 4px; border-radius: .25rem;
backdrop-filter: blur(2px);
} }
</style> </style>

View File

@ -75,7 +75,7 @@ export default {
box-shadow: inset 0px 0px 20px 0px rgba(255, 255, 255, 0.15); box-shadow: inset 0px 0px 20px 0px rgba(255, 255, 255, 0.15);
/* background: rgba(20, 69, 100, 0.425); */ /* background: rgba(20, 69, 100, 0.425); */
background: rgba(6, 16, 39, 0.3); background: rgba(6, 16, 39, 0.3);
backdrop-filter: blur(2px); backdrop-filter: blur(1px);
} }
.line { .line {

View File

@ -1,9 +1,9 @@
<template> <template>
<div id="v3d-outter" ref="v3d-outter"> <div id="v3d-outter" ref="v3d-outter">
<!-- <V3DApp @3d-loaded="handle3DLoaded" /> --> <V3DApp @3d-loaded="handle3DLoaded" />
<!-- 正式内容: --> <!-- 正式内容: -->
<!-- <div v-if="showPage" id="v3d-main-content"> --> <div v-if="showPage" id="v3d-main-content">
<div v-if="true" id="v3d-main-content"> <!-- <div v-if="true" id="v3d-main-content"> -->
<techy-header :head-title="'合肥新能源数字工厂总览'" @toggle-full-screen="toggleFullScreen" /> <techy-header :head-title="'合肥新能源数字工厂总览'" @toggle-full-screen="toggleFullScreen" />
<section id="techy-body-part"> <section id="techy-body-part">
@ -207,8 +207,7 @@ export default {
padding: calc(100vmin / 1920 * 36); padding: calc(100vmin / 1920 * 36);
padding-bottom: 0; padding-bottom: 0;
display: flex; display: flex;
/* justify-content: space-between; */ justify-content: space-between;
gap: calc(100vmin / 1920 * 36);
} }
.bottom-part { .bottom-part {
@ -244,21 +243,16 @@ export default {
} }
.techy-body-part__middle { .techy-body-part__middle {
flex: 1;
position: relative;
}
.techy-body-part__middle .techy-box {
position: absolute; position: absolute;
top: 0; top: 9%;
left: 0; left: 26%;
height: 136px; height: 136px;
width: 176px; width: 176px;
} }
.techy-body-part__middle__inner { .techy-body-part__middle__inner {
height: 100%; height: 100%;
padding: 16px; padding: 12px;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
justify-content: space-between; justify-content: space-between;
@ -276,16 +270,11 @@ export default {
position: relative; position: relative;
padding-left: 16px; padding-left: 16px;
} }
.techy-body-part__middle__inner p > span.round-dot {
padding-left: 28px;
}
.round-dot::before { .round-dot::before {
content: ''; content: '';
position: absolute; position: absolute;
top: 4px; top: 4px;
left: 16px; left: 2px;
width: 8px; width: 8px;
height: 8px; height: 8px;
background-color: rgb(82, 231, 82); background-color: rgb(82, 231, 82);

View File

@ -12,7 +12,7 @@
> >
<!-- :style="{ background: colorArr.colorList[index % 9] }" --> <!-- :style="{ background: colorArr.colorList[index % 9] }" -->
<div class="choicepart-item-border"> <div class="choicepart-item-border">
<img :src="require(`../../assets/img/choicepart/${item.name}.png`)" alt="" /> <img :src="require(`../../assets/img/choicepart/${item.name}.png`)" alt="">
</div> </div>
<div class="choicepart-item-title" :title="item.meta.title">{{ item.meta.title }}</div> <div class="choicepart-item-title" :title="item.meta.title">{{ item.meta.title }}</div>
</div> </div>
@ -147,14 +147,12 @@ export default {
background: url('../../assets/img/choicepart/choicepart-back.jpg') repeat; background: url('../../assets/img/choicepart/choicepart-back.jpg') repeat;
background-size: 100% 100%; background-size: 100% 100%;
overflow-x: scroll; overflow-x: scroll;
display: flex;
justify-content: center;
align-items: center;
.choicepart-box { .choicepart-box {
width: 1440px; width: 1440px;
margin: 0 auto;
margin: 0 auto;
padding-top: 16vh;
min-height: 100vh;
.choicepart-item { .choicepart-item {
display: inline-block; display: inline-block;
width: 208px; width: 208px;