Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
bdc
/
bdcdj-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
2d7d3d57
authored
2023-08-18 17:56:07 +0800
by
xiaomiao
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
--no commit message
1 parent
5a8b29e4
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
1 deletions
src/views/workflow/components/spyj.vue
src/views/workflow/components/spyj.vue
View file @
2d7d3d5
...
...
@@ -189,11 +189,16 @@ export default {
* @author: renchao
*/
onSubmit
()
{
this
.
shows
=
true
;
this
.
tableData
.
forEach
((
item
,
index
)
=>
{
item
[
"bsmBusiness"
]
=
this
.
propsParam
.
bsmBusiness
;
item
[
"czjg"
]
=
"1"
;
});
var
index
=
this
.
tableData
.
findIndex
(
(
item
)
=>
item
.
shyj
===
null
||
item
.
shyj
===
""
);
if
(
index
==-
1
){
this
.
shows
=
true
;
saveSpyjBySlsq
(
this
.
tableData
).
then
((
res
)
=>
{
if
(
res
.
code
===
200
)
{
this
.
$message
.
success
(
"保存成功"
);
...
...
@@ -203,6 +208,10 @@ export default {
this
.
$message
.
error
(
res
.
message
);
}
});
}
else
{
this
.
$message
.
error
(
"意见不能为空"
);
}
},
//打开常用意见列表弹窗
/**
...
...
Please
register
or
sign in
to post a comment