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
fa371e96
authored
2023-07-21 13:45:15 +0800
by
renchao@pashanhoo.com
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
style:转出模块信息提示的完善
1 parent
a7f2362e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
5 deletions
src/views/workflow/components/dialog/dblist.vue
src/views/workflow/mixin/index.js
src/views/workflow/components/dialog/dblist.vue
View file @
fa371e9
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-07-
12 16:33:18
* @LastEditTime: 2023-07-
21 13:43:52
-->
<
template
>
<div
class=
'dblistDialog'
>
...
...
@@ -11,7 +11,6 @@
height=
"200"
>
<el-table-column
prop=
"ywh"
width=
"110"
label=
"业务号"
>
</el-table-column>
<el-table-column
...
...
src/views/workflow/mixin/index.js
View file @
fa371e9
/*
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-07-21 1
0:04:05
* @LastEditTime: 2023-07-21 1
3:43:14
*/
import
{
getPrintTemplateByCode
}
from
"@/api/print"
;
import
{
uploadUndo
}
from
"@/api/clxx"
;
...
...
@@ -308,8 +308,14 @@ export default {
}
else
{
instance
.
confirmButtonLoading
=
false
;
instance
.
confirmButtonText
=
"确定"
;
this
.
$message
.
error
(
res
.
message
);
// ywPopupDialog("转出错误明细", "workflow/components/dialog/dblist", { result: res.result }, '30%', true)
let
msgArr
=
res
.
message
.
split
(
';'
),
listMsg
=
[]
msgArr
.
forEach
(
item
=>
{
let
parts
=
item
.
split
(
':'
)
listMsg
.
push
({
ywh
:
parts
[
0
],
msg
:
parts
[
1
]
})
})
this
.
$msgbox
.
close
()
ywPopupDialog
(
"转出错误明细"
,
"workflow/components/dialog/dblist"
,
{
result
:
listMsg
},
'33%'
,
true
)
}
});
}
else
{
...
...
Please
register
or
sign in
to post a comment