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
820e4384
authored
2023-07-25 14:14:36 +0800
by
renchao@pashanhoo.com
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
style:批量操作
1 parent
0e4babcb
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
5 deletions
src/views/workflow/components/dialog/clxxAddDialog.vue
src/views/workflow/components/leftmenu/ordinaryMenu.vue
src/views/workflow/workFrame.vue
src/views/workflow/components/dialog/clxxAddDialog.vue
View file @
820e438
...
...
@@ -76,7 +76,6 @@
* @author: renchao
*/
handleSubmit
()
{
debugger
this
.
$refs
[
'ruleForm'
].
validate
((
valid
)
=>
{
if
(
valid
)
{
this
.
$parent
.
addSave
(
this
.
ruleForm
);
...
...
src/views/workflow/components/leftmenu/ordinaryMenu.vue
View file @
820e438
<!--
* @Description: workFrame左侧菜单列表-普通
* @Autor: renchao
* @LastEditTime: 2023-07-2
1 10:15:11
* @LastEditTime: 2023-07-2
5 14:14:04
-->
<
template
>
<div
class=
"leftmenu"
:class=
"
{ 'animation-map-drawer': isShowdrawer }">
...
...
@@ -177,9 +177,8 @@
* @author: renchao
*/
batchUnitClick
()
{
debugger
this
.
currentSelectProps
.
batchOperation
=
true
;
//
this.activeIndex = "-1";
this
.
activeIndex
=
"-1"
;
this
.
$parent
.
stepForm
(
0
);
},
...
...
@@ -201,7 +200,7 @@
* @author: renchao
*/
unitClick
(
index
)
{
if
(
this
.
unitData
.
length
==
0
)
return
if
(
this
.
unitData
.
length
==
0
)
return
this
.
currentSelectProps
=
this
.
unitData
[
index
];
this
.
currentSelectProps
.
batchOperation
=
false
;
this
.
activeIndex
=
index
.
toString
();
...
...
src/views/workflow/workFrame.vue
View file @
820e438
...
...
@@ -158,6 +158,7 @@
this
.
fresh
++
;
//获取单元对应的所有表单信息
this
.
tabList
=
res
.
result
;
console
.
log
(
res
.
result
,
'res.result'
);
//默认加载第一个表单信息
let
arr
=
res
.
result
.
filter
(
item
=>
item
.
defaultForm
)
if
(
arr
.
length
>
0
)
{
...
...
Please
register
or
sign in
to post a comment