Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-R7-Res
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-R7-Res
提交
fcc4ae31
提交
fcc4ae31
编写于
12月 08, 2022
作者:
Shine-zwj
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update:更新首页视图上方菜单布局组件样式
上级
c8868853
变更
8
隐藏空白字符变更
内嵌
并排
正在显示
8 个修改的文件
包含
65 行增加
和
15 行删除
+65
-15
app-full-scren.vue
src/components/app-full-scren/app-full-scren.vue
+1
-1
app-lock-scren.vue
src/components/app-lock-scren/app-lock-scren.vue
+1
-1
app-message-popover.less
src/components/app-message-popover/app-message-popover.less
+0
-1
app-theme.vue
src/components/app-theme/app-theme.vue
+1
-3
index-view-layout-top.less
...w-layout/index-view-layout-top/index-view-layout-top.less
+26
-3
index-view-layout-top.vue
...ew-layout/index-view-layout-top/index-view-layout-top.vue
+9
-6
default.less
src/styles/default.less
+1
-0
var.less
src/styles/var.less
+26
-0
未找到文件。
src/components/app-full-scren/app-full-scren.vue
浏览文件 @
fcc4ae31
<
template
>
<
template
>
<div
class=
"fullscren"
>
<div
class=
"fullscren"
>
<Icon
:type=
"fullScren == true ? 'ios-contract' : 'ios-expand'"
color=
"#aaa"
size=
"22"
@
click=
"handleScreen"
/>
<Icon
:type=
"fullScren == true ? 'ios-contract' : 'ios-expand'"
size=
"22"
@
click=
"handleScreen"
/>
</div>
</div>
</
template
>
</
template
>
<
script
lang =
'ts'
>
<
script
lang =
'ts'
>
...
...
src/components/app-lock-scren/app-lock-scren.vue
浏览文件 @
fcc4ae31
<
template
>
<
template
>
<div
class=
"lockscren"
>
<div
class=
"lockscren"
>
<span>
<span>
<Icon
type=
"md-lock"
size=
"22"
color=
"#aaa"
@
click=
"handleLock"
/>
<Icon
type=
"md-lock"
size=
"22"
@
click=
"handleLock"
/>
<el-dialog
:title=
"this.$t('components.lockScren.title')"
<el-dialog
:title=
"this.$t('components.lockScren.title')"
:visible
.
sync=
"box"
:visible
.
sync=
"box"
width=
"30%"
width=
"30%"
...
...
src/components/app-message-popover/app-message-popover.less
浏览文件 @
fcc4ae31
...
@@ -19,7 +19,6 @@
...
@@ -19,7 +19,6 @@
font-size: 19px;
font-size: 19px;
padding-top: 2px;
padding-top: 2px;
padding-right: 2px;
padding-right: 2px;
color: #aaa;
cursor: pointer;
cursor: pointer;
}
}
...
...
src/components/app-theme/app-theme.vue
浏览文件 @
fcc4ae31
...
@@ -5,9 +5,7 @@
...
@@ -5,9 +5,7 @@
popper-class=
'app-app-theme'
popper-class=
'app-app-theme'
placement=
'bottom-end'
placement=
'bottom-end'
:width=
"Object.is($i18n.locale, 'zh-CN') ? 180 : 250"
>
:width=
"Object.is($i18n.locale, 'zh-CN') ? 180 : 250"
>
<a>
<icon
class=
'app-theme-icon'
type=
'md-settings'
:size=
"22"
/>
<icon
class=
'app-theme-icon'
type=
'md-settings'
:size=
"22"
/>
</a>
<template
slot=
'content'
>
<template
slot=
'content'
>
<div
class=
'app-theme-color'
>
<div
class=
'app-theme-color'
>
<template
v-for=
"(theme, index) in defaultThemes"
>
<template
v-for=
"(theme, index) in defaultThemes"
>
...
...
src/components/view-layout/index-view-layout/index-view-layout-top/index-view-layout-top.less
浏览文件 @
fcc4ae31
.index-view-layout-top {
.index-view-layout--top {
.header-right {
.index-view-layout-header {
height: 64px;
display: flex;
display: flex;
align-items: center;
justify-content: space-between;
justify-content: space-between;
align-items: center;
background-color: var(--app-color-black);
color: var(--app-color-gray-white);
.header__left {
font-size: 21px;
font-weight: 700;
margin-left: 50px;
.app-icon {
width: 36px;
height: 37px;
margin-right: 6px;
}
}
.header__right {
display: flex;
align-items: center;
}
}
.index-view-layout-content {
height: calc(100% - 64px);
overflow: auto;
padding: 20px 38px 0 38px;
background-color: var(--app-color-gray-gray-400);
}
}
}
}
\ No newline at end of file
src/components/view-layout/index-view-layout/index-view-layout-top/index-view-layout-top.vue
浏览文件 @
fcc4ae31
<
template
>
<
template
>
<layout
class=
"index
_view index-view-layout
-top"
>
<layout
class=
"index
-view-layout index-view-layout-
-top"
>
<header
class=
"index
_
header"
>
<header
class=
"index
-view-layout-
header"
>
<div
class=
"header
-
left"
>
<div
class=
"header
__
left"
>
<slot
name=
"headerLeft"
/>
<slot
name=
"headerLeft"
/>
</div>
</div>
<div
class=
"header
-
center"
>
<div
class=
"header
__
center"
>
<slot
name=
"headerCenter"
/>
<slot
name=
"headerCenter"
/>
</div>
</div>
<div
class=
"header
-
right"
>
<div
class=
"header
__
right"
>
<slot
name=
"headerRight"
/>
<slot
name=
"headerRight"
/>
</div>
</div>
</header>
</header>
<content
class=
"
app-horizontal-layou
t"
>
<content
class=
"
index-view-layout-conten
t"
>
<slot
name=
"navPos"
/>
<slot
name=
"navPos"
/>
</content>
</content>
<footer
class=
"layout-footer-center"
>
<slot
name=
"footer"
></slot>
</footer>
</layout>
</layout>
</
template
>
</
template
>
<
script
lang=
"ts"
>
<
script
lang=
"ts"
>
...
...
src/styles/default.less
浏览文件 @
fcc4ae31
...
@@ -5,6 +5,7 @@
...
@@ -5,6 +5,7 @@
@import '../theme/default.theme.less';
@import '../theme/default.theme.less';
@import './app-code-list.less';
@import './app-code-list.less';
@import './var.css';
@import './var.css';
@import './var.less';
#app {
#app {
height: 100vh;
height: 100vh;
...
...
src/styles/var.less
0 → 100644
浏览文件 @
fcc4ae31
:root {
// 安永黑
--app-color-black: #232425;
// 安永灰1
--app-color-gray-100: #747480;
// 安永灰2
--app-color-gray-gray-200: #C4C4CD;
// 安永灰2 50%
--app-color-gray-gray-250: #E1E1E6;
// 安永灰4
--app-color-gray-gray-400: #F6F6FA;
// 安永白
--app-color-gray-white: #FFFFFF;
// 安永蓝
--app-color-gray-blue: #188CE5;
// 安永黄
--app-color-gray-yellow: #FFE600;
// 安永红
--app-color-gray-red: #B9251C;
// 安永橙
--app-color-gray-orange: #FF810A;
// 安永绿
--app-color-gray-green: #2DB757;
// 安永蓝绿
--app-color-gray-blue-green: #27ACAA;
}
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录