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
c9217317
Commit
c9217317
authored
Nov 26, 2024
by
赵啸非
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
2e75ece3
c1a916f0
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
39 additions
and
13 deletions
+39
-13
portal-manager-ui/admin/src/assets/css/common.less
portal-manager-ui/admin/src/assets/css/common.less
+16
-0
portal-manager-ui/admin/src/views/thePlatformIsSet/components/logService/Service.vue
.../views/thePlatformIsSet/components/logService/Service.vue
+20
-10
portal-manager-ui/admin/src/views/thePlatformIsSet/index.css
portal-manager-ui/admin/src/views/thePlatformIsSet/index.css
+3
-3
No files found.
portal-manager-ui/admin/src/assets/css/common.less
View file @
c9217317
...
@@ -316,6 +316,22 @@ img {
...
@@ -316,6 +316,22 @@ img {
background-color: rgba(5, 149, 253, 1);
background-color: rgba(5, 149, 253, 1);
}
}
.ant-table-fixed-header .ant-table-scroll .ant-table-header {
overflow: hidden !important;
margin-bottom: 0 !important;
padding-right: 6px;
tr:only-child > th:last-child {
border-right-color: #f0f0f0 !important;
}
}
.ant-table-placeholder {
width: calc(100% - 6px);
}
// .ant-table-header {
// background: #fff;
// }
::-webkit-scrollbar {
::-webkit-scrollbar {
width: 6px;
width: 6px;
height: 6px;
height: 6px;
...
...
portal-manager-ui/admin/src/views/thePlatformIsSet/components/logService/Service.vue
View file @
c9217317
...
@@ -11,7 +11,9 @@
...
@@ -11,7 +11,9 @@
v-model=
"BegindAndEndTime"
v-model=
"BegindAndEndTime"
>
>
</a-range-picker>
</a-range-picker>
<a-button
type=
"primary"
class=
"addclass"
@
click=
"handleSearch"
>
搜索
</a-button>
<a-button
type=
"primary"
class=
"addclass"
@
click=
"handleSearch"
>
搜索
</a-button
>
<a-button
@
click=
"resetSearch"
>
重置
</a-button>
<a-button
@
click=
"resetSearch"
>
重置
</a-button>
</a-space>
</a-space>
</div>
</div>
...
@@ -110,7 +112,10 @@ export default {
...
@@ -110,7 +112,10 @@ export default {
tableHeaders
,
tableHeaders
,
searchName
:
""
,
searchName
:
""
,
tableLoading
:
false
,
tableLoading
:
false
,
BegindAndEndTime
:
[],
BegindAndEndTime
:
[
this
.
$moment
().
format
(
"
YYYY-MM-DD
"
),
this
.
$moment
().
format
(
"
YYYY-MM-DD
"
),
],
tableSourceData
:
[],
tableSourceData
:
[],
pageSizeOptions
:
[
"
10
"
,
"
30
"
,
"
50
"
,
"
100
"
],
pageSizeOptions
:
[
"
10
"
,
"
30
"
,
"
50
"
,
"
100
"
],
current
:
1
,
current
:
1
,
...
@@ -127,17 +132,19 @@ export default {
...
@@ -127,17 +132,19 @@ export default {
// 获取日志列表
// 获取日志列表
async
getOperLogList
()
{
async
getOperLogList
()
{
this
.
tableLoading
=
true
;
this
.
tableLoading
=
true
;
let
query
=
{
logDateStart
:
this
.
BegindAndEndTime
[
0
],
logDateEnd
:
this
.
BegindAndEndTime
[
1
],
};
if
(
this
.
searchName
!=
""
)
{
query
.
content
=
`%
${
this
.
searchName
}
%`
;
}
let
res
=
await
getOperLogList
({
let
res
=
await
getOperLogList
({
pageInfo
:
{
pageInfo
:
{
prePageResult
:
this
.
size
,
prePageResult
:
this
.
size
,
currPage
:
this
.
size
,
currPage
:
this
.
current
,
},
query
:
{
logDateStart
:
this
.
BegindAndEndTime
[
0
],
logDateEnd
:
this
.
BegindAndEndTime
[
1
],
// siteId: this.siteId,
content
:
`%
${
this
.
searchName
}
%`
,
},
},
query
,
});
});
this
.
tableLoading
=
false
;
this
.
tableLoading
=
false
;
this
.
dict
=
res
.
data
.
dict
;
this
.
dict
=
res
.
data
.
dict
;
...
@@ -162,7 +169,10 @@ export default {
...
@@ -162,7 +169,10 @@ export default {
},
},
resetSearch
()
{
resetSearch
()
{
this
.
current
=
1
;
this
.
current
=
1
;
this
.
BegindAndEndTime
=
[];
this
.
BegindAndEndTime
=
[
this
.
$moment
().
format
(
"
YYYY-MM-DD
"
),
this
.
$moment
().
format
(
"
YYYY-MM-DD
"
),
];
this
.
searchName
=
""
;
this
.
searchName
=
""
;
this
.
getOperLogList
();
this
.
getOperLogList
();
},
},
...
...
portal-manager-ui/admin/src/views/thePlatformIsSet/index.css
View file @
c9217317
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
}
}
}
}
html
{
html
{
font-size
:
var
(
--base-font-size
);
font-size
:
var
(
--base-font-size
);
}
}
...
@@ -25,8 +25,8 @@ html{
...
@@ -25,8 +25,8 @@ html{
.effect-box
{
.effect-box
{
position
:
sticky
;
position
:
sticky
;
top
:
0
;
top
:
0
;
/* height: 100vh; */
height
:
100vh
;
min-height
:
930rem
;
/* min-height: 930rem; */
background-color
:
#031233
;
background-color
:
#031233
;
perspective
:
800px
;
perspective
:
800px
;
overflow
:
hidden
;
overflow
:
hidden
;
...
...
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