Blame view

src/api/workflow/fwsyqFlow.js 2.14 KB
1
/*
2
 * @Description:
3
 * @Autor: renchao
renchao@pashanhoo.com committed
4
 * @LastEditTime: 2024-01-23 10:59:37
5
 */
6
import request from '@/utils/request'
7
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
8 9 10 11 12 13

/**
 *  国有建设用地使用权/房屋所有权-批量房屋初始化
 * @param data
 * @author ssq 2023年5月26日14点29分
 */
14
export function BatchInit (data) {
15 16 17 18 19 20
  let apiUrl = "";
  switch (data.get("djlx")) {
    case "100":
      apiUrl = SERVER.SERVERAPI + "/rest/ywbl/fdcq2lr/fristBatchInit";
      break;
    case "400":
tianhaohao@pashanhoo.com committed
21
      apiUrl = SERVER.SERVERAPI + "/rest/ywbl/fdcq2lr/logoutBatchInit";
22 23 24 25 26 27 28 29
      break;
  }
  return request({
    url: apiUrl,
    method: 'post',
    data
  })
}
30 31 32 33 34
/**
 * @description: 初始化内容
 * @param {*} data
 * @author: renchao
 */
tianhaohao@pashanhoo.com committed
35
export function Init(data) {
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
  let apiUrl = "";
  switch (data.get("djlx")) {
    case "100":
      apiUrl = SERVER.SERVERAPI + "/rest/ywbl/fdcq2lr/fristInit";
      break;
    case "200":
      apiUrl = SERVER.SERVERAPI + "/rest/ywbl/fdcq2lr/transferInit";
      break;
    case "300":
      apiUrl = SERVER.SERVERAPI + "/rest/ywbl/fdcq2lr/changeInit";
      break;
    case "400":
      apiUrl = SERVER.SERVERAPI + "/rest/ywbl/fdcq2lr/logoutInit";
      break;
    case "500":
      apiUrl = SERVER.SERVERAPI + "/rest/ywbl/fdcq2lr/riviseInit";
      break;
    case "901":
      apiUrl = SERVER.SERVERAPI + "/rest/ywbl/fdcq2lr/renewalInit";
      break;
    case "902":
      apiUrl = SERVER.SERVERAPI + "/rest/ywbl/fdcq2lr/replaceInit";
      break;
  }
  return request({
    url: apiUrl,
    method: 'post',
    data
  })
65
}
66 67 68 69 70
/**
 * @description: 首次登记提交
 * @param {*} data
 * @author: renchao
 */
tianhaohao@pashanhoo.com committed
71 72 73 74 75
export function saveBatchData(data) {
  let path = "/rest/ywbl/fdcq2lr/fristBatchSave";
  if (data.slsq.djywbm.includes("400")) {
    path = "/rest/ywbl/fdcq2lr/logoutBatchSave";
  }
76
  return request({
tianhaohao@pashanhoo.com committed
77
    url: SERVER.SERVERAPI + path,
78 79 80
    method: 'post',
    data
  })
81
}
82

83 84 85 86 87
/**
 * @description: 保存
 * @param {*} data
 * @author: renchao
 */
tianhaohao@pashanhoo.com committed
88
export function saveData(data) {
89 90 91 92 93
  return request({
    url: SERVER.SERVERAPI + "/rest/ywbl/fdcq2lr/saveData",
    method: 'post',
    data
  })
94
}
95