style:流程批量操作
Showing
1 changed file
with
5 additions
and
5 deletions
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: workFrame左侧菜单列表-普通 | 2 | * @Description: workFrame左侧菜单列表-普通 |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-10-12 17:14:26 | 4 | * @LastEditTime: 2023-10-13 10:52:12 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <div class="leftmenu" :class="{ 'animation-map-drawer': isShowdrawer }"> | 7 | <div class="leftmenu" :class="{ 'animation-map-drawer': isShowdrawer }"> |
| ... | @@ -104,10 +104,11 @@ | ... | @@ -104,10 +104,11 @@ |
| 104 | if (sessionStorage.getItem('keyPath') && sessionStorage.getItem('keyPath') >= 0) { | 104 | if (sessionStorage.getItem('keyPath') && sessionStorage.getItem('keyPath') >= 0) { |
| 105 | that.unitClick(sessionStorage.getItem('keyPath') - 0) | 105 | that.unitClick(sessionStorage.getItem('keyPath') - 0) |
| 106 | } else { | 106 | } else { |
| 107 | that.unitClick(0) | ||
| 108 | if (that.showBatch) { | 107 | if (that.showBatch) { |
| 109 | //满足批量查封/批量抵押按钮出现 即先展示批量表单 | 108 | //满足批量查封/批量抵押按钮出现 即先展示批量表单 |
| 110 | that.batchUnitClick(); | 109 | that.batchUnitClick(); |
| 110 | } else { | ||
| 111 | that.unitClick(0) | ||
| 111 | } | 112 | } |
| 112 | } | 113 | } |
| 113 | } | 114 | } |
| ... | @@ -125,10 +126,11 @@ | ... | @@ -125,10 +126,11 @@ |
| 125 | if (sessionStorage.getItem('keyPath') && sessionStorage.getItem('keyPath') >= 0) { | 126 | if (sessionStorage.getItem('keyPath') && sessionStorage.getItem('keyPath') >= 0) { |
| 126 | that.unitClick(sessionStorage.getItem('keyPath') - 0) | 127 | that.unitClick(sessionStorage.getItem('keyPath') - 0) |
| 127 | } else { | 128 | } else { |
| 128 | that.unitClick(0) | ||
| 129 | if (that.showBatch) { | 129 | if (that.showBatch) { |
| 130 | //满足批量查封/批量抵押按钮出现 即先展示批量表单 | 130 | //满足批量查封/批量抵押按钮出现 即先展示批量表单 |
| 131 | that.batchUnitClick(); | 131 | that.batchUnitClick(); |
| 132 | } else { | ||
| 133 | that.unitClick(0) | ||
| 132 | } | 134 | } |
| 133 | } | 135 | } |
| 134 | } | 136 | } |
| ... | @@ -178,12 +180,10 @@ | ... | @@ -178,12 +180,10 @@ |
| 178 | .then(() => { | 180 | .then(() => { |
| 179 | var formdata = new FormData(); | 181 | var formdata = new FormData(); |
| 180 | formdata.append("bsmSldyList", item.bsmSldy.split(",")); | 182 | formdata.append("bsmSldyList", item.bsmSldy.split(",")); |
| 181 | // formdata.append("bsmSlsq", this.bsmSlsq); | ||
| 182 | deleteSlbdcdy(formdata).then((res) => { | 183 | deleteSlbdcdy(formdata).then((res) => { |
| 183 | if (res.code == 200) { | 184 | if (res.code == 200) { |
| 184 | this.$message.success("删除成功"); | 185 | this.$message.success("删除成功"); |
| 185 | this.loadBdcdylist() | 186 | this.loadBdcdylist() |
| 186 | // this.$parent.updateDialog(); | ||
| 187 | } else { | 187 | } else { |
| 188 | this.$message.error(res.message); | 188 | this.$message.error(res.message); |
| 189 | } | 189 | } | ... | ... |
-
Please register or sign in to post a comment