style:流程框架修改
Showing
10 changed files
with
69 additions
and
89 deletions
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-09-21 10:19:25 | 4 | * @LastEditTime: 2023-09-21 10:53:44 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <div class="tableBox"> | 7 | <div class="tableBox"> |
| ... | @@ -71,10 +71,10 @@ | ... | @@ -71,10 +71,10 @@ |
| 71 | <span v-if="item.prop == 'qszt'"> | 71 | <span v-if="item.prop == 'qszt'"> |
| 72 | {{ getQsztName(row[item.prop]) }} | 72 | {{ getQsztName(row[item.prop]) }} |
| 73 | </span> | 73 | </span> |
| 74 | <el-link v-if="item.prop == 'ywh'" | 74 | <el-link v-if="['zxywh', 'ywh'].includes(item.prop)" |
| 75 | @click="handleSelectYwh(tableData, row[item.prop])" | 75 | @click="handleSelectYwh(tableData, row[item.prop])" |
| 76 | type="primary">{{ row[item.prop] }}</el-link> | 76 | type="primary">{{ row[item.prop] }}</el-link> |
| 77 | <span v-if="!['qszt','ywh' ].includes(item.prop)">{{ row[item.prop] }}</span> | 77 | <span v-if="!['qszt','ywh', 'zxywh' ].includes(item.prop)">{{ row[item.prop] }}</span> |
| 78 | </p> | 78 | </p> |
| 79 | 79 | ||
| 80 | <el-tooltip | 80 | <el-tooltip |
| ... | @@ -229,7 +229,7 @@ | ... | @@ -229,7 +229,7 @@ |
| 229 | if (sjlx == '系统数据') { | 229 | if (sjlx == '系统数据') { |
| 230 | getXtParamsByYwh(ywh).then(res => { | 230 | getXtParamsByYwh(ywh).then(res => { |
| 231 | let data = res.result | 231 | let data = res.result |
| 232 | const { href } = Router.resolve('/workFrameView?bsmSlsq=' + data.bsmSlsq + '&bestepid=' + data.bestepid + '&bsmBusiness=' + data.bsmBusiness + '&type=jdcx') | 232 | const { href } = Router.resolve('/workFrameView?bsmSlsq=' + data.bsmSlsq + '&bsmBusiness=' + data.bsmBusiness) |
| 233 | window.open(href, `urlname${data.bsmSlsq}`) | 233 | window.open(href, `urlname${data.bsmSlsq}`) |
| 234 | }) | 234 | }) |
| 235 | } else { | 235 | } else { | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: miaofang | 3 | * @Autor: miaofang |
| 4 | * @LastEditTime: 2023-09-18 14:48:07 | 4 | * @LastEditTime: 2023-09-21 11:05:33 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <div class="djxxTable"> | 7 | <div class="djxxTable"> |
| ... | @@ -72,7 +72,7 @@ | ... | @@ -72,7 +72,7 @@ |
| 72 | <span v-if="item.prop == 'qszt'"> | 72 | <span v-if="item.prop == 'qszt'"> |
| 73 | {{ getQsztName(row[item.prop]) }} | 73 | {{ getQsztName(row[item.prop]) }} |
| 74 | </span> | 74 | </span> |
| 75 | <el-link v-if="item.prop == 'ywh'" | 75 | <el-link v-if=" ['zxywh', 'ywh'].includes(item.prop)" |
| 76 | @click="handleSelectYwh(tableData, row[item.prop])" | 76 | @click="handleSelectYwh(tableData, row[item.prop])" |
| 77 | type="primary">{{ row[item.prop] }}</el-link> | 77 | type="primary">{{ row[item.prop] }}</el-link> |
| 78 | <el-tooltip | 78 | <el-tooltip |
| ... | @@ -88,6 +88,7 @@ | ... | @@ -88,6 +88,7 @@ |
| 88 | 88 | ||
| 89 | <span | 89 | <span |
| 90 | v-if=" | 90 | v-if=" |
| 91 | item.prop !== 'zxywh' && | ||
| 91 | item.prop !== 'ywh' && | 92 | item.prop !== 'ywh' && |
| 92 | item.prop !== 'qszt' && | 93 | item.prop !== 'qszt' && |
| 93 | item.prop !== 'djyy' && | 94 | item.prop !== 'djyy' && |
| ... | @@ -291,14 +292,16 @@ | ... | @@ -291,14 +292,16 @@ |
| 291 | if (sjlx == '系统数据') { | 292 | if (sjlx == '系统数据') { |
| 292 | getXtParamsByYwh(ywh).then(res => { | 293 | getXtParamsByYwh(ywh).then(res => { |
| 293 | let data = res.result | 294 | let data = res.result |
| 294 | const { href } = Router.resolve('/workFrameView?bsmSlsq=' + data.bsmSlsq + '&bestepid=' + data.bestepid + '&bsmBusiness=' + data.bsmBusiness + '&type=jdcx') | 295 | const { href } = Router.resolve('/workFrameView?bsmSlsq=' + data.bsmSlsq + '&bsmBusiness=' + data.bsmBusiness + '&type=jdcx') |
| 295 | window.open(href, `urlname${data.bsmSlsq}`) | 296 | window.open(href, `urlname${data.bsmSlsq}`) |
| 296 | }) | 297 | }) |
| 297 | } else { | 298 | } else { |
| 298 | getBlParamsByYwh(ywh, bsmQlxx).then(res => { | 299 | getBlParamsByYwh(ywh, bsmQlxx).then(res => { |
| 299 | let data = res.result | 300 | let data = res.result |
| 300 | const { href } = Router.resolve('/workFrameView?bsmSlsq=' + data.bsmSlsq + '&bestepid=' + data.bestepid + '&bsmBusiness=' + data.bsmBusiness + '&type=jdcx') | 301 | this.$popup('材料信息', 'registerBook/components/clxx/index', { |
| 301 | window.open(href, `urlname${data.bsmSlsq}`) | 302 | width: '60%', |
| 303 | formData: data | ||
| 304 | }) | ||
| 302 | }) | 305 | }) |
| 303 | } | 306 | } |
| 304 | } | 307 | } | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: workFrame左侧菜单列表-普通 | 2 | * @Description: workFrame左侧菜单列表-普通 |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-09-21 10:46:05 | 4 | * @LastEditTime: 2023-09-21 13:20:03 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <div class="leftmenu" :class="{ 'animation-map-drawer': isShowdrawer }"> | 7 | <div class="leftmenu" :class="{ 'animation-map-drawer': isShowdrawer }"> |
| ... | @@ -49,8 +49,6 @@ | ... | @@ -49,8 +49,6 @@ |
| 49 | return { | 49 | return { |
| 50 | //受理申请标识码 | 50 | //受理申请标识码 |
| 51 | bsmSlsq: this.$route.query.bsmSlsq, | 51 | bsmSlsq: this.$route.query.bsmSlsq, |
| 52 | //当前流程所在环节 | ||
| 53 | bestepid: this.$route.query.bestepid, | ||
| 54 | // 默认选中 | 52 | // 默认选中 |
| 55 | activeIndex: '0', | 53 | activeIndex: '0', |
| 56 | // 折叠 | 54 | // 折叠 |
| ... | @@ -89,11 +87,9 @@ | ... | @@ -89,11 +87,9 @@ |
| 89 | loadBdcdylist (status = false) { | 87 | loadBdcdylist (status = false) { |
| 90 | let that = this | 88 | let that = this |
| 91 | var formdata = new FormData(); | 89 | var formdata = new FormData(); |
| 92 | formdata.append("bsmSlsq", this.bsmSlsq); | 90 | formdata.append("bsmSlsq", this.$route.query.bsmSlsq); |
| 93 | if (this.$route.query.bsmBusiness) { | ||
| 94 | formdata.append("bsmBusiness", this.$route.query.bsmBusiness); | 91 | formdata.append("bsmBusiness", this.$route.query.bsmBusiness); |
| 95 | } | 92 | if (this.type) { |
| 96 | if (this.$route.query.type == 'jdcx') { | ||
| 97 | jdcxLeftMenu(formdata).then((res) => { | 93 | jdcxLeftMenu(formdata).then((res) => { |
| 98 | if (res.code === 200 && res.result) { | 94 | if (res.code === 200 && res.result) { |
| 99 | that.unitData = res.result; | 95 | that.unitData = res.result; |
| ... | @@ -183,10 +179,6 @@ | ... | @@ -183,10 +179,6 @@ |
| 183 | deleteSlbdcdy(formdata).then((res) => { | 179 | deleteSlbdcdy(formdata).then((res) => { |
| 184 | if (res.code == 200) { | 180 | if (res.code == 200) { |
| 185 | this.$message.success("删除成功"); | 181 | this.$message.success("删除成功"); |
| 186 | /** | ||
| 187 | * @description: 更新列表 | ||
| 188 | * @author: miaofang | ||
| 189 | */ | ||
| 190 | this.loadBdcdylist() | 182 | this.loadBdcdylist() |
| 191 | // this.$parent.updateDialog(); | 183 | // this.$parent.updateDialog(); |
| 192 | } else { | 184 | } else { | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: workFrame左侧菜单列表-分割 | 2 | * @Description: workFrame左侧菜单列表-分割 |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-09-21 10:46:34 | 4 | * @LastEditTime: 2023-09-21 14:20:52 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <div class="leftmenu" :class="{ 'animation-map-drawer': isShowdrawer }"> | 7 | <div class="leftmenu" :class="{ 'animation-map-drawer': isShowdrawer }"> |
| ... | @@ -102,9 +102,9 @@ | ... | @@ -102,9 +102,9 @@ |
| 102 | let that = this | 102 | let that = this |
| 103 | var formdata = new FormData(); | 103 | var formdata = new FormData(); |
| 104 | // 受理申请标识码 | 104 | // 受理申请标识码 |
| 105 | formdata.append("bsmSlsq", this.paramData.bsmSlsq); | 105 | formdata.append("bsmSlsq", this.$route.query.bsmSlsq); |
| 106 | formdata.append("bsmBusiness", this.paramData.bsmBusiness); | 106 | formdata.append("bsmBusiness", this.$route.query.bsmBusiness); |
| 107 | if (this.$route.query.type == 'jdcx') { | 107 | if (this.type) { |
| 108 | jdcxLeftMenu(formdata).then((res) => { | 108 | jdcxLeftMenu(formdata).then((res) => { |
| 109 | if (res.code === 200 && res.result) { | 109 | if (res.code === 200 && res.result) { |
| 110 | this.aroundUnitData = res.result.filter(item => item.bglx == '1') | 110 | this.aroundUnitData = res.result.filter(item => item.bglx == '1') |
| ... | @@ -206,6 +206,7 @@ | ... | @@ -206,6 +206,7 @@ |
| 206 | * @author: renchao | 206 | * @author: renchao |
| 207 | */ | 207 | */ |
| 208 | batchUnitClick () { | 208 | batchUnitClick () { |
| 209 | window.currentSelect = {} | ||
| 209 | this.currentSelectProps.batchOperation = true; | 210 | this.currentSelectProps.batchOperation = true; |
| 210 | // this.activeIndex = "-1"; | 211 | // this.activeIndex = "-1"; |
| 211 | this.$parent.stepForm(0); | 212 | this.$parent.stepForm(0); | ... | ... |
| 1 | /* | 1 | /* |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-09-20 16:56:46 | 4 | * @LastEditTime: 2023-09-21 14:20:02 |
| 5 | */ | 5 | */ |
| 6 | import { getPrintTemplateByCode } from "@/api/print"; | 6 | import { getPrintTemplateByCode } from "@/api/print"; |
| 7 | import { uploadUndo } from "@/api/clxx"; | 7 | import { uploadUndo } from "@/api/clxx"; |
| ... | @@ -52,7 +52,7 @@ export default { | ... | @@ -52,7 +52,7 @@ export default { |
| 52 | flowInitParam () { | 52 | flowInitParam () { |
| 53 | var formdata = new FormData(); | 53 | var formdata = new FormData(); |
| 54 | formdata.append("bsmSlsq", this.bsmSlsq); | 54 | formdata.append("bsmSlsq", this.bsmSlsq); |
| 55 | formdata.append("bestepid", this.bestepid); | 55 | formdata.append("bestepid", this.bestepid ? this.bestepid : ''); |
| 56 | if (this.type) { | 56 | if (this.type) { |
| 57 | formdata.append("type", "READ_ONLY"); | 57 | formdata.append("type", "READ_ONLY"); |
| 58 | } | 58 | } |
| ... | @@ -85,7 +85,7 @@ export default { | ... | @@ -85,7 +85,7 @@ export default { |
| 85 | }) | 85 | }) |
| 86 | break; | 86 | break; |
| 87 | case "B1": | 87 | case "B1": |
| 88 | getWorkFlowImage(this.bsmSlsq, this.$route.query.bestepid).then(res => { | 88 | getWorkFlowImage(this.bsmSlsq, this.bestepid ? this.bestepid : '').then(res => { |
| 89 | let { result } = res | 89 | let { result } = res |
| 90 | this.$popupDialog("流程图", "workflow/components/processViewer", { | 90 | this.$popupDialog("流程图", "workflow/components/processViewer", { |
| 91 | xml: result.xml, | 91 | xml: result.xml, |
| ... | @@ -163,8 +163,8 @@ export default { | ... | @@ -163,8 +163,8 @@ export default { |
| 163 | bsm: res.result[0], | 163 | bsm: res.result[0], |
| 164 | onlyShow: false, | 164 | onlyShow: false, |
| 165 | unitData: window.unitData, | 165 | unitData: window.unitData, |
| 166 | bsmSlsq:this.bsmSlsq, | 166 | bsmSlsq: this.bsmSlsq, |
| 167 | showSave:true, | 167 | showSave: true, |
| 168 | djlx: window.djlx | 168 | djlx: window.djlx |
| 169 | }, '90%', true) | 169 | }, '90%', true) |
| 170 | } else { | 170 | } else { |
| ... | @@ -177,8 +177,8 @@ export default { | ... | @@ -177,8 +177,8 @@ export default { |
| 177 | window.djlx && this.$popupDialog('楼盘表', 'lpb/zjgcdy', { | 177 | window.djlx && this.$popupDialog('楼盘表', 'lpb/zjgcdy', { |
| 178 | onlyShow: false, | 178 | onlyShow: false, |
| 179 | unitData: window.unitData, | 179 | unitData: window.unitData, |
| 180 | bsmSlsq:this.bsmSlsq, | 180 | bsmSlsq: this.bsmSlsq, |
| 181 | showSave:true, | 181 | showSave: true, |
| 182 | djlx: window.djlx | 182 | djlx: window.djlx |
| 183 | }, '90%', true) | 183 | }, '90%', true) |
| 184 | break; | 184 | break; |
| ... | @@ -192,13 +192,13 @@ export default { | ... | @@ -192,13 +192,13 @@ export default { |
| 192 | case "back": //退回按钮 | 192 | case "back": //退回按钮 |
| 193 | this.$popupDialog("退回", "workflow/components/th", { | 193 | this.$popupDialog("退回", "workflow/components/th", { |
| 194 | bsmSlsq: this.bsmSlsq, | 194 | bsmSlsq: this.bsmSlsq, |
| 195 | bestepid: this.bestepid | 195 | bestepid: this.bestepid ? this.bestepid : '' |
| 196 | }, '800px', true) | 196 | }, '800px', true) |
| 197 | break; | 197 | break; |
| 198 | case "transfer": //转件按钮 | 198 | case "transfer": //转件按钮 |
| 199 | getNextLinkInfo({ | 199 | getNextLinkInfo({ |
| 200 | bsmSlsq: this.bsmSlsq, | 200 | bsmSlsq: this.bsmSlsq, |
| 201 | bestepid: this.bestepid, | 201 | bestepid: this.bestepid ? his.bestepid : '' |
| 202 | }).then((res) => { | 202 | }).then((res) => { |
| 203 | if (res.code === 200) { | 203 | if (res.code === 200) { |
| 204 | if (res.result) { | 204 | if (res.result) { |
| ... | @@ -212,18 +212,18 @@ export default { | ... | @@ -212,18 +212,18 @@ export default { |
| 212 | case "stop": //终止按钮 | 212 | case "stop": //终止按钮 |
| 213 | this.$popupDialog("终止", "workflow/components/stop", { | 213 | this.$popupDialog("终止", "workflow/components/stop", { |
| 214 | bsmSlsq: this.bsmSlsq, | 214 | bsmSlsq: this.bsmSlsq, |
| 215 | bestepid: this.bestepid, | 215 | bestepid: this.bestepid ? this.bestepid : '' |
| 216 | }, '600px', true) | 216 | }, '600px', true) |
| 217 | break; | 217 | break; |
| 218 | case "signout": | 218 | case "signout": |
| 219 | window.close(); | 219 | window.close(); |
| 220 | //取消认领 | 220 | //取消认领 |
| 221 | unClaimTask(this.bsmSlsq, this.bestepid) | 221 | unClaimTask(this.bsmSlsq, this.bestepid ? this.bestepid : '') |
| 222 | break; | 222 | break; |
| 223 | case "B9": | 223 | case "B9": |
| 224 | var formdata = new FormData(); | 224 | var formdata = new FormData(); |
| 225 | formdata.append("bsmSlsq", this.bsmSlsq); | 225 | formdata.append("bsmSlsq", this.bsmSlsq); |
| 226 | formdata.append("bestepid", this.bestepid); | 226 | formdata.append("bestepid", this.bestepid ? this.bestepid : ''); |
| 227 | this.$confirm("请确认是否登簿", "提示", { | 227 | this.$confirm("请确认是否登簿", "提示", { |
| 228 | iconClass: "el-icon-info", //自定义图标样式 | 228 | iconClass: "el-icon-info", //自定义图标样式 |
| 229 | confirmButtonText: "确认", //确认按钮文字更换 | 229 | confirmButtonText: "确认", //确认按钮文字更换 |
| ... | @@ -265,7 +265,7 @@ export default { | ... | @@ -265,7 +265,7 @@ export default { |
| 265 | this.$confirm("确定要删除吗, 是否继续?", "提示", { | 265 | this.$confirm("确定要删除吗, 是否继续?", "提示", { |
| 266 | confirmButtonText: "确定", | 266 | confirmButtonText: "确定", |
| 267 | cancelButtonText: "取消", | 267 | cancelButtonText: "取消", |
| 268 | type: "warning", | 268 | type: "warning" |
| 269 | }) | 269 | }) |
| 270 | .then(() => { | 270 | .then(() => { |
| 271 | deleteFlow(formdata).then((res) => { | 271 | deleteFlow(formdata).then((res) => { |
| ... | @@ -279,14 +279,14 @@ export default { | ... | @@ -279,14 +279,14 @@ export default { |
| 279 | } else { | 279 | } else { |
| 280 | this.$message.error(res.message); | 280 | this.$message.error(res.message); |
| 281 | } | 281 | } |
| 282 | }); | 282 | }) |
| 283 | }) | 283 | }) |
| 284 | .catch(() => { | 284 | .catch(() => { |
| 285 | this.$message({ | 285 | this.$message({ |
| 286 | type: "info", | 286 | type: "info", |
| 287 | message: "已取消删除", | 287 | message: "已取消删除" |
| 288 | }); | 288 | }) |
| 289 | }); | 289 | }) |
| 290 | }, | 290 | }, |
| 291 | /** | 291 | /** |
| 292 | * @description: 发送下一个环节 | 292 | * @description: 发送下一个环节 |
| ... | @@ -337,7 +337,7 @@ export default { | ... | @@ -337,7 +337,7 @@ export default { |
| 337 | formdata.append("bsmSlsq", this.bsmSlsq); | 337 | formdata.append("bsmSlsq", this.bsmSlsq); |
| 338 | uploadUndo(formdata).then(res => { | 338 | uploadUndo(formdata).then(res => { |
| 339 | if (res.code == 200) { | 339 | if (res.code == 200) { |
| 340 | this.$message.success("导入成功"); | 340 | this.$message.success("导入成功") |
| 341 | } else { | 341 | } else { |
| 342 | this.$message.error(res.message) | 342 | this.$message.error(res.message) |
| 343 | } | 343 | } | ... | ... |
| 1 | /* | 1 | /* |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-09-12 10:52:24 | 4 | * @LastEditTime: 2023-09-21 14:16:39 |
| 5 | */ | 5 | */ |
| 6 | import { getForm } from "../flowform"; | 6 | import { getForm } from "../flowform"; |
| 7 | import { getHomeNoticeList } from "@/api/home.js" | 7 | import { getHomeNoticeList } from "@/api/home.js" |
| ... | @@ -55,7 +55,7 @@ export default { | ... | @@ -55,7 +55,7 @@ export default { |
| 55 | break; | 55 | break; |
| 56 | } | 56 | } |
| 57 | } | 57 | } |
| 58 | this.componentTag = getForm(tabname, this.$route.query.sqywbm); | 58 | this.componentTag = getForm(tabname); |
| 59 | } | 59 | } |
| 60 | } | 60 | } |
| 61 | } | 61 | } | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-09-18 11:13:57 | 4 | * @LastEditTime: 2023-09-21 13:45:04 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <div class="container"> | 7 | <div class="container"> |
| ... | @@ -178,7 +178,7 @@ | ... | @@ -178,7 +178,7 @@ |
| 178 | // 获取打印回执数据 | 178 | // 获取打印回执数据 |
| 179 | var formdata = new FormData(); | 179 | var formdata = new FormData(); |
| 180 | formdata.append("bsmSldy", this.currentSelectProps.bsmSldy); | 180 | formdata.append("bsmSldy", this.currentSelectProps.bsmSldy); |
| 181 | formdata.append("bsmSlsq", this.paramData.bsmSlsq); | 181 | formdata.append("bsmSlsq", this.$route.query.bsmSlsq); |
| 182 | formdata.append("djlx", this.currentSelectProps.djlx); | 182 | formdata.append("djlx", this.currentSelectProps.djlx); |
| 183 | BatchInit(formdata).then((res) => { | 183 | BatchInit(formdata).then((res) => { |
| 184 | if (res.code === 200 && res.result) { | 184 | if (res.code === 200 && res.result) { |
| ... | @@ -231,7 +231,7 @@ | ... | @@ -231,7 +231,7 @@ |
| 231 | //判断是窗口关闭还是刷新 | 231 | //判断是窗口关闭还是刷新 |
| 232 | if (this._gap_time <= 10) { | 232 | if (this._gap_time <= 10) { |
| 233 | //取消认领 | 233 | //取消认领 |
| 234 | unClaimTask(this.paramData.bsmSlsq, this.paramData.bestepid) | 234 | unClaimTask(this.$route.query.bsmSlsq, this.bestepid ? this.bestepid : '') |
| 235 | } | 235 | } |
| 236 | }, | 236 | }, |
| 237 | /** | 237 | /** | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-09-21 10:46:55 | 4 | * @LastEditTime: 2023-09-21 13:11:04 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <div class="container"> | 7 | <div class="container"> |
| ... | @@ -71,8 +71,6 @@ | ... | @@ -71,8 +71,6 @@ |
| 71 | return { | 71 | return { |
| 72 | //受理申请标识码 | 72 | //受理申请标识码 |
| 73 | bsmSlsq: this.$route.query.bsmSlsq, | 73 | bsmSlsq: this.$route.query.bsmSlsq, |
| 74 | //当前流程所在环节 | ||
| 75 | bestepid: this.$route.query.bestepid, | ||
| 76 | // 流程图 | 74 | // 流程图 |
| 77 | imgSrc: "", | 75 | imgSrc: "", |
| 78 | // 折叠 | 76 | // 折叠 | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-09-15 16:30:47 | 4 | * @LastEditTime: 2023-09-21 14:24:15 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
| ... | @@ -303,32 +303,24 @@ | ... | @@ -303,32 +303,24 @@ |
| 303 | //有任务权限 | 303 | //有任务权限 |
| 304 | if (item.sjlx == "3") { | 304 | if (item.sjlx == "3") { |
| 305 | const { href } = this.$router.resolve( | 305 | const { href } = this.$router.resolve( |
| 306 | "/djbworkFrame?bsmSlsq=" + | 306 | "/djbworkFrame?bsmSlsq=" + item.bsmSlsq + |
| 307 | item.bsmSlsq + | 307 | "&bestepid=" + item.bestepid + |
| 308 | "&bestepid=" + | 308 | "&bsmBusiness=" + item.bsmBusiness, |
| 309 | item.bestepid + | 309 | "&sqywbm=" + item.djywbm + |
| 310 | "&bsmBusiness=" + | 310 | "&zbhj=" + item.zbhj |
| 311 | "&sqywbm=" + | ||
| 312 | item.djywbm + | ||
| 313 | "&zbhj=" + | ||
| 314 | item.zbhj | ||
| 315 | ); | 311 | ); |
| 316 | window.open(href, `djbworkFrame${item.bsmSlsq}`); | 312 | window.open(href, `djbworkFrame${item.bsmSlsq}`); |
| 317 | } else { | 313 | } else { |
| 318 | const { href } = this.$router.resolve( | 314 | const { href } = this.$router.resolve( |
| 319 | "/workFrame?bsmSlsq=" + | 315 | "/workFrame?bsmSlsq=" + item.bsmSlsq + |
| 320 | item.bsmSlsq + | 316 | "&bestepid=" + item.bestepid + |
| 321 | "&bestepid=" + | 317 | "&bsmBusiness=" + item.bsmBusiness, |
| 322 | item.bestepid + | 318 | "&sqywbm=" + item.djywbm + |
| 323 | "&bsmBusiness=" + | 319 | "&zbhj=" + item.zbhj |
| 324 | "&sqywbm=" + | 320 | ) |
| 325 | item.djywbm + | 321 | window.open(href, `workFrame${item.bsmSlsq}`) |
| 326 | "&zbhj=" + | ||
| 327 | item.zbhj | ||
| 328 | ); | ||
| 329 | window.open(href, `workFrame${item.bsmSlsq}`); | ||
| 330 | } | 322 | } |
| 331 | localStorage.setItem("ywbl", JSON.stringify(item)); | 323 | localStorage.setItem("ywbl", JSON.stringify(item)) |
| 332 | 324 | ||
| 333 | //从待办箱进入的调取任务领取接口 | 325 | //从待办箱进入的调取任务领取接口 |
| 334 | claimTask(item.bsmSlsq, item.bestepid); | 326 | claimTask(item.bsmSlsq, item.bestepid); |
| ... | @@ -341,10 +333,10 @@ | ... | @@ -341,10 +333,10 @@ |
| 341 | } else { | 333 | } else { |
| 342 | this.$message.error("用户任务权限判断失败,请联系管理员"); | 334 | this.$message.error("用户任务权限判断失败,请联系管理员"); |
| 343 | } | 335 | } |
| 344 | }); | 336 | }) |
| 345 | }, | 337 | } |
| 346 | }, | 338 | } |
| 347 | }; | 339 | } |
| 348 | </script> | 340 | </script> |
| 349 | <style scoped lang="scss"> | 341 | <style scoped lang="scss"> |
| 350 | @import "~@/styles/public.scss"; | 342 | @import "~@/styles/public.scss"; | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-09-19 10:04:58 | 4 | * @LastEditTime: 2023-09-21 14:24:21 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
| ... | @@ -220,7 +220,6 @@ | ... | @@ -220,7 +220,6 @@ |
| 220 | methods: { | 220 | methods: { |
| 221 | /** | 221 | /** |
| 222 | * @description: 列表渲染接口 | 222 | * @description: 列表渲染接口 |
| 223 | * @author: renchao | ||
| 224 | */ | 223 | */ |
| 225 | queryClick () { | 224 | queryClick () { |
| 226 | this.$startLoading(); | 225 | this.$startLoading(); |
| ... | @@ -264,22 +263,17 @@ | ... | @@ -264,22 +263,17 @@ |
| 264 | if (item.sjlx == "3") { | 263 | if (item.sjlx == "3") { |
| 265 | item.djywbm = "DJBBL"; | 264 | item.djywbm = "DJBBL"; |
| 266 | const { href } = this.$router.resolve( | 265 | const { href } = this.$router.resolve( |
| 267 | "/djbworkFrameview?bsmSlsq=" + | 266 | "/djbworkFrameview?bsmSlsq=" + item.bsmSlsq + |
| 268 | item.bsmSlsq + | 267 | "&bsmBusiness=" + item.bsmBusiness + |
| 269 | "&bestepid=" + | 268 | "&sqywbm=" + item.djywbm |
| 270 | item.bestepid + | ||
| 271 | "&sqywbm=" + | ||
| 272 | item.djywbm | ||
| 273 | ); | 269 | ); |
| 274 | window.open(href, `djbworkFrameview${item.bsmSlsq}`); | 270 | window.open(href, `djbworkFrameview${item.bsmSlsq}`); |
| 275 | } else { | 271 | } else { |
| 276 | const { href } = this.$router.resolve( | 272 | const { href } = this.$router.resolve( |
| 277 | "/workFrameView?bsmSlsq=" + | 273 | "/workFrameView?bsmSlsq=" + item.bsmSlsq + |
| 278 | item.bsmSlsq + | 274 | "&bsmBusiness=" + item.bsmBusiness |
| 279 | "&bestepid=" + | ||
| 280 | item.bestepid | ||
| 281 | ); | 275 | ); |
| 282 | window.open(href, `workFrameView${item.bsmSlsq}`); | 276 | window.open(href, `workFrameView${item.bsmSlsq}`) |
| 283 | } | 277 | } |
| 284 | } | 278 | } |
| 285 | } | 279 | } | ... | ... |
-
Please register or sign in to post a comment