11111
Showing
4 changed files
with
18 additions
and
5 deletions
| ... | @@ -116,6 +116,19 @@ export function startBusinessFlow (data) { | ... | @@ -116,6 +116,19 @@ export function startBusinessFlow (data) { |
| 116 | } | 116 | } |
| 117 | 117 | ||
| 118 | /** | 118 | /** |
| 119 | * @description: 业务办理-发起业务申请流程 | ||
| 120 | * @param {*} data | ||
| 121 | * @author: renchao | ||
| 122 | */ | ||
| 123 | export function startRepairFlow (data) { | ||
| 124 | return request({ | ||
| 125 | url: SERVER.SERVERAPI + '/rest/business/workFlow/startRepairFlow', | ||
| 126 | method: 'post', | ||
| 127 | data | ||
| 128 | }) | ||
| 129 | } | ||
| 130 | |||
| 131 | /** | ||
| 119 | * @description: 已办箱列表查询接口 | 132 | * @description: 已办箱列表查询接口 |
| 120 | * @param {*} data | 133 | * @param {*} data |
| 121 | * @author: renchao | 134 | * @author: renchao | ... | ... |
| ... | @@ -224,7 +224,7 @@ | ... | @@ -224,7 +224,7 @@ |
| 224 | if (!this.isJump) { | 224 | if (!this.isJump) { |
| 225 | startBusinessFlow({ | 225 | startBusinessFlow({ |
| 226 | bsmSqyw: this.bsmSqyw, | 226 | bsmSqyw: this.bsmSqyw, |
| 227 | fwlx: this.activeName, | 227 | sjlx: 'zrz', |
| 228 | bdcdysz: this.bdcdysz, | 228 | bdcdysz: this.bdcdysz, |
| 229 | djqxbm: this.sqywInfo.nodetype == "djqx" ? this.sqywInfo.nodecode : "", | 229 | djqxbm: this.sqywInfo.nodetype == "djqx" ? this.sqywInfo.nodecode : "", |
| 230 | djqxmc: this.sqywInfo.nodetype == "djqx" ? this.sqywInfo.nodename : "", | 230 | djqxmc: this.sqywInfo.nodetype == "djqx" ? this.sqywInfo.nodename : "", | ... | ... |
| ... | @@ -52,7 +52,7 @@ | ... | @@ -52,7 +52,7 @@ |
| 52 | </template> | 52 | </template> |
| 53 | <script> | 53 | <script> |
| 54 | import { mapGetters } from "vuex"; | 54 | import { mapGetters } from "vuex"; |
| 55 | import {startBusinessFlow} from "@/api/djbbl.js" | 55 | import {startRepairFlow} from "@/api/ywbl.js"; |
| 56 | import store from '@/store/index.js' | 56 | import store from '@/store/index.js' |
| 57 | import table from "@/utils/mixin/table"; | 57 | import table from "@/utils/mixin/table"; |
| 58 | import { datas, sendThis } from "../javascript/selectDjbbl.js"; | 58 | import { datas, sendThis } from "../javascript/selectDjbbl.js"; |
| ... | @@ -154,7 +154,7 @@ export default { | ... | @@ -154,7 +154,7 @@ export default { |
| 154 | djqxmc: this.sqywInfo.nodetype == "djlx" ? this.sqywInfo.nodename : "", | 154 | djqxmc: this.sqywInfo.nodetype == "djlx" ? this.sqywInfo.nodename : "", |
| 155 | } | 155 | } |
| 156 | console.log("发起申请传参",from,this.sqywInfo); | 156 | console.log("发起申请传参",from,this.sqywInfo); |
| 157 | startBusinessFlow(from).then((res) => { | 157 | startRepairFlow(from).then((res) => { |
| 158 | if (res.code == 200) { | 158 | if (res.code == 200) { |
| 159 | this.$message({ | 159 | this.$message({ |
| 160 | showClose: true, | 160 | showClose: true, | ... | ... |
| ... | @@ -4,8 +4,8 @@ export function queueDjywmc(djywbm, djqxbm) { | ... | @@ -4,8 +4,8 @@ export function queueDjywmc(djywbm, djqxbm) { |
| 4 | return "selectJsydsyqSplitMerge"; | 4 | return "selectJsydsyqSplitMerge"; |
| 5 | } | 5 | } |
| 6 | if (djqxbm == "DJBBL001") { | 6 | if (djqxbm == "DJBBL001") { |
| 7 | return "selectDjbbl"; | 7 | return "selectDjbbl"; |
| 8 | } | 8 | } |
| 9 | let vm = null; | 9 | let vm = null; |
| 10 | switch (djywbm) { | 10 | switch (djywbm) { |
| 11 | case "A03100"://建设用地使用权(首次登记) | 11 | case "A03100"://建设用地使用权(首次登记) | ... | ... |
-
Please register or sign in to post a comment