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
6ffaf546
authored
2023-01-16 10:47:48 +0800
by
xiaomiao
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
样式调整
2 parents
84a5761d
20c66331
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
37 additions
and
26 deletions
src/styles/element-ui.scss
src/views/jsbwcx/index.vue
src/styles/element-ui.scss
View file @
6ffaf54
...
...
@@ -12,7 +12,7 @@
//input
.el-input__inner
{
color
:
#FFFFFF
!
important
;
color
:
#FFFFFF
!
important
;
padding
:
0
7px
!
important
;
}
...
...
@@ -257,32 +257,42 @@ table td {
}
.
el-popper
[
x-placement
^="
bottom
"] .
popper__arrow
:
:
after
{
display
:
none
;
display
:
none
;
}
.el-popper
[
x-placement
^=
"bottom"
]
.popper__arrow
{
display
:
none
;
}
.el-date-picker
{
// 时间选择框样式
.el-date-picker
{
background-color
:
#031a46
;
.el-date-picker__header-label
{
color
:
#A6CFD6
;
}
.el-picker-panel__content
{
background-color
:
#074487
;
.disabled
{
background-color
:
#074487
;
.el-date-table
td
.disabled
div
{
background-color
:
#074487
;
}
}
.el-date-picker__header-label
{
color
:
#A6CFD6
;
}
.el-picker-panel__icon-btn
{
.el-picker-panel__icon-btn
{
color
:
#A6CFD6
;
}
.el-date-table
th
{
.el-date-table
th
{
color
:
#02D9FD
;
}
.el-date-table
td
span
{
.el-date-table
td
span
{
color
:
#A6CFD6
;
}
.el-date-table
td
.current
:not
(
.disabled
)
span
{
.el-date-table
td
.current
:not
(
.disabled
)
span
{
background-color
:
#074487
;
// border:1px solid saddlebrown;
box-shadow
:
inset
0
0
7px
#02D9FD
;
...
...
@@ -290,10 +300,8 @@ display: none;
}
}
.el-picker-panel__content
{
background-color
:
#074487
;
}
.el-menu--horizontal
.el-menu
.el-menu-item
,
...
...
@@ -307,6 +315,7 @@ display: none;
.el-menu--horizontal
.el-menu--popup
.el-menu-item
:not
(
.is-disabled
)
:hover
,
.el-select-dropdown__item
:hover
,
.el-select-dropdown__item.selected
,
.el-menu--horizontal
.el-menu--popup
.el-menu-item
:not
(
.is-disabled
)
:focus
{
background
:
#074487
;
border
:
1px
solid
#02D9FD
;
...
...
src/views/jsbwcx/index.vue
View file @
6ffaf54
...
...
@@ -87,6 +87,8 @@
:data=
"tableData.data"
>
</lb-table>
</div>
<!-- 编辑 -->
<dataDetails
ref=
"editLog"
/>
</div>
</
template
>
...
...
@@ -97,10 +99,16 @@ import data from "./data";
// 引入table混入方法
import
tableMixin
from
"@/mixins/tableMixin.js"
;
import
{
getReceiveDataReportPage
}
from
"@/api/sbbwcx.js"
;
// 引入详情弹框
import
dataDetails
from
"@/components/dataDetails/edit-dialog"
;
export
default
{
name
:
"jsbwcx"
,
mixins
:
[
tableMixin
],
data
()
{
// 注册组件
components
:
{
dataDetails
,
},
data
()
{
return
{
// 开始结束日期限制
pickerOptionsStart
:
{
...
...
@@ -194,7 +202,7 @@ export default {
},
methods
:
{
// 初始化数据
queryClick
()
{
queryClick
()
{
getReceiveDataReportPage
({
...
this
.
form
,
...
this
.
pageData
}).
then
((
res
)
=>
{
if
(
res
.
code
===
200
)
{
let
{
total
,
records
}
=
res
.
result
;
...
...
@@ -204,23 +212,17 @@ export default {
});
},
// 重置
resetForm
()
{
resetForm
()
{
this
.
$refs
.
ruleForm
.
resetFields
();
},
featchData
()
{
featchData
()
{
this
.
queryClick
();
},
// 详情
handleEdit
()
{
this
.
$popupDialog
(
"业务报文"
,
"components/JsonEditor/index"
,
{},
"50%"
,
"320px"
);
},
},
handleEdit
(
row
)
{
this
.
$refs
.
editLog
.
isShow
(
row
);
}
}
};
</
script
>
<
style
scoped
lang=
"scss"
>
...
...
Please
register
or
sign in
to post a comment