Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-R7-Res
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-R7-Res
提交
9d6c8623
提交
9d6c8623
编写于
12月 09, 2022
作者:
RedPig97
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update:样式更新
上级
c71f834c
变更
6
隐藏空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
69 行增加
和
55 行删除
+69
-55
app-quick-group.scss
src/components/app-quick-group/app-quick-group.scss
+22
-33
app-quick-group.vue
src/components/app-quick-group/app-quick-group.vue
+3
-3
grid-view-layout.scss
src/layout/grid-view-layout/grid-view-layout.scss
+34
-18
index-view-layout-left.scss
...layout/index-view-layout-left/index-view-layout-left.scss
+3
-1
index-view-layout-top.scss
src/layout/index-view-layout-top/index-view-layout-top.scss
+3
-0
var.scss
src/styles/var.scss
+4
-0
未找到文件。
src/components/app-quick-group/app-quick-group.scss
浏览文件 @
9d6c8623
.app-quick-group
{
padding
:
4px
;
background-color
:
#F1F1F1
;
.app-quick-item
{
margin-right
:
8px
;
padding
:
8px
;
.app-quick-group
{
width
:
100%
;
padding
:
0
;
display
:
flex
;
justify-content
:
flex-start
;
align-items
:
center
;
background-color
:
transparent
;
.app-quick-item
{
width
:
110px
;
height
:
34px
;
padding
:
0
;
cursor
:
pointer
;
.app-quick-item-label
{
margin-left
:
4px
;
display
:
flex
;
align-items
:
center
;
justify-content
:
center
;
margin-right
:
20px
;
background
:
var
(
--
app-color-white
);
border
:
1px
solid
#FFFFFF
;
box-shadow
:
0px
2px
8px
0px
rgba
(
0
,
0
,
0
,
0
.16
);
&
.is-active
{
font-weight
:
bold
;
border
:
1px
solid
var
(
--
app-color-black
);
box-shadow
:
0px
2px
8px
0px
rgba
(
0
,
0
,
0
,
0
.16
);
}
.app-seleted-item
{
display
:
inline-block
;
font-weight
:
700
;
color
:
#0c64eb
!
important
;
padding
:
4px
;
border-bottom
:
2px
solid
;
}
.app-seleted-item
:focus
{
outline
:
none
;
}
.app-quick-item-counter
{
border-radius
:
12px
;
padding-left
:
4px
;
font-size
:
12px
;
font-weight
:
400
;
vertical-align
:
middle
;
display
:
inline-block
;
width
:
18px
;
height
:
18px
;
margin-left
:
4px
;
background-color
:
#ddd
;
}
}
.app-quick-item
:hover
{
color
:
#0c64eb
!
important
;
}
}
\ No newline at end of file
src/components/app-quick-group/app-quick-group.vue
浏览文件 @
9d6c8623
<
template
>
<div
class=
"app-quick-group"
>
<
span
class=
"app-quick-item
"
v-for=
"item in renderArray"
:key=
"item.id"
@
click=
"handleClick(item)"
>
<span
v-if=
"!item.children"
:style=
"
{color:item.color}"
:class="{'app-seleted-item':isSelectedItem(item)}"
>
<
div
:class=
"
{'app-quick-item': true, 'is-active': isSelectedItem(item)}
" v-for="item in renderArray" :key="item.id" @click="handleClick(item)">
<span
v-if=
"!item.children"
:style=
"
{color:item.color}">
<i
v-if=
" item.iconcls && !Object.is(item.iconcls, '')"
:class=
"item.iconcls"
></i>
<img
v-else-if=
"item.icon && !Object.is(item.icon, '')"
:src=
"item.icon"
/>
<span
class=
"app-quick-item-label"
>
{{
item
.
label
}}
</span>
...
...
@@ -24,7 +24,7 @@
</el-dropdown-item>
</el-dropdown-menu>
</el-dropdown>
</
span
>
</
div
>
</div>
</
template
>
...
...
src/layout/grid-view-layout/grid-view-layout.scss
浏览文件 @
9d6c8623
...
...
@@ -13,21 +13,19 @@
background-color
:
transparent
;
font-size
:
14px
;
line-height
:
22px
;
>
.ivu-tooltip
,>
.ivu-dropdown
{
.ivu-btn
{
width
:
110px
;
height
:
34px
;
display
:
flex
;
flex-direction
:
row
;
justify-content
:
center
;
align-items
:
center
;
padding
:
10px
20px
;
background
:
var
(
--
app-color-white
);
border
:
1px
solid
var
(
--
app-color-blue
);
border-radius
:
0
;
margin-left
:
10px
;
z-index
:
0
;
}
gap
:
10px
;
.ivu-btn
{
width
:
110px
;
height
:
34px
;
display
:
flex
;
flex-direction
:
row
;
justify-content
:
center
;
align-items
:
center
;
padding
:
10px
20px
;
background
:
var
(
--
app-color-white
);
border
:
1px
solid
var
(
--
app-color-blue
);
border-radius
:
0
;
z-index
:
0
;
}
.seperator
{
display
:
none
;
...
...
@@ -59,6 +57,26 @@
border-color
:
var
(
--
app-color-gray-250
);
}
}
.search-form-toggle
{
width
:
100%
;
height
:
26px
;
display
:
flex
;
align-items
:
center
;
gap
:
10px
;
font-size
:
12px
;
padding-left
:
20px
;
cursor
:
pointer
;
i
{
font-weight
:
900
;
font-size
:
14px
;
}
&
:hover
{
color
:
var
(
--
app-color-blue
);
}
}
.app-search-form
.search-button
{
display
:
none
;
}
}
.view-header__bottom
{
height
:
74px
;
...
...
@@ -66,8 +84,7 @@
justify-content
:
flex-end
;
align-items
:
center
;
background-color
:
transparent
;
font-size
:
14px
;
line-height
:
22px
;
gap
:
10px
;
.ivu-btn
{
width
:
110px
;
height
:
34px
;
...
...
@@ -79,7 +96,6 @@
background
:
var
(
--
app-color-white
);
border
:
1px
solid
var
(
--
app-color-blue
);
border-radius
:
0
;
margin-left
:
10px
;
}
.ivu-btn-primary
{
background
:
var
(
--
app-color-blue
);
...
...
src/layout/index-view-layout-left/index-view-layout-left.scss
浏览文件 @
9d6c8623
.index-view-layout--left
{
position
:
relative
;
font-size
:
var
(
--
app-font-size
);
line-height
:
var
(
--
app-line-height
);
color
:
var
(
--
app-color-black
);
.index-view-sider
{
flex
:
none
!
important
;
max-width
:
none
!
important
;
...
...
src/layout/index-view-layout-top/index-view-layout-top.scss
浏览文件 @
9d6c8623
.index-view-layout--top
{
font-size
:
var
(
--
app-font-size
);
line-height
:
var
(
--
app-line-height
);
color
:
var
(
--
app-color-black
);
.index-view-header
{
height
:
64px
;
display
:
flex
;
...
...
src/styles/var.scss
浏览文件 @
9d6c8623
...
...
@@ -86,4 +86,8 @@
--app-color-green
:
#2DB757
;
// 安永蓝绿
--app-color-blue-green
:
#27ACAA
;
// 安永默认字体
--app-font-size
:
14px
;
// 安永默认行高
--app-line-height
:
22px
;
}
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录