Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
蔡永松
/
fontweb-dc
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
39438852
authored
2020-08-03 17:18:06 +0800
by
焦小希
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
修改页面滚动条的样式,批后管理页面的时间过滤器增加
1 parent
6e2d016c
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
147 additions
and
2 deletions
src/main/webapp/view/PHJG/AJCC/chaxun/widget.html
src/main/webapp/view/PHJG/AJCC/daiban/widget.html
src/main/webapp/view/PHJG/AJCC/duban/widget.html
src/main/webapp/view/PHJG/AJCC/yiban/widget.html
src/main/webapp/view/PHJG/PHGL/daiban/js/widget.js
src/main/webapp/view/PHJG/PHGL/daiban/widget.html
src/main/webapp/view/PHJG/PHGL/yiban/js/widget.js
src/main/webapp/view/PHJG/PHGL/yiban/widget.html
src/main/webapp/view/PHJG/WFSJ/xmgl/widget.html
src/main/webapp/view/PHJG/AJCC/chaxun/widget.html
View file @
3943885
...
...
@@ -44,6 +44,21 @@
border
:
1px
solid
#cac8c8
;
min-height
:
750px
;
}
.el-table__body-wrapper
::-webkit-scrollbar
{
width
:
4px
;
height
:
6px
;
}
.el-table__body-wrapper
::-webkit-scrollbar-thumb
{
border-radius
:
6px
;
-webkit-box-shadow
:
inset
0
0
5px
rgba
(
0
,
0
,
0
,
0.2
);
background
:
rgba
(
0
,
0
,
0
,
0.2
);
}
.el-table__body-wrapper
::-webkit-scrollbar-track
{
-webkit-box-shadow
:
inset
0
0
5px
rgba
(
0
,
0
,
0
,
0.2
);
border-radius
:
0
;
background
:
rgba
(
0
,
0
,
0
,
0.1
);
}
.el-table
th
{
background
:
#F2F2F2
!important
;
}
...
...
src/main/webapp/view/PHJG/AJCC/daiban/widget.html
View file @
3943885
...
...
@@ -46,6 +46,21 @@
min-height
:
750px
;
}
.el-table__body-wrapper
::-webkit-scrollbar
{
width
:
4px
;
height
:
6px
;
}
.el-table__body-wrapper
::-webkit-scrollbar-thumb
{
border-radius
:
6px
;
-webkit-box-shadow
:
inset
0
0
5px
rgba
(
0
,
0
,
0
,
0.2
);
background
:
rgba
(
0
,
0
,
0
,
0.2
);
}
.el-table__body-wrapper
::-webkit-scrollbar-track
{
-webkit-box-shadow
:
inset
0
0
5px
rgba
(
0
,
0
,
0
,
0.2
);
border-radius
:
0
;
background
:
rgba
(
0
,
0
,
0
,
0.1
);
}
.el-table
th
{
background
:
#F2F2F2
!important
;
}
...
...
src/main/webapp/view/PHJG/AJCC/duban/widget.html
View file @
3943885
...
...
@@ -44,6 +44,21 @@
border
:
1px
solid
#cac8c8
;
min-height
:
750px
}
.el-table__body-wrapper
::-webkit-scrollbar
{
width
:
4px
;
height
:
6px
;
}
.el-table__body-wrapper
::-webkit-scrollbar-thumb
{
border-radius
:
6px
;
-webkit-box-shadow
:
inset
0
0
5px
rgba
(
0
,
0
,
0
,
0.2
);
background
:
rgba
(
0
,
0
,
0
,
0.2
);
}
.el-table__body-wrapper
::-webkit-scrollbar-track
{
-webkit-box-shadow
:
inset
0
0
5px
rgba
(
0
,
0
,
0
,
0.2
);
border-radius
:
0
;
background
:
rgba
(
0
,
0
,
0
,
0.1
);
}
.el-table
th
{
background
:
#F2F2F2
!important
;
}
...
...
src/main/webapp/view/PHJG/AJCC/yiban/widget.html
View file @
3943885
...
...
@@ -44,6 +44,21 @@
margin-top
:
20px
;
min-height
:
750px
;
}
.el-table__body-wrapper
::-webkit-scrollbar
{
width
:
4px
;
height
:
6px
;
}
.el-table__body-wrapper
::-webkit-scrollbar-thumb
{
border-radius
:
6px
;
-webkit-box-shadow
:
inset
0
0
5px
rgba
(
0
,
0
,
0
,
0.2
);
background
:
rgba
(
0
,
0
,
0
,
0.2
);
}
.el-table__body-wrapper
::-webkit-scrollbar-track
{
-webkit-box-shadow
:
inset
0
0
5px
rgba
(
0
,
0
,
0
,
0.2
);
border-radius
:
0
;
background
:
rgba
(
0
,
0
,
0
,
0.1
);
}
.el-table
th
{
background
:
#F2F2F2
!important
;
}
...
...
src/main/webapp/view/PHJG/PHGL/daiban/js/widget.js
View file @
3943885
...
...
@@ -21,6 +21,21 @@ var self = new Vue({
mounted
(){
this
.
getData
();
},
//私有过滤器
filters
:{
dataFormat
:
function
(
originVal
)
{
const
dt
=
new
Date
(
originVal
)
const
y
=
dt
.
getFullYear
()
const
m
=
(
dt
.
getMonth
()
+
1
+
''
).
padStart
(
2
,
'0'
)
const
d
=
(
dt
.
getDate
()
+
''
).
padStart
(
2
,
'0'
)
const
hh
=
(
dt
.
getHours
()
+
''
).
padStart
(
2
,
'0'
)
const
mm
=
(
dt
.
getMinutes
()
+
''
).
padStart
(
2
,
'0'
)
const
ss
=
(
dt
.
getSeconds
()
+
''
).
padStart
(
2
,
'0'
)
// yyyy-mm-dd hh:mm:ss
return
`
${
y
}
-
${
m
}
-
${
d
}
${
hh
}
:
${
mm
}
:
${
ss
}
`
}
},
methods
:{
handleSizeChange
(){
...
...
src/main/webapp/view/PHJG/PHGL/daiban/widget.html
View file @
3943885
...
...
@@ -31,6 +31,21 @@
border
:
1px
solid
#cac8c8
;
min-height
:
750px
}
.el-table__body-wrapper
::-webkit-scrollbar
{
width
:
4px
;
height
:
6px
;
}
.el-table__body-wrapper
::-webkit-scrollbar-thumb
{
border-radius
:
6px
;
-webkit-box-shadow
:
inset
0
0
5px
rgba
(
0
,
0
,
0
,
0.2
);
background
:
rgba
(
0
,
0
,
0
,
0.2
);
}
.el-table__body-wrapper
::-webkit-scrollbar-track
{
-webkit-box-shadow
:
inset
0
0
5px
rgba
(
0
,
0
,
0
,
0.2
);
border-radius
:
0
;
background
:
rgba
(
0
,
0
,
0
,
0.1
);
}
.el-table
th
{
background
:
#F2F2F2
!important
;
}
...
...
@@ -178,8 +193,13 @@
prop=
"CREATETIME"
label=
"创建时间"
align=
"center"
width=
"
1
00"
width=
"
2
00"
>
<template
slot-scope=
"scope"
>
<span>
{{
scope.row.CREATETIME | dataFormat
}}
</span>
</template>
</el-table-column>
</el-table>
<!-- 分页区域-->
...
...
src/main/webapp/view/PHJG/PHGL/yiban/js/widget.js
View file @
3943885
...
...
@@ -107,6 +107,21 @@ var self = new Vue({
mounted
(){
this
.
getData
();
},
//私有过滤器
filters
:{
dataFormat
:
function
(
originVal
)
{
const
dt
=
new
Date
(
originVal
)
const
y
=
dt
.
getFullYear
()
const
m
=
(
dt
.
getMonth
()
+
1
+
''
).
padStart
(
2
,
'0'
)
const
d
=
(
dt
.
getDate
()
+
''
).
padStart
(
2
,
'0'
)
const
hh
=
(
dt
.
getHours
()
+
''
).
padStart
(
2
,
'0'
)
const
mm
=
(
dt
.
getMinutes
()
+
''
).
padStart
(
2
,
'0'
)
const
ss
=
(
dt
.
getSeconds
()
+
''
).
padStart
(
2
,
'0'
)
// yyyy-mm-dd hh:mm:ss
return
`
${
y
}
-
${
m
}
-
${
d
}
${
hh
}
:
${
mm
}
:
${
ss
}
`
}
},
methods
:{
getData
()
{
axios
.
get
(
CONF_NEWGHSC_SERVERURL
+
'/dblb/list/worked'
,
{
...
...
src/main/webapp/view/PHJG/PHGL/yiban/widget.html
View file @
3943885
...
...
@@ -34,6 +34,21 @@
border
:
1px
solid
#cac8c8
;
min-height
:
750px
;
}
.el-table__body-wrapper
::-webkit-scrollbar
{
width
:
4px
;
height
:
6px
;
}
.el-table__body-wrapper
::-webkit-scrollbar-thumb
{
border-radius
:
6px
;
-webkit-box-shadow
:
inset
0
0
5px
rgba
(
0
,
0
,
0
,
0.2
);
background
:
rgba
(
0
,
0
,
0
,
0.2
);
}
.el-table__body-wrapper
::-webkit-scrollbar-track
{
-webkit-box-shadow
:
inset
0
0
5px
rgba
(
0
,
0
,
0
,
0.2
);
border-radius
:
0
;
background
:
rgba
(
0
,
0
,
0
,
0.1
);
}
.el-table
tbody
tr
:hover
>
td
{
background-color
:
#EEF9FF
!important
}
...
...
@@ -178,8 +193,13 @@
prop=
"CREATETIME"
label=
"创建时间"
align=
"center"
width=
"1
0
0"
width=
"1
8
0"
>
<template
slot-scope=
"scope"
>
<span>
{{
scope.row.CREATETIME | dataFormat
}}
</span>
</template>
</el-table-column>
</el-table>
<!-- 分页区域-->
...
...
src/main/webapp/view/PHJG/WFSJ/xmgl/widget.html
View file @
3943885
...
...
@@ -31,6 +31,21 @@
border
:
1px
solid
#cac8c8
;
min-height
:
750px
}
.el-table__body-wrapper
::-webkit-scrollbar
{
width
:
4px
;
height
:
6px
;
}
.el-table__body-wrapper
::-webkit-scrollbar-thumb
{
border-radius
:
6px
;
-webkit-box-shadow
:
inset
0
0
5px
rgba
(
0
,
0
,
0
,
0.2
);
background
:
rgba
(
0
,
0
,
0
,
0.2
);
}
.el-table__body-wrapper
::-webkit-scrollbar-track
{
-webkit-box-shadow
:
inset
0
0
5px
rgba
(
0
,
0
,
0
,
0.2
);
border-radius
:
0
;
background
:
rgba
(
0
,
0
,
0
,
0.1
);
}
.el-table
th
{
background
:
#F2F2F2
!important
;
}
...
...
Please
register
or
sign in
to post a comment