Blame view

src/api/workflow/ygdyFlow.js 1.04 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
import request from '@/utils/request'
import SERVER from '../config'
// 初始化内容
export function Init (data) {
  let apiUrl = "";
  switch (data.get("djlx")) {
    case "100":
      apiUrl = SERVER.SERVERAPI + "/rest/ywbl/ygdy/fristInit";
      break;
    case "200":
      apiUrl = SERVER.SERVERAPI + "/rest/ywbl/ygdy/transferInit";
      break;
    case "300":
      apiUrl = SERVER.SERVERAPI + "/rest/ywbl/ygdy/changeInit";
      break;
    case "400":
      apiUrl = SERVER.SERVERAPI + "/rest/ywbl/ygdy/logoutInit";
      break;
    case "500":
      apiUrl = SERVER.SERVERAPI + "/rest/ywbl/ygdy/riviseInit";
      break;
    case "901":
      apiUrl = SERVER.SERVERAPI + "/rest/ywbl/ygdy/renewalInit";
      break;
    case "902":
      apiUrl = SERVER.SERVERAPI + "/rest/ywbl/ygdy/replaceInit";
      break;
  }
  return request({
    url: apiUrl,
    method: 'post',
    data
  })
}
// 初始化内容
export function saveData (data) {
  return request({
    url: SERVER.SERVERAPI + '/rest/ywbl/ygdy/saveData',
    method: 'post',
    data
  })
}