| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427 |
- <template>
- <div>
- <div
- :class="{ 'grid-container': isShowTopNavigation, 'grid-container-hide-column1': !isShowMenu }"
- >
- <div v-if="isShowMenu" class="grid-item-row12-column1">
- <div>
- <keep-alive>
- <MenuWidget />
- </keep-alive>
- </div>
- </div>
- <div v-if="isShowTopNavigation" class="grid-item-row1-column2">
- <div>
- <!-- top navigation -->
- <keep-alive>
- <TopNavigation @menu-visible-changed="clickIsShowMenu" />
- </keep-alive>
- </div>
- </div>
- <div :class="{'grid-item-row2-column2' : isShowTopNavigation}">
- <div id="grid-item-center" :class="{'grid-center-container' : isShowTopNavigation}" />
- <div :class="{'center-container-single' : !isShowTopNavigation, 'center-container' : isShowTopNavigation }">
- <router-view />
- </div>
- </div>
- </div>
- </div>
- </template>
- <script>
- import MenuWidget from './client/MenuWidget.vue';
- import TopNavigation from './client/TopNavigation.vue';
- export default {
- components: {
- MenuWidget,
- TopNavigation,
- },
- data: function () {
- return {
- // 是否显示菜单
- isShowMenu: false,
- // 是否显示上导航栏
- isShowTopNavigation: false,
- };
- },
- watch: {
- '$route.path': function (value) {
- this.computerComponentVisible();
- },
- },
- mounted: function () {
- var _self = this;
- var languageSelected = localStorage.getItem('#languageSelected');
- if (languageSelected == null || languageSelected == '') {
- this.$i18n.locale = 'zh-CN';
- } else {
- this.$i18n.locale = languageSelected;
- }
- this.computerComponentVisible();
- },
- methods: {
- /**
- * 点击之后存储isShowMenu
- */
- clickIsShowMenu: function () {
- var _self = this;
- this.isShowMenu = !this.isShowMenu;
- // localStorage.setItem('#IsShowMenu', this.isShowMenu);
- },
- /**
- * 计算组件的显示隐藏
- */
- computerComponentVisible: function () {
- let path = this.$route.path;
- let count = 0;
- if (path != null) {
- for (let index = 0; index < path.length; index++) {
- if (path[index] == '/') {
- count++;
- }
- }
- if (path.indexOf('register/') >= 0) {
- count = 1;
- }
- if (path.indexOf('dictionary/') >= 0) {
- count = 1;
- }
- if (path.indexOf('propassapp/') >= 0) {
- count = 1;
- }
- if (path.indexOf('single/') >= 0) {
- count = 1;
- }
- if (path.indexOf('lowcode-page/') >= 0) {
- count = 1;
- }
- if (path.indexOf('/generate-document/') >= 0) {
- count = 1;
- }
- if (window.top !== window.self) {
- count = 1;
- }
- }
- //if (value == "/client-init" || value == "/login") {
- if (count == 1) {
- this.isShowMenu = false;
- this.isShowTopNavigation = false;
- } else {
- // var isShowMenu = localStorage.getItem('#IsShowMenu');
- // if (isShowMenu == 'true') {
- // this.isShowMenu = true;
- // } else {
- // this.isShowMenu = false;
- // }
- this.isShowMenu = true;
- this.isShowTopNavigation = true;
- }
- },
- },
- };
- </script>
- <style scoped>
- .grid-container {
- display: grid;
- grid-template-columns: 230px auto;
- grid-template-rows: 54px 1fr;
- gap: 0px;
- justify-items: stretch;
- align-items: stretch;
- height: calc(100vh);
- overflow: auto;
- }
- .grid-container-hide-column1 {
- grid-template-columns: 0px auto;
- /*grid-template-rows: 0px 1fr;*/
- }
- .grid-item-row12-column1 {
- grid-row-start: 1;
- grid-row-end: 3;
- grid-column-start: 1;
- grid-column-end: 2;
- }
- .grid-item-row1-column2 {
- grid-row-start: 1;
- grid-row-end: 2;
- grid-column-start: 2;
- grid-column-end: 3;
- }
- .grid-item-row2-column2 {
- grid-row-start: 2;
- grid-row-end: 3;
- grid-column-start: 2;
- grid-column-end: 3;
- overflow: auto;
- }
- .grid-center-container {
- padding: 10px 20px 0;
- }
- .center-container-single {
- /* padding: 0px 20px 0; */
- padding: 0px;
- }
- .center-container {
- padding: 0px 20px 0;
- }
- </style>
- <style>
- /** 修复Bootstrap样式的BUG,input-group form-control 控件 会显示在 日期控件的前面 */
- .input-group .form-control {
- /* z-index: 0; */
- /*checked by DengXin,修复input-group form-control 控件 会显示在 日期控件的前面的BUG*/
- position: static;
- }
- </style>
- <!-- 已确定的CSS样式 -->
- <style>
- .site_title {
- text-overflow: ellipsis;
- overflow: hidden;
- font-weight: 400;
- font-size: 22px;
- width: 100%;
- color: #ecf0f1 !important;
- margin-left: 0 !important;
- line-height: 59px;
- display: block;
- height: 55px;
- margin: 0;
- padding-left: 10px;
- }
- .site_title:hover,
- .site_title:focus {
- text-decoration: none;
- }
- .clearfix {
- clear: both;
- }
- </style>
- <!-- 已确定的CSS 样式 -->
- <style>
- .container {
- width: 100% !important;
- padding: 0 !important;
- }
- .left_col {
- background: #2a3f54;
- }
- .menu_section {
- margin-bottom: 35px;
- }
- .menu_section h3 {
- padding-left: 23px;
- color: #fff;
- text-transform: uppercase;
- letter-spacing: 0.5px;
- font-weight: bold;
- font-size: 11px;
- margin-bottom: 0;
- margin-top: 0;
- text-shadow: 1px 1px #000;
- }
- .menu_section > ul {
- margin-top: 10px;
- }
- </style>
- <style>
- .nav-md .container.body .col-md-3.left_col {
- width: 230px;
- padding: 0;
- position: absolute;
- display: -ms-flexbox;
- display: flex;
- }
- .nav-md .container.body .col-md-3.left_col.menu_fixed {
- height: 100%;
- position: fixed;
- }
- .nav-md .container.body .right_col {
- padding: 10px 20px 0;
- }
- /*@media (max-width: 991px) {
- .nav-md .container.body .right_col {
- width: 100%;
- margin: 0;
- }
- .nav-md .container.body .col-md-3.left_col {
- display: none;
- }
- .nav-md .container.body .right_col {
- width: 100%;
- padding-right: 0;
- }
- .right_col {
- padding: 10px !important;
- }
- }*/
- </style>
- <style>
- .profile_pic {
- width: 35%;
- float: left;
- }
- .img-circle.profile_img {
- width: 70%;
- background: #fff;
- margin-left: 15%;
- z-index: 1000;
- position: inherit;
- border: 1px solid rgba(52, 73, 94, 0.44);
- padding: 0px;
- }
- .profile_info {
- margin-top: 5px;
- width: 65%;
- float: left;
- }
- .profile_info span {
- font-size: 13px;
- line-height: 30px;
- color: #bab8b8;
- }
- .profile_info h2 {
- font-size: 14px;
- color: #ecf0f1;
- margin: 0;
- font-weight: 300;
- }
- .profile.img_2 {
- text-align: center;
- }
- .profile.img_2 .profile_pic {
- width: 100%;
- }
- .profile.img_2 .profile_pic .img-circle.profile_img {
- width: 50%;
- margin: 10px 0 0;
- }
- .profile.img_2 .profile_info {
- padding: 15px 10px 0;
- width: 100%;
- margin-bottom: 10px;
- float: left;
- }
- .main_menu span.fa {
- float: right;
- text-align: center;
- margin-top: 5px;
- font-size: 10px;
- min-width: inherit;
- color: #c4cfda;
- }
- .active a span.fa {
- text-align: right !important;
- margin-right: 4px;
- }
- /* .navbar-nav > li > a {
- color: #fff !important;
- } */
- body .container.body .right_col {
- background: #f7f7f7;
- }
- .nav_title {
- width: 230px;
- float: left;
- background: #2a3f54;
- border-radius: 0;
- height: 57px;
- }
- @media (max-width: 1200px) {
- .x_title h2 {
- width: 62%;
- font-size: 17px;
- }
- .tile,
- .graph {
- zoom: 85%;
- height: inherit;
- }
- }
- @media (max-width: 1270px) and (min-width: 192px) {
- .x_title h2 small {
- display: none;
- }
- }
- .left_col .mCSB_scrollTools {
- width: 6px;
- }
- .left_col .mCSB_dragger {
- max-height: 400px !important;
- }
- </style>
- <style>
- /** 修复分页的样式 By YangZhiJie 2021-07-06 11:23 */
- nav ul.pagination {
- margin: 0 !important;
- }
- /** 修复CURD界面输入框右上角和右下角的圆弧倒角覆盖的BUG By YangZhiJie 2021-12-09 20:14 */
- .input-group .form-control:first-child {
- border-radius: 4px;
- }
- </style>
|