b37ae4bd by renchao@pashanhoo.com

style:流程框架

1 parent 59e236e4
1 <!-- 1 <!--
2 * @Description: workFrame左侧菜单列表-普通 2 * @Description: workFrame左侧菜单列表-普通
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-09-20 15:46:25 4 * @LastEditTime: 2023-09-21 10:46:05
5 --> 5 -->
6 <template> 6 <template>
7 <div class="leftmenu" :class="{ 'animation-map-drawer': isShowdrawer }"> 7 <div class="leftmenu" :class="{ 'animation-map-drawer': isShowdrawer }">
...@@ -90,9 +90,6 @@ ...@@ -90,9 +90,6 @@
90 let that = this 90 let that = this
91 var formdata = new FormData(); 91 var formdata = new FormData();
92 formdata.append("bsmSlsq", this.bsmSlsq); 92 formdata.append("bsmSlsq", this.bsmSlsq);
93 if (this.$route.query.bestepid) {
94 formdata.append("bestepid", this.bestepid);
95 }
96 if (this.$route.query.bsmBusiness) { 93 if (this.$route.query.bsmBusiness) {
97 formdata.append("bsmBusiness", this.$route.query.bsmBusiness); 94 formdata.append("bsmBusiness", this.$route.query.bsmBusiness);
98 } 95 }
......
1 <!-- 1 <!--
2 * @Description: workFrame左侧菜单列表-分割 2 * @Description: workFrame左侧菜单列表-分割
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-09-20 15:33:05 4 * @LastEditTime: 2023-09-21 10:46: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 }">
...@@ -103,8 +103,6 @@ ...@@ -103,8 +103,6 @@
103 var formdata = new FormData(); 103 var formdata = new FormData();
104 // 受理申请标识码 104 // 受理申请标识码
105 formdata.append("bsmSlsq", this.paramData.bsmSlsq); 105 formdata.append("bsmSlsq", this.paramData.bsmSlsq);
106 // 当前流程所在环节
107 formdata.append("bestepid", this.paramData.bestepid);
108 formdata.append("bsmBusiness", this.paramData.bsmBusiness); 106 formdata.append("bsmBusiness", this.paramData.bsmBusiness);
109 if (this.$route.query.type == 'jdcx') { 107 if (this.$route.query.type == 'jdcx') {
110 jdcxLeftMenu(formdata).then((res) => { 108 jdcxLeftMenu(formdata).then((res) => {
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-09-20 17:30:41 4 * @LastEditTime: 2023-09-21 10:46:55
5 --> 5 -->
6 <template> 6 <template>
7 <div class="container"> 7 <div class="container">
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
18 <ul> 18 <ul>
19 <li @click="operation(item)" v-for="(item, index) in rightButtonList" :key="index"> 19 <li @click="operation(item)" v-for="(item, index) in rightButtonList" :key="index">
20 <svg-icon class="icon" :icon-class="item.icon" /> 20 <svg-icon class="icon" :icon-class="item.icon" />
21 <span class="iconName">{{ item.name }} {{ item.value }}</span> 21 <span class="iconName">{{ item.name }}</span>
22 </li> 22 </li>
23 </ul> 23 </ul>
24 <NoticeBar class="NoticeBar" :noticeList="noticeList" v-if="noticeList.length > 0" /> 24 <NoticeBar class="NoticeBar" :noticeList="noticeList" v-if="noticeList.length > 0" />
......