Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
DC-TOM
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
刘照晖
DC-TOM
Commits
d329dc4e
Commit
d329dc4e
authored
Jul 03, 2025
by
Cai Wei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(*): 分页器修改
parent
ba538afa
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
71 additions
and
50 deletions
+71
-50
index.vue
src/layout/index.vue
+2
-2
style.css
src/style.css
+4
-4
theme.scss
src/theme.scss
+21
-0
AboutView.vue
src/views/AboutView/AboutView.vue
+4
-4
myAgency.vue
src/views/closeManage/myAgency.vue
+2
-2
myDone.vue
src/views/closeManage/myDone.vue
+2
-2
collectorList.vue
src/views/collectorList/collectorList.vue
+4
-4
roomSettingDialog.vue
src/views/dustOverview/components/roomSettingDialog.vue
+1
-1
valveSettingDialog.vue
src/views/dustOverview/components/valveSettingDialog.vue
+1
-1
index.vue
src/views/dustOverview/index.vue
+23
-23
index.vue
src/views/equipmentManagement/index.vue
+2
-2
suspendManagement.vue
...uipmentManagement/suspendManagement/suspendManagement.vue
+4
-4
index.vue
src/views/login/index.vue
+1
-1
No files found.
src/layout/index.vue
View file @
d329dc4e
...
...
@@ -213,8 +213,8 @@ export default {
position
:
absolute
;
right
:
200px
;
color
:
#ffffff
;
background
:
#2182a0
;
border
:
1px
solid
#2182a0
;
background
-color
:
var
(
--
bg-primary
)
;
border
:
1px
solid
var
(
--
success
)
;
border-radius
:
6px
;
cursor
:
pointer
;
transition
:
all
0
.3s
ease
;
...
...
src/style.css
View file @
d329dc4e
...
...
@@ -54,16 +54,16 @@
}
.view-btn
{
color
:
#2182a0
!important
;
color
:
var
(
--success
)
!important
;
}
.edit-btn
{
color
:
#2182a0
!important
;
color
:
var
(
--success
)
!important
;
}
.el-button--primary
{
background-color
:
#2182a0
!important
;
border-color
:
#2182a0
!important
;
background-color
:
var
(
--chart-blue
)
!important
;
border-color
:
var
(
--chart-blue
)
!important
;
}
.login-container
.el-form-item
{
...
...
src/theme.scss
View file @
d329dc4e
...
...
@@ -291,4 +291,25 @@
background-color
:
#181d21
!
important
;
box-shadow
:
0
0
0
1px
#434343
inset
!
important
;
}
}
.el-pagination
button
{
background
:
var
(
--
bg-secondary
)
!
important
;
}
.el-pager
li
{
background
:
var
(
--
bg-secondary
)
!
important
;
}
.el-pager
li
.is-active
,
.el-pager
li
:hover
{
color
:
var
(
--
success
)
!
important
;
}
.el-pager
li
{
color
:
var
(
--
text-secondary
)
!
important
;
&
:hover
{
color
:
var
(
--
success
)
!
important
;
}
}
.el-pagination__total
{
color
:
var
(
--
text-secondary
)
!
important
;
}
\ No newline at end of file
src/views/AboutView/AboutView.vue
View file @
d329dc4e
...
...
@@ -425,15 +425,15 @@ onBeforeUnmount(() => {});
}
.search-btn
{
width
:
85px
;
background
:
#2182a0
;
border
:
1px
solid
#2182a0
;
background
-color
:
var
(
--
bg-primary
)
;
border
:
1px
solid
var
(
--
success
)
;
}
.add-btn
{
width
:
85px
;
}
.health-score
{
color
:
#027ffc
;
color
:
var
(
--
success
)
;
cursor
:
pointer
;
display
:
block
;
width
:
100%
;
...
...
@@ -503,7 +503,7 @@ onBeforeUnmount(() => {});
.table-title
{
font-size
:
14px
;
color
:
#2182a0
;
color
:
var
(
--
success
)
;
margin-bottom
:
16px
;
font-weight
:
500
;
}
...
...
src/views/closeManage/myAgency.vue
View file @
d329dc4e
...
...
@@ -1649,8 +1649,8 @@ const handlePaginationChange = (pagination) => {
}
.search-btn
{
width
:
85px
;
background
:
#2182a0
;
border
:
1px
solid
#2182a0
;
background
-color
:
var
(
--
bg-primary
)
;
border
:
1px
solid
var
(
--
success
)
;
}
:deep
(
.el-tag
)
{
margin-right
:
10px
;
...
...
src/views/closeManage/myDone.vue
View file @
d329dc4e
...
...
@@ -1733,8 +1733,8 @@ const handlePaginationChange = (pagination) => {
}
.search-btn
{
width
:
85px
;
background
:
#2182a0
;
border
:
1px
solid
#2182a0
;
background
-color
:
var
(
--
bg-primary
)
;
border
:
1px
solid
var
(
--
success
)
;
}
}
</
style
>
\ No newline at end of file
src/views/collectorList/collectorList.vue
View file @
d329dc4e
...
...
@@ -361,15 +361,15 @@ onBeforeUnmount(() => {});
}
.search-btn
{
width
:
85px
;
background
:
#2182a0
;
border
:
1px
solid
#2182a0
;
background
-color
:
var
(
--
bg-primary
)
;
border
:
1px
solid
var
(
--
success
)
;
}
.add-btn
{
width
:
85px
;
}
.health-score
{
color
:
#027ffc
;
color
:
var
(
--
success
)
;
cursor
:
pointer
;
display
:
block
;
width
:
100%
;
...
...
@@ -439,7 +439,7 @@ onBeforeUnmount(() => {});
.table-title
{
font-size
:
14px
;
color
:
#2182a0
;
color
:
var
(
--
success
)
;
margin-bottom
:
16px
;
font-weight
:
500
;
}
...
...
src/views/dustOverview/components/roomSettingDialog.vue
View file @
d329dc4e
...
...
@@ -191,7 +191,7 @@ const handleConfirm = () => {
.table-title
{
font-size
:
14px
;
color
:
#2182a0
;
color
:
var
(
--
success
)
;
margin-bottom
:
16px
;
font-weight
:
500
;
}
...
...
src/views/dustOverview/components/valveSettingDialog.vue
View file @
d329dc4e
...
...
@@ -375,7 +375,7 @@ const cancel = () => {
.table-title
{
font-size
:
14px
;
color
:
#2182a0
;
color
:
var
(
--
success
)
;
margin-bottom
:
16px
;
font-weight
:
500
;
...
...
src/views/dustOverview/index.vue
View file @
d329dc4e
...
...
@@ -586,25 +586,25 @@ onBeforeUnmount(() => {});
align-items
:
center
;
margin-bottom
:
16px
;
:deep
(
.el-form-item__label
)
{
color
:
#fff
;
}
//
:deep(.el-form-item__label) {
//
color: #fff;
//
}
:deep
(
.el-input__inner
),
:deep
(
.el-select__input
)
{
background-color
:
#242a30
;
border-color
:
#2c3136
;
color
:
#fff
;
}
//
:deep(.el-input__inner),
//
:deep(.el-select__input) {
//
background-color: #242a30;
//
border-color: #2c3136;
//
color: #fff;
//
}
:deep
(
.el-select-dropdown__item
)
{
color
:
#fff
;
}
//
:deep(.el-select-dropdown__item) {
//
color: #fff;
//
}
:deep
(
.el-select-dropdown
)
{
background-color
:
#242a30
;
border-color
:
#2c3136
;
}
//
:deep(.el-select-dropdown) {
//
background-color: #242a30;
//
border-color: #2c3136;
//
}
}
.table-box
{
width
:
100%
;
...
...
@@ -643,24 +643,24 @@ onBeforeUnmount(() => {});
}
.el-input__inner
{
background-color
:
#242a30
;
//
background-color: #242a30;
border-color
:
#2c3136
;
color
:
#fff
;
}
}
}
}
}
.default-btn
{
width
:
85px
;
background-color
:
#242a30
;
background-color
:
var
(
--
text-secondary
)
;
border-color
:
#2c3136
;
color
:
#fff
;
}
.search-btn
{
width
:
85px
;
background
:
#2182a0
;
border
:
1px
solid
#2182a0
;
background
-color
:
var
(
--
bg-primary
)
;
border
:
1px
solid
var
(
--
success
)
;
}
.add-btn
{
width
:
85px
;
...
...
@@ -669,7 +669,7 @@ onBeforeUnmount(() => {});
}
.health-score
{
color
:
#027ffc
;
color
:
var
(
--
success
)
;
cursor
:
pointer
;
display
:
block
;
width
:
100%
;
...
...
@@ -766,7 +766,7 @@ onBeforeUnmount(() => {});
.table-title
{
font-size
:
14px
;
color
:
#2182a0
;
color
:
var
(
--
success
)
;
margin-bottom
:
16px
;
font-weight
:
500
;
}
...
...
src/views/equipmentManagement/index.vue
View file @
d329dc4e
...
...
@@ -488,8 +488,8 @@ onMounted(() => {
}
.search-btn
{
width
:
85px
;
background
:
#2182a0
;
border
:
1px
solid
#2182a0
;
background
-color
:
var
(
--
bg-primary
)
;
border
:
1px
solid
var
(
--
success
)
;
}
.add-btn
{
width
:
85px
;
...
...
src/views/equipmentManagement/suspendManagement/suspendManagement.vue
View file @
d329dc4e
...
...
@@ -331,15 +331,15 @@ onBeforeUnmount(() => {});
}
.search-btn
{
width
:
85px
;
background
:
#2182a0
;
border
:
1px
solid
#2182a0
;
background
-color
:
var
(
--
bg-primary
)
;
border
:
1px
solid
var
(
--
success
)
;
}
.add-btn
{
width
:
85px
;
}
.health-score
{
color
:
#027ffc
;
color
:
var
(
--
success
)
;
cursor
:
pointer
;
display
:
block
;
width
:
100%
;
...
...
@@ -409,7 +409,7 @@ onBeforeUnmount(() => {});
.table-title
{
font-size
:
14px
;
color
:
#2182a0
;
color
:
var
(
--
success
)
;
margin-bottom
:
16px
;
font-weight
:
500
;
}
...
...
src/views/login/index.vue
View file @
d329dc4e
...
...
@@ -1240,7 +1240,7 @@ $light_gray: #eee;
.login-btn
{
width
:
100%
;
margin-top
:
40px
;
background
:
#2182a0
;
background
-color
:
var
(
--
bg-primary
)
;
height
:
40px
;
}
...
...
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