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
mes
mes-ui
Commits
c1475cb9
Commit
c1475cb9
authored
Jan 24, 2024
by
jzc
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增工单功能
parent
9f3bc734
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
2 deletions
+11
-2
indexApply.vue
src/views/mes/pro/workorder/indexApply.vue
+11
-2
No files found.
src/views/mes/pro/workorder/indexApply.vue
View file @
c1475cb9
...
...
@@ -130,8 +130,8 @@
plain
icon=
"el-icon-plus"
size=
"mini"
@
click=
"handleD
elete
"
v-hasPermi=
"['mes:
md:brand:remove
']"
@
click=
"handleD
ofinish
"
v-hasPermi=
"['mes:
pro:workorder:dofinish
']"
>
生成任务单
</el-button>
</el-col>
<right-toolbar
:showSearch
.
sync=
"showSearch"
@
queryTable=
"getList"
></right-toolbar>
...
...
@@ -718,6 +718,15 @@ export default {
this
.
getList
();
this
.
$modal
.
msgSuccess
(
"删除成功"
);
}
).
catch
(()
=>
{
}
);
}
,
/** 完成任务单操作 */
handleDofinish
(
row
)
{
this
.
$modal
.
confirm
(
'是否完成工单编号"'
+
row
.
workorderCode
+
'"的数据项?'
).
then
(
function
()
{
return
dofinish
(
row
.
workorderId
);
}
).
then
(()
=>
{
this
.
getList
();
this
.
$modal
.
msgSuccess
(
"生成成功"
);
}
).
catch
(()
=>
{
}
);
}
,
handleSelectProduct
(){
this
.
$refs
.
itemSelect
.
showFlag
=
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