|
@@ -0,0 +1,110 @@
|
|
|
+<script setup>
|
|
|
+
|
|
|
+let routers = [
|
|
|
+ [
|
|
|
+ {
|
|
|
+ title: '首页',
|
|
|
+ link: '',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '文章',
|
|
|
+ link: '',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '咨询',
|
|
|
+ link: '',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '视频',
|
|
|
+ link: '',
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ [
|
|
|
+ {
|
|
|
+ title: '论坛',
|
|
|
+ link: ''
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ [
|
|
|
+ {
|
|
|
+ title: '商店',
|
|
|
+ link: ''
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '积分商城',
|
|
|
+ link: ''
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ [
|
|
|
+ {
|
|
|
+ title: '预约拍摄',
|
|
|
+ link: ''
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '设备租赁',
|
|
|
+ link: ''
|
|
|
+ }
|
|
|
+ ]
|
|
|
+]
|
|
|
+</script>
|
|
|
+
|
|
|
+<template>
|
|
|
+ <div class="aside-container">
|
|
|
+ <template v-for="(arr, index) in routers" :key="index">
|
|
|
+ <div class="item-container">
|
|
|
+ <!-- .active selected status -->
|
|
|
+ <div class="itembox" v-for="(row, rowIdx) in arr" :key="rowIdx">
|
|
|
+ <span class="icon">ico</span>
|
|
|
+ <span class="title">{{ row.title }}</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<style lang="less">
|
|
|
+.aside {
|
|
|
+ &-container {
|
|
|
+ height: calc(100vh - 66px);
|
|
|
+ padding: 0 8px;
|
|
|
+ background-color: #fff;
|
|
|
+
|
|
|
+ .item-container {
|
|
|
+ padding: 10px 0;
|
|
|
+ border-bottom: 1px solid #d4d4d4;
|
|
|
+
|
|
|
+ .itembox {
|
|
|
+ padding: 11px 20px;
|
|
|
+ font-size: 16px;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #333333;
|
|
|
+ line-height: 22px;
|
|
|
+
|
|
|
+ &.active {
|
|
|
+ color: #00B0B0;
|
|
|
+ // width: 194px;
|
|
|
+ // height: 44px;
|
|
|
+ background: rgba(87, 195, 194, 0.14);
|
|
|
+ border-radius: 4px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .icon {
|
|
|
+ display: inline-block;
|
|
|
+ width: 20px;
|
|
|
+ height: 20px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ &:first-child {
|
|
|
+ // padding-top: initial;
|
|
|
+ }
|
|
|
+
|
|
|
+ &:last-child {
|
|
|
+ padding-bottom: initial;
|
|
|
+ border-bottom: initial;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|