123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169 |
- <template>
- <!-- 顶部路由 -->
- <div class='menu'>
- <div class='home' @click='$emit("update:modelNum", 0)'>福建三明万达广场</div>
- <div>
- <div
- v-for='(item, index) in list'
- :key='index'
- :class='{ "is-active": item.state }'
- @click='clickEventAcitve(item, index)'
- >{{ item.name }}</div>
- </div>
- <div class='home-right'>
- <span @click='dumpLegend'>
- <img class='img1' src='../assets/imgs/scj.png' alt />
- <span class='span1'>图例库</span>
- </span>
- <span class='span-out'>
- <img class='img2' src='../assets/imgs/cgx.png' alt />
- <span class='span2'>草稿箱</span>
- <span class='span2-num' v-if='value<=99'>{{value}}</span>
- <span class='span2-num' style='line-height:10px' v-else>...</span>
- </span>
- <span>
- <img class='img3' src='../assets/imgs/clock.png' alt />
- <span class='span3'>{{times}}</span>
- </span>
- </div>
- </div>
- </template>
- <script>
- import { formatTime } from '@/utils/format.js'
- export default {
- props: ['modelNum'],
- data() {
- return {
- list: [
- { name: '首页', state: false, route: 'first' },
- { name: '项目概况', state: false, route: 'overview' },
- { name: '楼层功能', state: false, route: 'floorFunc' }, //楼层功能
- { name: '设备设施', state: false, route: 'equipment' }, //设备设施
- { name: '其他事项', state: false, route: 'other' }, //其他
- { name: '分析 | 报表', state: false, route: 'analysis' }
- ],
- times: `${new Date().getFullYear()}.${formatTime(new Date().getMonth() + 1)}.${formatTime(new Date().getDate())} ${formatTime(
- new Date().getHours()
- )}:${formatTime(new Date().getMinutes())}`,
- value: 190
- }
- },
- computed: {},
- created() {},
- mounted() {},
- watch: {
- modelNum(val) {
- this.list = this.list.map((item, index) => {
- if (val == index + 1) {
- item.state = true
- } else {
- item.state = false
- }
- return item
- })
- }
- },
- methods: {
- clickEventAcitve(item) {
- this.list.forEach(ele => {
- ele.state = false
- })
- item.state = true
- this.$router.push({ path: `/home/${item.route}` })
- },
- dumpLegend() {
- this.$router.push({ path: `/home/legendLibrary` })
- }
- },
- components: {}
- }
- </script>
- <style scoped lang="less">
- .menu {
- height: 48px;
- min-width: 1366px;
- color: #1f2429;
- font-size: 16px;
- background: rgba(255, 255, 255, 1);
- box-shadow: 0px 2px 10px 0px rgba(31, 35, 41, 0.1);
- .home {
- width: 430px;
- height: 48px;
- font-size: 20px;
- line-height: 48px;
- text-align: center;
- cursor: pointer;
- color: #ffffff;
- float: left;
- margin-right: 83px;
- background: linear-gradient(180deg, rgba(54, 156, 247, 1) 0%, rgba(2, 91, 170, 1) 100%);
- }
- & > div:nth-of-type(2) {
- & > div {
- line-height: 48px;
- text-align: center;
- //background: url('../assets/images/topbar1.png') no-repeat;
- float: left;
- width: 88px;
- height: 48px;
- cursor: pointer;
- transition: all 0.2s;
- }
- .is-active {
- // background: url('../assets/images/topbar2.png') no-repeat;
- color: #025baa;
- font-weight: bolder;
- background: linear-gradient(180deg, rgba(2, 91, 170, 0) 0%, rgba(2, 91, 170, 0.2) 100%);
- }
- }
- .home-right {
- float: right;
- margin-right: 20px;
- line-height: 48px;
- color: #646c73;
- font-size: 14px;
- cursor: pointer;
- display: flex;
- align-content: center;
- img {
- margin-top: -2px;
- }
- .span-out {
- position: relative;
- margin: 0 16px;
- .span2-num {
- position: absolute;
- right: -5px;
- top: 5px;
- display: inline-block;
- width: 18px;
- height: 18px;
- background: red;
- border-radius: 90px;
- font-size: 12px;
- text-align: center;
- line-height: 18px;
- color: #ffffff;
- }
- }
- }
- .span1,
- .span2 {
- padding: 0 6px 0 3px;
- }
- .span3 {
- padding-left: 3px;
- }
- }
- </style>
- <style lang="less">
- .menu {
- .el-badge__content.is-fixed {
- top: 10px;
- }
- }
- </style>
|