Blame view

src/api/v1.js 3.36 KB
1 2 3
/*
 * @Description: 互联共享数据
 * @Autor:
4
 * @LastEditTime: 2024-01-23 15:37:47
5 6 7 8 9 10 11 12 13 14 15 16 17 18
 */

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({
19
    url: SERVER.SERVERAPI + "/rest/bj/sfhc",
20 21 22 23 24 25 26 27 28 29 30
    method: "post",
    data,
  });
}
/**
 * @description: 婚姻
 * @param {*} data
 * @author:
 */
export function hy(data) {
  return request({
31
    url: SERVER.SERVERAPI + "/rest/bj/hy",
32 33 34 35 36
    method: "post",
    data,
  });
}
/**
37
 * @description: 金融许可查询
38 39 40 41 42
 * @param {*} data
 * @author:
 */
export function jrxkz(data) {
  return request({
43
    url: SERVER.SERVERAPI + "/rest/bj/jrxkz",
44 45 46 47 48 49 50 51 52 53 54
    method: "post",
    data,
  });
}
/**
 * @description: 企业基本信息查询
 * @param {*} data
 * @author:
 */
export function qyjbxx(data) {
  return request({
55
    url: SERVER.SERVERAPI + "/rest/scjg/qyjbxx",
56 57 58 59 60 61 62 63 64 65 66
    method: "post",
    data,
  });
}
/**
 * @description: 企业基本信息验证
 * @param {*} data
 * @author:
 */
export function qyjbxxyz(data) {
  return request({
67
    url: SERVER.SERVERAPI + "/rest/scjg/qyjbxxyz",
68 69 70 71 72 73 74 75 76 77 78
    method: "post",
    data,
  });
}
/**
 * @description: 地域信息查询
 * @param {*} data
 * @author:
 */
export function dm(data) {
  return request({
79
    url: SERVER.SERVERAPI + "/rest/bj/dm",
80 81 82 83 84 85 86 87 88 89 90
    method: "post",
    data,
  });
}
/**
 * @description: 个体工商户基本信息查询
 * @param {*} data
 * @author:
 */
export function gtgshjbxx(data) {
  return request({
91
    url: SERVER.SERVERAPI + "/rest/scjg/gtgshjbxx",
92 93 94 95 96 97 98 99 100 101 102
    method: "post",
    data,
  });
}
/**
 * @description: 个体工商户基本信息验证
 * @param {*} data
 * @author:
 */
export function gtgshjbxxyz(data) {
  return request({
103
    url: SERVER.SERVERAPI + "/rest/scjg/gtgshjbxxyz",
104 105 106 107 108 109 110 111 112 113 114
    method: "post",
    data,
  });
}
/**
 * @description: 中编办机构信息查询
 * @param {*} data
 * @author:
 */
export function xydm(data) {
  return request({
115
    url: SERVER.SERVERAPI + "/rest/bj/xydm",
116 117 118 119 120 121 122 123 124 125 126
    method: "post",
    data,
  });
}
/**
 * @description: 机构信息查询
 * @param {*} data
 * @author:
 */
export function jgxxcx(data) {
  return request({
127
    url: SERVER.SERVERAPI + "/rest/bj/mzbxydm",
128 129 130 131 132 133 134 135 136 137 138
    method: "post",
    data,
  });
}
/**
 * @description: 不动产登记信息查询
 * @param {*} data
 * @author:
 */
export function bdcdj(data) {
  return request({
139
    url: SERVER.SERVERAPI + "/rest/mzsf/mzt/bdcdj",
140 141 142 143 144 145 146 147 148 149 150
    method: "post",
    data,
  });
}
/**
 * @description: 电子营业执照
 * @param {*} data
 * @author:
 */
export function dzyyzz(data) {
  return request({
151
    url: SERVER.SERVERAPI + "/rest/scjg/dzyyzz",
152 153 154 155 156 157 158 159 160
    method: "post",
    data,
  });
}
/**
 * @description: 公证书信息查询
 * @param {*} data
 * @author:
 */
161
export function gzsxx(params) {
162
  return request({
163 164 165
    url: SERVER.SERVERAPI + "/rest/mzsf/sft/gzsxx",
    method: "get",
    params,
166 167 168 169 170 171 172 173 174
  });
}
/**
 * @description: 判决文书
 * @param {*} data
 * @author:
 */
export function pjws(data) {
  return request({
175
    url: SERVER.SERVERAPI + "/rest/bj/pjws",
176 177 178 179 180 181 182 183 184 185 186
    method: "post",
    data,
  });
}
/**
 * @description: 判决文书二次查询
 * @param {*} data
 * @author:
 */
export function pjwsDetail(data) {
  return request({
187
    url: SERVER.SERVERAPI + "/rest/bj/pjwsDetail",
188 189 190 191
    method: "post",
    data,
  });
}