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
081031ab
authored
2023-05-24 15:51:21 +0800
by
renchao@pashanhoo.com
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
style:不动产业务
1 parent
306e13db
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
4 deletions
src/views/workflow/components/leftmenu/segmentMenu.vue
src/views/workflow/workFrameView.vue
src/views/workflow/components/leftmenu/segmentMenu.vue
View file @
081031a
<!--
* @Description: workFrame左侧菜单列表-分割
* @Autor: renchao
* @LastEditTime: 2023-05-24 1
4:58:51
* @LastEditTime: 2023-05-24 1
5:48:34
-->
<
template
>
<div
class=
"leftmenu"
:class=
"
{ 'animation-map-drawer': isShowdrawer }">
...
...
@@ -120,7 +120,7 @@
judgeBatchShow
()
{
this
.
showBatch
=
false
;
if
(
this
.
afterUnitData
.
length
>
1
)
{
let
qllx
=
this
.
$route
.
query
.
sqywbm
.
substring
(
0
,
3
);
let
qllx
=
this
.
$route
.
query
?.
sqywbm
?
.
substring
(
0
,
3
);
switch
(
qllx
)
{
case
'B39'
:
this
.
showBatch
=
true
;
...
...
src/views/workflow/workFrameView.vue
View file @
081031a
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-05-24 15:
30:16
* @LastEditTime: 2023-05-24 15:
50:38
-->
<
template
>
<div
class=
"container"
>
...
...
@@ -37,7 +37,7 @@
<!-- 表单内容区域 -->
<div
class=
"rightContainer"
>
<el-tabs
v-model=
"tabName"
:before-leave=
"beforeLeave"
>
<el-tab-pane
:label=
"item.name"
:name=
"item.value"
v-for=
"
(item, index) in tabList"
:key=
"index
"
>
<el-tab-pane
:label=
"item.name"
:name=
"item.value"
v-for=
"
item in tabList"
:key=
"item.value
"
>
</el-tab-pane>
</el-tabs>
<component
:key=
"fresh"
:is=
"componentTag"
v-bind=
"currentSelectProps"
/>
...
...
@@ -54,6 +54,7 @@
import
WorkFlow
from
"./mixin/index"
import
publicFlow
from
"./mixin/public.js"
import
{
getStepFormInfo
}
from
"@/api/fqsq.js"
import
{
getForm
}
from
"./flowform"
import
NoticeBar
from
"@/components/NoticeBar/index"
;
// 引入左侧菜单
import
ordinaryMenu
from
"./components/leftmenu/ordinaryMenu.vue"
...
...
Please
register
or
sign in
to post a comment