style:不动产业务
Showing
2 changed files
with
5 additions
and
4 deletions
1 | <!-- | 1 | <!-- |
2 | * @Description: workFrame左侧菜单列表-分割 | 2 | * @Description: workFrame左侧菜单列表-分割 |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-05-24 14:58:51 | 4 | * @LastEditTime: 2023-05-24 15:48:34 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="leftmenu" :class="{ 'animation-map-drawer': isShowdrawer }"> | 7 | <div class="leftmenu" :class="{ 'animation-map-drawer': isShowdrawer }"> |
... | @@ -120,7 +120,7 @@ | ... | @@ -120,7 +120,7 @@ |
120 | judgeBatchShow () { | 120 | judgeBatchShow () { |
121 | this.showBatch = false; | 121 | this.showBatch = false; |
122 | if (this.afterUnitData.length > 1) { | 122 | if (this.afterUnitData.length > 1) { |
123 | let qllx = this.$route.query.sqywbm.substring(0, 3); | 123 | let qllx = this.$route.query?.sqywbm?.substring(0, 3); |
124 | switch (qllx) { | 124 | switch (qllx) { |
125 | case 'B39': | 125 | case 'B39': |
126 | this.showBatch = true; | 126 | this.showBatch = true; | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-05-24 15:30:16 | 4 | * @LastEditTime: 2023-05-24 15:50:38 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="container"> | 7 | <div class="container"> |
... | @@ -37,7 +37,7 @@ | ... | @@ -37,7 +37,7 @@ |
37 | <!-- 表单内容区域 --> | 37 | <!-- 表单内容区域 --> |
38 | <div class="rightContainer"> | 38 | <div class="rightContainer"> |
39 | <el-tabs v-model="tabName" :before-leave="beforeLeave"> | 39 | <el-tabs v-model="tabName" :before-leave="beforeLeave"> |
40 | <el-tab-pane :label="item.name" :name="item.value" v-for="(item, index) in tabList" :key="index"> | 40 | <el-tab-pane :label="item.name" :name="item.value" v-for="item in tabList" :key="item.value"> |
41 | </el-tab-pane> | 41 | </el-tab-pane> |
42 | </el-tabs> | 42 | </el-tabs> |
43 | <component :key="fresh" :is="componentTag" v-bind="currentSelectProps" /> | 43 | <component :key="fresh" :is="componentTag" v-bind="currentSelectProps" /> |
... | @@ -54,6 +54,7 @@ | ... | @@ -54,6 +54,7 @@ |
54 | import WorkFlow from "./mixin/index" | 54 | import WorkFlow from "./mixin/index" |
55 | import publicFlow from "./mixin/public.js" | 55 | import publicFlow from "./mixin/public.js" |
56 | import { getStepFormInfo } from "@/api/fqsq.js" | 56 | import { getStepFormInfo } from "@/api/fqsq.js" |
57 | import { getForm } from "./flowform" | ||
57 | import NoticeBar from "@/components/NoticeBar/index"; | 58 | import NoticeBar from "@/components/NoticeBar/index"; |
58 | // 引入左侧菜单 | 59 | // 引入左侧菜单 |
59 | import ordinaryMenu from "./components/leftmenu/ordinaryMenu.vue" | 60 | import ordinaryMenu from "./components/leftmenu/ordinaryMenu.vue" | ... | ... |
-
Please register or sign in to post a comment