Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-R7-Res
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-R7-Res
提交
a10b5b6f
提交
a10b5b6f
编写于
12月 19, 2022
作者:
Cano1997
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update:表格视图样式优化
上级
ea1b2581
变更
6
隐藏空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
71 行增加
和
89 行删除
+71
-89
app-grid-pagination.scss
src/components/app-grid-pagination/app-grid-pagination.scss
+1
-1
app-quick-group.scss
src/components/app-quick-group/app-quick-group.scss
+16
-13
app-searchbar.scss
src/components/app-searchbar/app-searchbar.scss
+19
-7
app-searchbar.vue
src/components/app-searchbar/app-searchbar.vue
+7
-15
grid-view-layout.scss
src/layout/grid-view-layout/grid-view-layout.scss
+14
-48
table.scss
src/styles/element/table.scss
+14
-5
未找到文件。
src/components/app-grid-pagination/app-grid-pagination.scss
浏览文件 @
a10b5b6f
...
...
@@ -2,7 +2,7 @@
display
:
flex
;
align-items
:
center
;
justify-content
:
flex-end
;
padding
:
39px
62px
25
px
0
;
padding
:
16px
0
20
px
0
;
color
:
var
(
--
ey-color-gray-100
);
// 选择分页大小
.grid-pagination-size
{
...
...
src/components/app-quick-group/app-quick-group.scss
浏览文件 @
a10b5b6f
.app-quick-group
{
width
:
100%
;
padding
:
0
;
font-size
:
12px
;
display
:
flex
;
justify-content
:
flex-start
;
align-items
:
center
;
background-color
:
transparent
;
gap
:
49px
;
.app-quick-item
{
width
:
110px
;
height
:
34px
;
padding
:
0
;
cursor
:
pointer
;
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
);
&
.is-active
>
span
{
color
:
var
(
--
app-color-blue-green
);
position
:
relative
;
&
:
:
after
{
content
:
''
;
position
:
absolute
;
left
:
-5px
;
bottom
:
-3px
;
width
:
calc
(
100%
+
10px
);
height
:
3px
;
border-radius
:
6px
;
background
:
var
(
--
app-color-blue-green
);
}
}
}
}
\ No newline at end of file
src/components/app-searchbar/app-searchbar.scss
浏览文件 @
a10b5b6f
.app-searchbar
{
width
:
100%
;
padding
:
10px
20px
0px
20px
;
background
:
var
(
--
app-color-white
);
display
:
flex
;
flex-direction
:
column
;
gap
:
1
0px
;
gap
:
2
0px
;
.app-searchbar-group
{
width
:
100%
;
display
:
flex
;
...
...
@@ -12,14 +11,27 @@
gap
:
30px
;
.app-searchbar-item
{
position
:
relative
;
width
:
100%
;
padding-right
:
110px
;
}
.app-searchbar-action
{
position
:
absolute
;
right
:
75px
;
top
:
5px
;
cursor
:
pointer
;
left
:
340px
;
top
:
0
;
height
:
34px
;
display
:
flex
;
align-items
:
center
;
gap
:
16px
;
img
{
cursor
:
pointer
;
}
}
.app-searchbar-field
{
width
:
160px
;
}
.app-searchbar-mode
{
width
:
130px
;
}
.app-searchbar-value
{
width
:
320px
;
}
}
}
\ No newline at end of file
src/components/app-searchbar/app-searchbar.vue
浏览文件 @
a10b5b6f
<
template
>
<div
class=
"app-searchbar"
>
<div
class=
"app-searchbar-group"
v-for=
"(item,index) in items"
>
<div
class=
"app-searchbar-group"
v-for=
"(item,index) in items"
:key=
"index"
>
<el-select
size=
"small"
class=
"app-searchbar-field app-searchbar-item"
v-model=
"item.field"
clearable
:placeholder=
"$t('components.filterTree.placeholder')"
>
<el-option
v-for=
"field in fieldItems"
...
...
@@ -16,8 +16,8 @@
<slot
:data=
"item"
></slot>
</div>
<div
class=
"app-searchbar-action"
>
<img
v-if=
"index === items.length - 1"
src=
"assets/img/ic_add_circle
.svg"
@
click=
"onAddItem()"
>
<img
v-else
src=
"assets/img/remove_circl
e.svg"
@
click=
"onRemoveItem(index)"
>
<img
src=
"assets/img/add
.svg"
@
click=
"onAddItem()"
>
<img
src=
"assets/img/remov
e.svg"
@
click=
"onRemoveItem(index)"
>
</div>
</div>
</div>
...
...
@@ -51,17 +51,6 @@ export default class AppSearchbar extends Vue {
*/
@
Prop
()
fields
:
any
;
@
Watch
(
'items'
,{
immediate
:
true
})
onItemsChange
(
newItems
:
any
[])
{
if
(
newItems
.
length
==
0
)
{
this
.
items
.
push
({
field
:
null
,
mode
:
null
,
editor
:
null
})
}
}
/**
* 属性项集合
*
...
...
@@ -80,6 +69,9 @@ export default class AppSearchbar extends Vue {
if
(
!
this
.
fields
)
{
return
;
}
if
(
this
.
items
.
length
===
0
)
{
this
.
onAddItem
();
}
this
.
fields
.
forEach
((
field
:
any
)
=>
{
let
index
:
number
=
this
.
fieldItems
.
findIndex
((
item
:
any
)
=>
Object
.
is
(
item
.
value
,
field
.
prop
));
if
(
index
<
0
)
{
...
...
@@ -136,7 +128,7 @@ export default class AppSearchbar extends Vue {
* @return {*}
* @memberof AppSearchbar
*/
public
onAddItem
(
data
:
any
)
{
public
onAddItem
()
{
this
.
items
.
push
({
field
:
null
,
mode
:
null
,
...
...
src/layout/grid-view-layout/grid-view-layout.scss
浏览文件 @
a10b5b6f
...
...
@@ -4,10 +4,12 @@
overflow
:
auto
;
display
:
flex
;
flex-direction
:
column
;
padding
:
0
18
px
;
padding
:
0
20
px
;
.view-header__top
{
height
:
60px
;
padding
:
20px
0
;
line-height
:
17px
;
display
:
flex
;
flex-direction
:
column
;
position
:
relative
;
align-items
:
center
;
justify-content
:
flex-end
;
...
...
@@ -20,44 +22,16 @@
.view-header__content
{
display
:
flex
;
flex-direction
:
column
;
padding
:
16px
4px
20px
7px
;
gap
:
10px
;
background
:
var
(
--
app-color-white
);
box-sizing
:
border-box
;
border
:
1px
solid
var
(
--
app-color-gray-250
);
.quick-search-input
.ivu-input
{
width
:
100%
;
height
:
34px
;
display
:
flex
;
flex-direction
:
row
;
justify-content
:
flex-end
;
align-items
:
center
;
padding
:
4px
10px
;
background
:
var
(
--
app-color-white
);
box-sizing
:
border-box
;
border
:
1px
solid
var
(
--
app-color-gray-250
);
border-radius
:
0
;
z-index
:
0
;
&
:focus
{
box-shadow
:
none
;
border-color
:
var
(
--
app-color-gray-250
);
}
}
.search-form-toggle
{
width
:
100px
;
height
:
26px
;
padding
:
20px
;
gap
:
20px
;
border
:
1px
solid
var
(
--
app-color-gray-200
);
border-radius
:
6px
;
.quick-search-container
{
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
);
gap
:
20px
;
.ivu-btn
{
width
:
108px
;
height
:
34px
;
}
}
.app-search-form
.search-button
{
...
...
@@ -65,15 +39,7 @@
}
}
.view-header__bottom
{
min-height
:
20px
;
display
:
flex
;
justify-content
:
flex-end
;
align-items
:
center
;
background-color
:
transparent
;
gap
:
10px
;
.ivu-btn
{
margin
:
20px
0
;
}
padding
:
16px
0
;
}
>
.view-content
{
flex
:
auto
;
...
...
src/styles/element/table.scss
浏览文件 @
a10b5b6f
.el-table
{
display
:
flex
;
flex-direction
:
column
;
gap
:
10px
;
border
:
0
;
color
:
var
(
--
app-color-gray-100
);
&
:
:
before
{
...
...
@@ -9,10 +8,11 @@
}
.el-table__header-wrapper
{
.cell
{
height
:
40px
;
color
:
var
(
--
app-color-black
);
font-size
:
13px
;
font-weight
:
bold
;
line-height
:
18
px
;
line-height
:
40
px
;
text-align
:
center
;
.ascending
{
border-bottom-color
:
var
(
--
app-color-black
);
...
...
@@ -30,20 +30,20 @@
}
.el-table__body-wrapper
,
.el-table__fixed-body-wrapper
{
max-height
:
calc
(
100%
-
6
0px
);
max-height
:
calc
(
100%
-
4
0px
);
.el-table__body
{
height
:
100%
;
}
.el-table__cell
{
border
:
0
;
border-bottom
:
1px
solid
var
(
--
app-color-gray-250
);
padding
:
10px
0
;
padding
:
0
;
height
:
54px
;
>
.cell
{
display
:
flex
;
justify-content
:
center
;
line-height
:
20px
;
font-size
:
12px
;
line-height
:
20px
;
white-space
:
pre-line
;
a
{
color
:
var
(
--
app-color-blue-green
);
...
...
@@ -52,9 +52,18 @@
}
}
.el-table-column--selection
{
&
.is-center
div
.cell
{
padding
:
0
20px
;
width
:
100%
;
line-height
:
40px
;
.el-checkbox__input
{
height
:
16px
;
}
}
.el-checkbox__inner
{
height
:
16px
;
width
:
16px
;
border-radius
:
2px
;
}
.el-checkbox.is-checked
{
.el-checkbox__inner
{
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录