mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-04-05 19:41:37 +08:00
chore: optimize the code of page width style;
This commit is contained in:
parent
346c1b8a87
commit
5a65032772
@ -1,6 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<div :class="['page-header', layout == 'head' && pageWidth == 'fixed' ? layout : '']">
|
<div :class="['page-header', layout, pageWidth]">
|
||||||
<div :class="['page-header-wide']">
|
<div class="page-header-wide">
|
||||||
<div class="breadcrumb">
|
<div class="breadcrumb">
|
||||||
<a-breadcrumb>
|
<a-breadcrumb>
|
||||||
<a-breadcrumb-item :key="index" v-for="(item, index) in breadcrumb">
|
<a-breadcrumb-item :key="index" v-for="(item, index) in breadcrumb">
|
||||||
|
@ -1,17 +1,11 @@
|
|||||||
.page-header{
|
.page-header{
|
||||||
background: @base-bg-color;
|
background: @base-bg-color;
|
||||||
padding: 16px 24px;
|
padding: 16px 24px;
|
||||||
&.head{
|
&.head.fixed{
|
||||||
margin: auto;
|
margin: auto;
|
||||||
max-width: 1400px;
|
max-width: 1400px;
|
||||||
}
|
}
|
||||||
.page-header-wide{
|
.page-header-wide{
|
||||||
&.head{
|
|
||||||
margin: auto;
|
|
||||||
max-width: 1400px;
|
|
||||||
}
|
|
||||||
&.side{
|
|
||||||
}
|
|
||||||
.breadcrumb{
|
.breadcrumb{
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
|
@ -11,6 +11,7 @@ module.exports = {
|
|||||||
layout: 'side', //导航布局,可选 side 和 head,分别为侧边导航和顶部导航
|
layout: 'side', //导航布局,可选 side 和 head,分别为侧边导航和顶部导航
|
||||||
fixedHeader: false, //固定头部状态栏,true:固定,false:不固定
|
fixedHeader: false, //固定头部状态栏,true:固定,false:不固定
|
||||||
fixedSideBar: true, //固定侧边栏,true:固定,false:不固定
|
fixedSideBar: true, //固定侧边栏,true:固定,false:不固定
|
||||||
|
pageWidth: 'fixed', //内容区域宽度,fixed:固定宽度,fluid:流式宽度
|
||||||
weekMode: false, //色弱模式,true:开启,false:不开启
|
weekMode: false, //色弱模式,true:开启,false:不开启
|
||||||
multiPage: false, //多页签模式,true:开启,false:不开启
|
multiPage: false, //多页签模式,true:开启,false:不开启
|
||||||
hideSetting: false, //隐藏设置抽屉,true:隐藏,false:不隐藏
|
hideSetting: false, //隐藏设置抽屉,true:隐藏,false:不隐藏
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<slot v-if="this.$slots.extra" slot="extra" name="extra"></slot>
|
<slot v-if="this.$slots.extra" slot="extra" name="extra"></slot>
|
||||||
</page-header>
|
</page-header>
|
||||||
<div ref="page" :class="['page-content', layout == 'head' ? (pageWidth == 'fixed' ? layout : '') : '']" >
|
<div ref="page" :class="['page-content', layout, pageWidth]" >
|
||||||
<slot></slot>
|
<slot></slot>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -130,7 +130,7 @@ export default {
|
|||||||
padding: 24px 0 0;
|
padding: 24px 0 0;
|
||||||
&.side{
|
&.side{
|
||||||
}
|
}
|
||||||
&.head{
|
&.head.fixed{
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
max-width: 1400px;
|
max-width: 1400px;
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<a-layout-header :class="[headerTheme, 'admin-header']">
|
<a-layout-header :class="[headerTheme, 'admin-header']">
|
||||||
<div :class="['admin-header-wide', layout == 'side' ? layout : (pageWidth == 'fixed' ? layout : '')]">
|
<div :class="['admin-header-wide', layout, pageWidth]">
|
||||||
<router-link v-if="isMobile || layout === 'head'" to="/" :class="['logo', isMobile ? null : 'pc', headerTheme]">
|
<router-link v-if="isMobile || layout === 'head'" to="/" :class="['logo', isMobile ? null : 'pc', headerTheme]">
|
||||||
<img width="32" src="@/assets/img/logo.png" />
|
<img width="32" src="@/assets/img/logo.png" />
|
||||||
<h1 v-if="!isMobile">{{systemName}}</h1>
|
<h1 v-if="!isMobile">{{systemName}}</h1>
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
}
|
}
|
||||||
.admin-header-wide{
|
.admin-header-wide{
|
||||||
padding-left: 24px;
|
padding-left: 24px;
|
||||||
&.head{
|
&.head.fixed{
|
||||||
max-width: 1400px;
|
max-width: 1400px;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
v-if="multiPage"
|
v-if="multiPage"
|
||||||
type="editable-card"
|
type="editable-card"
|
||||||
:active-key="activePage"
|
:active-key="activePage"
|
||||||
:style="`margin: -16px auto 8px; ${layout == 'head' && pageWidth == 'fixed' ? 'max-width: 1400px;' : ''}`"
|
:class="['tabs-view', layout, pageWidth]"
|
||||||
:hide-add="true"
|
:hide-add="true"
|
||||||
@change="changePage"
|
@change="changePage"
|
||||||
@edit="editPage"
|
@edit="editPage"
|
||||||
@ -206,6 +206,12 @@ function getPageKey (target, depth = 0) {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped lang="less">
|
<style scoped lang="less">
|
||||||
|
.tabs-view{
|
||||||
|
margin: -16px auto 8px;
|
||||||
|
&.head.fixed{
|
||||||
|
max-width: 1400px;
|
||||||
|
}
|
||||||
|
}
|
||||||
.tabs-view-content{
|
.tabs-view-content{
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
@ -7,7 +7,6 @@ export default {
|
|||||||
namespaced: true,
|
namespaced: true,
|
||||||
state: {
|
state: {
|
||||||
isMobile: false,
|
isMobile: false,
|
||||||
pageWidth: 'fixed',
|
|
||||||
animates: ADMIN.animates,
|
animates: ADMIN.animates,
|
||||||
palettes: ADMIN.palettes,
|
palettes: ADMIN.palettes,
|
||||||
pageMinHeight: 0,
|
pageMinHeight: 0,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user