Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
bdc
/
bdcjg-web
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
eb96e55d
authored
2023-02-27 09:28:28 +0800
by
xiaomiao
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge branch 'master' of
http://yun.pashanhoo.com:9090/bdc/bdcjg-web
2 parents
b2052ac3
6204380e
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
45 additions
and
4 deletions
src/styles/element-ui.scss
src/views/sthj/dbrzcx/data/index.js
src/views/sthj/dbrzcx/index.vue
src/views/system/menus/data/index.js
src/styles/element-ui.scss
View file @
eb96e55
...
...
@@ -208,10 +208,27 @@ table td {
box-shadow
:
inset
0px
0px
20px
0px
#03DBFF
!
important
;
}
.el-table__body
tr
:hover
>
td
{
.el-table__body
tr
:hover
>
td
,
.el-table__body
tr
.hover-row
>
td
.el-table__cell
{
background
:
none
!
important
;
}
// table 固定列样式
tr
:hover
{
background
:
#063160
!
important
;
box-shadow
:
inset
0px
0px
20px
0px
#03DBFF
!
important
;
}
.el-table__fixed-right-patch
{
background-color
:
#073781
;
}
.el-table__fixed-right
{
box-shadow
:
inset
0px
0px
20px
0px
#5BE7FF
!
important
;
border-left
:
3px
solid
#142e54
;
background-color
:
#1f2c3a
;
}
// 表格样式
.el-table
th
{
height
:
48px
!
important
;
...
...
src/views/sthj/dbrzcx/data/index.js
View file @
eb96e55
...
...
@@ -183,6 +183,26 @@ class data {
<
/div
>
)
},
},
{
label
:
"操作"
,
width
:
"80"
,
fixed
:
"right"
,
render
:
(
h
,
scope
)
=>
{
return
(
<
div
>
<
el
-
button
size
=
"mini"
type
=
"primary"
onClick
=
{()
=>
{
this
.
handleEdit
(
scope
.
row
);
}}
>
编辑
<
/el-button
>
<
/div
>
);
},
}
]
}
...
...
src/views/sthj/dbrzcx/index.vue
View file @
eb96e55
...
...
@@ -24,9 +24,8 @@
</el-col>
<el-col
:span=
"6"
>
<el-form-item
label=
"结束日期"
prop=
"endTime"
>
<el-date-picker
type=
"date"
class=
"width100"
placeholder=
"结束日期"
:picker-options=
"pickerOptionsEnd"
clearable
v-model=
"form.endTime"
value-format=
"yyyy-MM-dd HH:mm:ss"
@
change=
"endTimeChange"
></el-date-picker>
<el-date-picker
type=
"date"
class=
"width100"
placeholder=
"结束日期"
:picker-options=
"pickerOptionsEnd"
clearable
v-model=
"form.endTime"
value-format=
"yyyy-MM-dd HH:mm:ss"
@
change=
"endTimeChange"
></el-date-picker>
</el-form-item>
</el-col>
<!-- 操作按钮 -->
...
...
@@ -135,6 +134,10 @@ export default {
this
.
$refs
.
ruleForm
.
resetFields
();
this
.
form
.
currentPage
=
1
this
.
featchData
();
},
// 编辑
handleEdit
(
row
)
{
console
.
log
(
row
);
}
}
}
...
...
src/views/system/menus/data/index.js
View file @
eb96e55
...
...
@@ -8,6 +8,7 @@ class data extends filter {
{
prop
:
"name"
,
label
:
"菜单名称"
,
align
:
'left'
,
width
:
300
},
{
...
...
Please
register
or
sign in
to post a comment