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
f17469e2
authored
2023-10-13 10:54:16 +0800
by
renchao@pashanhoo.com
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
style:流程批量操作
1 parent
350ec372
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
src/views/workflow/components/leftmenu/ordinaryMenu.vue
src/views/workflow/components/leftmenu/ordinaryMenu.vue
View file @
f17469e
<!--
* @Description: workFrame左侧菜单列表-普通
* @Autor: renchao
* @LastEditTime: 2023-10-1
2 17:14:26
* @LastEditTime: 2023-10-1
3 10:52:12
-->
<
template
>
<div
class=
"leftmenu"
:class=
"
{ 'animation-map-drawer': isShowdrawer }">
...
...
@@ -104,10 +104,11 @@
if
(
sessionStorage
.
getItem
(
'keyPath'
)
&&
sessionStorage
.
getItem
(
'keyPath'
)
>=
0
)
{
that
.
unitClick
(
sessionStorage
.
getItem
(
'keyPath'
)
-
0
)
}
else
{
that
.
unitClick
(
0
)
if
(
that
.
showBatch
)
{
//满足批量查封/批量抵押按钮出现 即先展示批量表单
that
.
batchUnitClick
();
}
else
{
that
.
unitClick
(
0
)
}
}
}
...
...
@@ -125,10 +126,11 @@
if
(
sessionStorage
.
getItem
(
'keyPath'
)
&&
sessionStorage
.
getItem
(
'keyPath'
)
>=
0
)
{
that
.
unitClick
(
sessionStorage
.
getItem
(
'keyPath'
)
-
0
)
}
else
{
that
.
unitClick
(
0
)
if
(
that
.
showBatch
)
{
//满足批量查封/批量抵押按钮出现 即先展示批量表单
that
.
batchUnitClick
();
}
else
{
that
.
unitClick
(
0
)
}
}
}
...
...
@@ -178,12 +180,10 @@
.
then
(()
=>
{
var
formdata
=
new
FormData
();
formdata
.
append
(
"bsmSldyList"
,
item
.
bsmSldy
.
split
(
","
));
// formdata.append("bsmSlsq", this.bsmSlsq);
deleteSlbdcdy
(
formdata
).
then
((
res
)
=>
{
if
(
res
.
code
==
200
)
{
this
.
$message
.
success
(
"删除成功"
);
this
.
loadBdcdylist
()
// this.$parent.updateDialog();
}
else
{
this
.
$message
.
error
(
res
.
message
);
}
...
...
Please
register
or
sign in
to post a comment