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
8b279153
authored
2023-09-21 14:44:53 +0800
by
renchao@pashanhoo.com
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
style:左侧单元列表
1 parent
478efee1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
4 deletions
src/views/workflow/components/leftmenu/ordinaryMenu.vue
src/views/workflow/components/leftmenu/segmentMenu.vue
src/views/workflow/components/leftmenu/ordinaryMenu.vue
View file @
8b27915
<!--
* @Description: workFrame左侧菜单列表-普通
* @Autor: renchao
* @LastEditTime: 2023-09-21 14:
38:29
* @LastEditTime: 2023-09-21 14:
40:30
-->
<
template
>
<div
class=
"leftmenu"
:class=
"
{ 'animation-map-drawer': isShowdrawer }">
...
...
@@ -50,6 +50,7 @@
//受理申请标识码
bsmSlsq
:
this
.
$route
.
query
.
bsmSlsq
,
bestepid
:
this
.
$route
.
query
.
bestepid
,
bsmBusiness
:
this
.
$route
.
query
.
bsmBusiness
,
// 默认选中
activeIndex
:
'0'
,
// 折叠
...
...
@@ -89,8 +90,8 @@
let
that
=
this
var
formdata
=
new
FormData
();
formdata
.
append
(
"bsmSlsq"
,
this
.
$route
.
query
.
bsmSlsq
);
formdata
.
append
(
"bsmSlsq"
,
this
.
$route
.
query
.
bsmSlsq
);
formdata
.
append
(
"bestepid"
,
this
.
bestepid
?
this
.
bestepid
:
''
);
formdata
.
append
(
"bsmBusiness"
,
this
.
bsmBusiness
?
this
.
bsmBusiness
:
''
);
if
(
this
.
type
)
{
jdcxLeftMenu
(
formdata
).
then
((
res
)
=>
{
if
(
res
.
code
===
200
&&
res
.
result
)
{
...
...
src/views/workflow/components/leftmenu/segmentMenu.vue
View file @
8b27915
<!--
* @Description: workFrame左侧菜单列表-分割
* @Autor: renchao
* @LastEditTime: 2023-09-21 14:
20:52
* @LastEditTime: 2023-09-21 14:
44:34
-->
<
template
>
<div
class=
"leftmenu"
:class=
"
{ 'animation-map-drawer': isShowdrawer }">
...
...
@@ -61,6 +61,9 @@
export
default
{
data
()
{
return
{
bsmSlsq
:
this
.
$route
.
query
.
bsmSlsq
,
bsmBusiness
:
this
.
$route
.
query
.
bsmBusiness
,
bestepid
:
this
.
$route
.
query
.
bestepid
,
// 变更前单元默认选中
activeIndex
:
'0'
,
// 变更后单元默认选中
...
...
@@ -103,7 +106,8 @@
var
formdata
=
new
FormData
();
// 受理申请标识码
formdata
.
append
(
"bsmSlsq"
,
this
.
$route
.
query
.
bsmSlsq
);
formdata
.
append
(
"bsmBusiness"
,
this
.
$route
.
query
.
bsmBusiness
);
formdata
.
append
(
"bsmBusiness"
,
this
.
bsmBusiness
?
this
.
bsmBusiness
:
''
);
formdata
.
append
(
"bestepid"
,
this
.
bestepid
?
this
.
bestepid
:
''
);
if
(
this
.
type
)
{
jdcxLeftMenu
(
formdata
).
then
((
res
)
=>
{
if
(
res
.
code
===
200
&&
res
.
result
)
{
...
...
Please
register
or
sign in
to post a comment