af1909be by tianhaohao@pashanhoo.com

11111

1 parent e5ae082c
......@@ -116,6 +116,19 @@ export function startBusinessFlow (data) {
}
/**
* @description: 业务办理-发起业务申请流程
* @param {*} data
* @author: renchao
*/
export function startRepairFlow (data) {
return request({
url: SERVER.SERVERAPI + '/rest/business/workFlow/startRepairFlow',
method: 'post',
data
})
}
/**
* @description: 已办箱列表查询接口
* @param {*} data
* @author: renchao
......
......@@ -224,7 +224,7 @@
if (!this.isJump) {
startBusinessFlow({
bsmSqyw: this.bsmSqyw,
fwlx: this.activeName,
sjlx: 'zrz',
bdcdysz: this.bdcdysz,
djqxbm: this.sqywInfo.nodetype == "djqx" ? this.sqywInfo.nodecode : "",
djqxmc: this.sqywInfo.nodetype == "djqx" ? this.sqywInfo.nodename : "",
......
......@@ -52,7 +52,7 @@
</template>
<script>
import { mapGetters } from "vuex";
import {startBusinessFlow} from "@/api/djbbl.js"
import {startRepairFlow} from "@/api/ywbl.js";
import store from '@/store/index.js'
import table from "@/utils/mixin/table";
import { datas, sendThis } from "../javascript/selectDjbbl.js";
......@@ -154,7 +154,7 @@ export default {
djqxmc: this.sqywInfo.nodetype == "djlx" ? this.sqywInfo.nodename : "",
}
console.log("发起申请传参",from,this.sqywInfo);
startBusinessFlow(from).then((res) => {
startRepairFlow(from).then((res) => {
if (res.code == 200) {
this.$message({
showClose: true,
......
......@@ -4,8 +4,8 @@ export function queueDjywmc(djywbm, djqxbm) {
return "selectJsydsyqSplitMerge";
}
if (djqxbm == "DJBBL001") {
return "selectDjbbl";
}
return "selectDjbbl";
}
let vm = null;
switch (djywbm) {
case "A03100"://建设用地使用权(首次登记)
......