Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
NLT-e-cigarette
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
张伯涛
NLT-e-cigarette
Commits
4f8be43f
Commit
4f8be43f
authored
Jun 11, 2022
by
秦嘉
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
0e790d42
9e2fbebf
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
244 additions
and
42 deletions
+244
-42
index.vue
src/components/Pagination/index.vue
+4
-0
header.vue
src/layout/components/header.vue
+2
-2
element-ui.scss
src/styles/element-ui.scss
+3
-2
ModelDetails.vue
src/views/productionInfo/ModelDetails.vue
+233
-37
badDefinition.vue
src/views/productionInfo/badDefinition.vue
+2
-1
No files found.
src/components/Pagination/index.vue
View file @
4f8be43f
...
...
@@ -103,6 +103,10 @@ export default {
<
style
lang=
"scss"
>
.pagination-container
{
.el-pager
li
{
font-weight
:
initial
!
important
;
&
:hover
{
color
:
#D31B20
!
important
;
}
&
.active
{
color
:
#D31B20
!
important
;
border
:
1px
solid
#D31B20
!
important
;
...
...
src/layout/components/header.vue
View file @
4f8be43f
...
...
@@ -219,8 +219,8 @@ export default {
color
:
white
;
cursor
:
pointer
;
position
:
absolute
;
right
:
-
2
0px
;
top
:
25
px
;
right
:
-
1
0px
;
top
:
17
px
;
font-size
:
12px
;
}
}
...
...
src/styles/element-ui.scss
View file @
4f8be43f
...
...
@@ -320,8 +320,9 @@ body .el-table th.gutter{
.el-table
tr
td
:last-child
{
border-right
:
0
!
important
;
}
.el-table
tr
:hover
>
td
{
background-color
:
#f3f3f3
!
important
}
// 折叠面板 样式修改
.el-collapse
{
.el-collapse-item__header
{
...
...
src/views/productionInfo/ModelDetails.vue
View file @
4f8be43f
This diff is collapsed.
Click to expand it.
src/views/productionInfo/badDefinition.vue
View file @
4f8be43f
...
...
@@ -568,6 +568,7 @@ export default {
},
/** 导出按钮操作 */
handleExport
()
{
const
nowDate
=
this
.
dateFor
(
new
Date
().
getTime
())
const
queryParams
=
{
rejectCode
:
this
.
queryParams
.
rejectCode
,
rejectDescription
:
this
.
queryParams
.
rejectDescription
...
...
@@ -583,7 +584,7 @@ export default {
const
downloadElement
=
document
.
createElement
(
'a'
)
const
href
=
window
.
URL
.
createObjectURL
(
blob
)
// 创建下载的链接
downloadElement
.
href
=
href
downloadElement
.
download
=
'不良定义信息'
+
'.xls'
// 下载后文件名
downloadElement
.
download
=
'不良定义信息'
+
nowDate
+
'.xls'
// 下载后文件名
document
.
body
.
appendChild
(
downloadElement
)
downloadElement
.
click
()
// 点击下载
document
.
body
.
removeChild
(
downloadElement
)
// 下载完成移除元素
...
...
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