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
5846b42b
authored
2022-12-28 10:06:26 +0800
by
xiaomiao
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge branch 'master' of
http://yun.pashanhoo.com:9090/bdc/bdcdj-web
2 parents
98e4a74d
2e09ae84
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
9 deletions
src/views/workflow/components/qlrCommonTable.vue
src/views/workflow/components/th.vue
src/views/workflow/components/qlrCommonTable.vue
View file @
5846b42
...
...
@@ -166,8 +166,12 @@ export default {
// 新增
addClick
()
{
this
.
dialog
=
true
this
.
isaddupdate
=
true
if
(
this
.
gyfs
==
'0'
&&
this
.
tableDataList
.
length
>
0
){
this
.
$message
.
warning
(
"当前共有方式为单独所有,无法添加多个权利人"
)
}
else
{
this
.
dialog
=
true
this
.
isaddupdate
=
true
}
},
// 删除
...
...
src/views/workflow/components/th.vue
View file @
5846b42
...
...
@@ -34,10 +34,8 @@
></el-input>
</el-form-item>
<el-form-item>
<!--
<el-button
style=
"float:right"
>
取消
</el-button>
-->
<el-button
type=
"primary"
@
click=
"onSubmit"
style=
"float: right"
>
退回
</el-button
>
<el-button
style=
"float:right"
@
click=
"cancelBack"
>
取消
</el-button>
<el-button
type=
"primary"
@
click=
"onSubmit"
style=
"float:right"
>
退回
</el-button>
</el-form-item>
</el-form>
</div>
...
...
@@ -45,7 +43,10 @@
</
template
>
<
script
>
import
{
getTaskBackNode
,
sendBackTask
}
from
"@/api/fqsq.js"
;
import
{
getTaskBackNode
,
sendBackTask
}
from
"@/api/fqsq.js"
import
{
popupCacel
}
from
"@/utils/popup.js"
;
export
default
{
props
:
{
formData
:
{
...
...
@@ -100,8 +101,12 @@ export default {
}
});
},
},
};
cancelBack
(){
popupCacel
();
}
}
}
</
script
>
<
style
scoped
lang=
"scss"
>
@import
"~@/styles/mixin.scss"
;
...
...
Please
register
or
sign in
to post a comment