Blame view

src/api/v1.js 3.32 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
/*
 * @Description: 互联共享数据
 * @Autor:
 * @LastEditTime: 2023-09-06 09:47:59
 */

import request from "@/utils/request";
let SERVER = window.config
  ? window.config
  : JSON.parse(localStorage.getItem("ApiUrl"));

/**
 * @description: 身份核查
 * @param {*} data
 * @author:
 */
export function sfhc(data) {
  return request({
    url: SERVER.SERVERAPI + "/v1/gab/sfhc",
    method: "post",
    data,
  });
}
/**
 * @description: 婚姻
 * @param {*} data
 * @author:
 */
export function hy(data) {
  return request({
    url: SERVER.SERVERAPI + "/v1/mzb/hy",
    method: "post",
    data,
  });
}
/**
37
 * @description: 金融许可查询
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 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
 * @param {*} data
 * @author:
 */
export function jrxkz(data) {
  return request({
    url: SERVER.SERVERAPI + "/v1/ybj/jrxkz",
    method: "post",
    data,
  });
}
/**
 * @description: 企业基本信息查询
 * @param {*} data
 * @author:
 */
export function qyjbxx(data) {
  return request({
    url: SERVER.SERVERAPI + "/v1/scjg/qyjbxx",
    method: "post",
    data,
  });
}
/**
 * @description: 企业基本信息验证
 * @param {*} data
 * @author:
 */
export function qyjbxxyz(data) {
  return request({
    url: SERVER.SERVERAPI + "/v1/scjg/qyjbxxyz",
    method: "post",
    data,
  });
}
/**
 * @description: 地域信息查询
 * @param {*} data
 * @author:
 */
export function dm(data) {
  return request({
    url: SERVER.SERVERAPI + "/v1/mzb/dm",
    method: "post",
    data,
  });
}
/**
 * @description: 个体工商户基本信息查询
 * @param {*} data
 * @author:
 */
export function gtgshjbxx(data) {
  return request({
    url: SERVER.SERVERAPI + "/v1/sczj/gtgshjbxx",
    method: "post",
    data,
  });
}
/**
 * @description: 个体工商户基本信息验证
 * @param {*} data
 * @author:
 */
export function gtgshjbxxyz(data) {
  return request({
    url: SERVER.SERVERAPI + "/v1/sczj/gtgshjbxxyz",
    method: "post",
    data,
  });
}
/**
 * @description: 中编办机构信息查询
 * @param {*} data
 * @author:
 */
export function xydm(data) {
  return request({
    url: SERVER.SERVERAPI + "/v1/zbb/xydm",
    method: "post",
    data,
  });
}
/**
 * @description: 机构信息查询
 * @param {*} data
 * @author:
 */
export function jgxxcx(data) {
  return request({
    url: SERVER.SERVERAPI + "/v1/mzb/xydm",
    method: "post",
    data,
  });
}
/**
 * @description: 不动产登记信息查询
 * @param {*} data
 * @author:
 */
export function bdcdj(data) {
  return request({
    url: SERVER.SERVERAPI + "/v1/mzt/bdcdj",
    method: "post",
    data,
  });
}
/**
 * @description: 电子营业执照
 * @param {*} data
 * @author:
 */
export function dzyyzz(data) {
  return request({
    url: SERVER.SERVERAPI + "/v1/sczj/dzyyzz",
    method: "post",
    data,
  });
}
/**
 * @description: 公证书信息查询
 * @param {*} data
 * @author:
 */
export function gzsxx(data) {
  return request({
    url: SERVER.SERVERAPI + "/v1/sft/gzsxx",
    method: "post",
    data,
  });
}
/**
 * @description: 判决文书
 * @param {*} data
 * @author:
 */
export function pjws(data) {
  return request({
    url: SERVER.SERVERAPI + "/v1/zgf/pjws",
    method: "post",
    data,
  });
}
/**
 * @description: 判决文书二次查询
 * @param {*} data
 * @author:
 */
export function pjwsDetail(data) {
  return request({
    url: SERVER.SERVERAPI + "/v1/zgf/pjwsDetail",
    method: "post",
    data,
  });
}