Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
smart_gov_platform
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
赵啸非
smart_gov_platform
Commits
4b47f9d7
Commit
4b47f9d7
authored
Sep 01, 2023
by
“yiyousong”
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
perf:修改报表滚动
parent
af7c34fc
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
56 additions
and
24 deletions
+56
-24
portal-manager-ui/admin/src/App.vue
portal-manager-ui/admin/src/App.vue
+1
-1
portal-manager-ui/admin/src/assets/css/common.less
portal-manager-ui/admin/src/assets/css/common.less
+28
-1
portal-manager-ui/admin/src/utils/css/AntUI.less
portal-manager-ui/admin/src/utils/css/AntUI.less
+20
-20
portal-manager-ui/admin/src/views/dataAdmin/components/queueCall/queueRecord.vue
.../src/views/dataAdmin/components/queueCall/queueRecord.vue
+1
-1
portal-manager-ui/admin/src/views/dataAdmin/components/sampleRecordReport/sampleForm.vue
...ws/dataAdmin/components/sampleRecordReport/sampleForm.vue
+2
-1
portal-manager-ui/admin/src/views/dataAdmin/dataAdmin.vue
portal-manager-ui/admin/src/views/dataAdmin/dataAdmin.vue
+1
-0
portal-manager-ui/admin/src/views/home/home.vue
portal-manager-ui/admin/src/views/home/home.vue
+3
-0
No files found.
portal-manager-ui/admin/src/App.vue
View file @
4b47f9d7
<
template
>
<
template
>
<div
class=
"app
h-full w
-full"
>
<div
class=
"app
w-full h
-full"
>
<a-config-provider
:locale=
"zh_CN"
>
<a-config-provider
:locale=
"zh_CN"
>
<router-view
/>
<router-view
/>
</a-config-provider>
</a-config-provider>
...
...
portal-manager-ui/admin/src/assets/css/common.less
View file @
4b47f9d7
...
@@ -630,7 +630,18 @@ img {
...
@@ -630,7 +630,18 @@ img {
tr, th,td{
tr, th,td{
border:none !important;
border:none !important;
}
}
// .ant-table-body-inner{
// &::-webkit-scrollbar{
// display: none;
// }
// }
// :hover{
// .ant-table-body-inner{
// &::-webkit-scrollbar{
// display: block;
// }
// }
// }
}
}
.ant-table-thead th {
.ant-table-thead th {
background: linear-gradient(0deg, #f9fbff 0%, #cbddff 78%);
background: linear-gradient(0deg, #f9fbff 0%, #cbddff 78%);
...
@@ -747,3 +758,19 @@ img {
...
@@ -747,3 +758,19 @@ img {
color: #ffffff;
color: #ffffff;
}
}
}
}
// 表格鼠标移入显示滚动条
.ant-table {
.ant-table-body,.ant-table-body-inner{
&::-webkit-scrollbar{
display: none;
}
}
:hover{
.ant-table-body,.ant-table-body-inner{
&::-webkit-scrollbar{
display:block;
}
}
}
}
\ No newline at end of file
portal-manager-ui/admin/src/utils/css/AntUI.less
View file @
4b47f9d7
...
@@ -31,26 +31,26 @@
...
@@ -31,26 +31,26 @@
// }
// }
// }
// }
::-webkit-scrollbar {
//
::-webkit-scrollbar {
width: 7px;
//
width: 7px;
background: transparent !important;
//
background: transparent !important;
}
//
}
::-webkit-scrollbar-corner,
//
::-webkit-scrollbar-corner,
/* 滚动条角落 */
/
/ /
* 滚动条角落 */
::-webkit-scrollbar-thumb,
//
::-webkit-scrollbar-thumb,
::-webkit-scrollbar-track {
//
::-webkit-scrollbar-track {
border-radius: 5px;
//
border-radius: 5px;
}
//
}
::-webkit-scrollbar-corner,
//
::-webkit-scrollbar-corner,
::-webkit-scrollbar-track {
//
::-webkit-scrollbar-track {
/* 滚动条轨道 */
//
/* 滚动条轨道 */
background-color: transparent !important;
//
background-color: transparent !important;
box-shadow: unset !important;
//
box-shadow: unset !important;
}
//
}
::-webkit-scrollbar-thumb {
// ::-webkit-scrollbar-thumb {
background-color: rgba(144, 147, 153, .5);
// background-color: rgba(144, 147, 153, .5);
/* 滚动条手柄 */
// /* 滚动条手柄 */
}
// }
\ No newline at end of file
\ No newline at end of file
portal-manager-ui/admin/src/views/dataAdmin/components/queueCall/queueRecord.vue
View file @
4b47f9d7
<
template
>
<
template
>
<div
class=
"queue"
>
<div
class=
"queue"
>
<a-table
<a-table
style=
"width: 1500px"
style=
"
max-
width: 1500px"
size=
"middle"
size=
"middle"
:columns=
"columns"
:columns=
"columns"
:data-source=
"tableData"
:data-source=
"tableData"
...
...
portal-manager-ui/admin/src/views/dataAdmin/components/sampleRecordReport/sampleForm.vue
View file @
4b47f9d7
<
template
>
<
template
>
<div>
<div>
<a-table
<a-table
style=
"width: 1500px"
style=
"
max-
width: 1500px"
size=
"middle"
size=
"middle"
:columns=
"columns"
:columns=
"columns"
:data-source=
"tableData"
:data-source=
"tableData"
:loading=
"loading"
:loading=
"loading"
:scroll=
"
{
:scroll=
"
{
x: 500,
y: 490,
y: 490,
}"
}"
:row-selection="{
:row-selection="{
...
...
portal-manager-ui/admin/src/views/dataAdmin/dataAdmin.vue
View file @
4b47f9d7
...
@@ -220,6 +220,7 @@ export default {
...
@@ -220,6 +220,7 @@ export default {
margin-bottom: 12px;
margin-bottom: 12px;
}
}
.out-box {
.out-box {
overflow: auto;
border-radius: 8px;
border-radius: 8px;
}
}
.search-box {
.search-box {
...
...
portal-manager-ui/admin/src/views/home/home.vue
View file @
4b47f9d7
...
@@ -190,6 +190,9 @@ export default {
...
@@ -190,6 +190,9 @@ export default {
<
style
lang=
"less"
scoped
>
<
style
lang=
"less"
scoped
>
@headerHeight: 72px;
@headerHeight: 72px;
.route-view {
position: relative;
}
.header {
.header {
height: @headerHeight;
height: @headerHeight;
padding: 0px 60px;
padding: 0px 60px;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment