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
ded5ea2f
authored
2022-12-15 17:18:14 +0800
by
蔡俊立
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
代码完善
1 parent
0cfe2c54
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
7 deletions
src/views/workflow/components/commonOpinion.vue
src/views/workflow/components/zsyl.vue
src/views/workflow/mixin/index.js
src/views/workflow/components/commonOpinion.vue
View file @
ded5ea2
...
...
@@ -79,10 +79,10 @@ export default {
}
},
mounted
()
{
this
.
query
List
()
this
.
query
Click
()
},
methods
:
{
query
List
(){
query
Click
(){
getUserCommonOpinion
(
this
.
pageData
).
then
(
res
=>
{
let
{
total
,
records
}
=
res
.
result
this
.
tableData
.
total
=
total
;
...
...
@@ -131,7 +131,7 @@ export default {
delUserCommonOpinion
({
bsmOpinion
:
item
.
bsmOpinion
}).
then
(
res
=>
{
if
(
res
.
code
==
200
){
this
.
$message
.
success
(
"删除成功"
)
this
.
query
List
()
this
.
query
Click
()
}
else
{
this
.
$message
.
error
(
res
.
message
)
}
...
...
src/views/workflow/components/zsyl.vue
View file @
ded5ea2
<
template
>
<div
class=
"from-clues"
v-loading=
"loading"
element-loading-text=
"拼命加载中"
element-loading-spinner=
"el-icon-loading"
element-loading-background=
"rgba(0, 0, 0, 0.8)"
>
element-loading-background=
"rgba(0, 0, 0, 0.8)"
style=
"height:720px"
>
<!-- 表单部分 -->
<el-tabs
v-model=
"activeName"
@
tab-click=
"handleClick"
v-if=
"headTabBdcqz.length > 1"
>
<el-tab-pane
:label=
"item.qlr + '(' + item.bdcqzh + ')'"
:name=
"item.bsmBdcqz"
v-for=
"(item, index) in headTabBdcqz"
:key=
"index"
></el-tab-pane>
</el-tabs>
<div
class=
"no-data"
>
暂无数据
</div>
<div
class=
"no-data"
v-if=
"headTabBdcqz.length == 0"
>
暂无数据
</div>
<img
:src=
"previewImage"
class=
"imgClass"
>
</div>
</
template
>
...
...
@@ -76,6 +76,8 @@ export default {
this
.
bdcqz
=
res
.
result
[
0
]
this
.
headTabBdcqz
=
res
.
result
this
.
getBdcqzPreview
();
}
else
{
this
.
loading
=
false
}
}
...
...
src/views/workflow/mixin/index.js
View file @
ded5ea2
...
...
@@ -275,8 +275,8 @@ export default {
let
that
=
this
const
h
=
this
.
$createElement
;
this
.
$msgbox
({
title
:
"您确定转出吗?
2
"
,
message
:
"此环节为流程
结束
环节,转出后流程将结束"
,
title
:
"您确定转出吗?"
,
message
:
"此环节为流程
最后
环节,转出后流程将结束"
,
showCancelButton
:
true
,
beforeClose
:
(
action
,
instance
,
done
)
=>
{
console
.
log
(
action
,
'actionaction'
);
...
...
Please
register
or
sign in
to post a comment