11111
Showing
4 changed files
with
16 additions
and
3 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, | ... | ... |
-
Please register or sign in to post a comment