v1.js 3.36 KB
/*
 * @Description: 互联共享数据
 * @Autor:
 * @LastEditTime: 2024-01-23 15:37:47
 */

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 + "/rest/bj/sfhc",
    method: "post",
    data,
  });
}
/**
 * @description: 婚姻
 * @param {*} data
 * @author:
 */
export function hy(data) {
  return request({
    url: SERVER.SERVERAPI + "/rest/bj/hy",
    method: "post",
    data,
  });
}
/**
 * @description: 金融许可查询
 * @param {*} data
 * @author:
 */
export function jrxkz(data) {
  return request({
    url: SERVER.SERVERAPI + "/rest/bj/jrxkz",
    method: "post",
    data,
  });
}
/**
 * @description: 企业基本信息查询
 * @param {*} data
 * @author:
 */
export function qyjbxx(data) {
  return request({
    url: SERVER.SERVERAPI + "/rest/scjg/qyjbxx",
    method: "post",
    data,
  });
}
/**
 * @description: 企业基本信息验证
 * @param {*} data
 * @author:
 */
export function qyjbxxyz(data) {
  return request({
    url: SERVER.SERVERAPI + "/rest/scjg/qyjbxxyz",
    method: "post",
    data,
  });
}
/**
 * @description: 地域信息查询
 * @param {*} data
 * @author:
 */
export function dm(data) {
  return request({
    url: SERVER.SERVERAPI + "/rest/bj/dm",
    method: "post",
    data,
  });
}
/**
 * @description: 个体工商户基本信息查询
 * @param {*} data
 * @author:
 */
export function gtgshjbxx(data) {
  return request({
    url: SERVER.SERVERAPI + "/rest/scjg/gtgshjbxx",
    method: "post",
    data,
  });
}
/**
 * @description: 个体工商户基本信息验证
 * @param {*} data
 * @author:
 */
export function gtgshjbxxyz(data) {
  return request({
    url: SERVER.SERVERAPI + "/rest/scjg/gtgshjbxxyz",
    method: "post",
    data,
  });
}
/**
 * @description: 中编办机构信息查询
 * @param {*} data
 * @author:
 */
export function xydm(data) {
  return request({
    url: SERVER.SERVERAPI + "/rest/bj/xydm",
    method: "post",
    data,
  });
}
/**
 * @description: 机构信息查询
 * @param {*} data
 * @author:
 */
export function jgxxcx(data) {
  return request({
    url: SERVER.SERVERAPI + "/rest/bj/mzbxydm",
    method: "post",
    data,
  });
}
/**
 * @description: 不动产登记信息查询
 * @param {*} data
 * @author:
 */
export function bdcdj(data) {
  return request({
    url: SERVER.SERVERAPI + "/rest/mzsf/mzt/bdcdj",
    method: "post",
    data,
  });
}
/**
 * @description: 电子营业执照
 * @param {*} data
 * @author:
 */
export function dzyyzz(data) {
  return request({
    url: SERVER.SERVERAPI + "/rest/scjg/dzyyzz",
    method: "post",
    data,
  });
}
/**
 * @description: 公证书信息查询
 * @param {*} data
 * @author:
 */
export function gzsxx(params) {
  return request({
    url: SERVER.SERVERAPI + "/rest/mzsf/sft/gzsxx",
    method: "get",
    params,
  });
}
/**
 * @description: 判决文书
 * @param {*} data
 * @author:
 */
export function pjws(data) {
  return request({
    url: SERVER.SERVERAPI + "/rest/bj/pjws",
    method: "post",
    data,
  });
}
/**
 * @description: 判决文书二次查询
 * @param {*} data
 * @author:
 */
export function pjwsDetail(data) {
  return request({
    url: SERVER.SERVERAPI + "/rest/bj/pjwsDetail",
    method: "post",
    data,
  });
}