Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
mes-ui
Project
Project
Details
Activity
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
ximai
mes-ui
Commits
d5d61e76
Commit
d5d61e76
authored
Sep 29, 2025
by
沈翠玲
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
生产排产和生产报工导出
parent
36e05896
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
11 deletions
+20
-11
index.vue
src/views/mes/pro/feedback/index.vue
+3
-1
index.vue
src/views/mes/pro/scheduleList/index.vue
+15
-0
orderList.vue
src/views/mes/pro/scheduleList/orderList.vue
+2
-10
No files found.
src/views/mes/pro/feedback/index.vue
View file @
d5d61e76
...
...
@@ -601,7 +601,9 @@ export default {
/** 导出按钮操作 */
handleExport
()
{
this
.
download1
(
'mes/pro/feedback/list/export'
,
{
...
this
.
queryParams
...
this
.
queryParams
,
pageNum
:
null
,
pageSize
:
null
}
,
`feedback_${new Date().getTime()
}
.xlsx`
)
}
,
//选择生产工单
...
...
src/views/mes/pro/scheduleList/index.vue
View file @
d5d61e76
...
...
@@ -222,6 +222,10 @@
@
click=
"handlePrint"
>
{{
$t
(
'打印'
)
}}
</el-button>
</el-col>
<el-col
:span=
"1.5"
>
<el-button
size=
"mini"
@
click=
"handleExport"
type=
"primary"
plain
>
{{
$t
(
'导出'
)
}}
</el-button>
</el-col>
<right-toolbar
:showSearch
.
sync=
"showSearch"
@
queryTable=
"getList"
></right-toolbar>
</el-row>
...
...
@@ -682,6 +686,17 @@ export default {
this
.
hanldeGetdefaultWorkCenterList
()
},
methods
:
{
handleExport
(){
this
.
download1
(
'mes/pro/taskWorkunit/list/export'
,
{
...
this
.
queryParams
,
pageSize
:
null
,
pageNum
:
null
},
`taskWorkunit_
${
new
Date
().
getTime
()}
.xlsx`
);
},
handleCancel
()
{
const
workorderCode
=
this
.
selections
[
0
].
workorderCode
this
.
$modal
...
...
src/views/mes/pro/scheduleList/orderList.vue
View file @
d5d61e76
...
...
@@ -55,7 +55,7 @@
<el-form-item>
<el-button
type=
"primary"
icon=
"el-icon-search"
size=
"mini"
@
click=
"handleQuery"
>
{{
$t
(
'common.search'
)
}}
</el-button>
<el-button
icon=
"el-icon-refresh"
size=
"mini"
@
click=
"resetQuery"
>
{{
$t
(
'common.reset'
)
}}
</el-button>
<el-button
size=
"mini"
@
click=
"handleExport"
>
{{
$t
(
'导出'
)
}}
</el-button>
</el-form-item>
</el-form>
...
...
@@ -169,15 +169,7 @@ export default {
this
.
getList
();
},
methods
:
{
handleExport
(){
this
.
download1
(
'mes/pro/taskWorkunit/list/export'
,
{
...
this
.
queryParams
,
},
`taskWorkunit_
${
new
Date
().
getTime
()}
.xlsx`
);
},
/** 查询物料编码列表 */
getList
()
{
this
.
loading
=
true
;
...
...
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