/* * @Description: 信息备案 * @Autor: * @LastEditTime: 2023-09-11 11:25:22 */ import request from '@/utils/request' let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) /** * @description: 添加银行 * @author: * @param params */ export function queryBj (params) { return request({ url: SERVER.SERVERAPI + '/rest/wwsq/queryBj', method: 'get', params }) } /** * @description: getSqr * @author: * @param ywh */ export function getSqr (ywh) { return request({ url: SERVER.SERVERAPI + '/rest/wwsq/getSqr', method: 'get', params: { ywh: ywh } }) } /** * @description: getSqr * @author: * @param ywh */ export function getBdcqk (ywh) { return request({ url: SERVER.SERVERAPI + '/rest/wwsq/getBdcqk', method: 'get', params: { ywh: ywh } }) } /** * @description: getSqr * @author: * @param ywh */ export function getTreeNodeList (ywh) { return request({ url: SERVER.SERVERAPI + '/rest/fjcl/getTreeNodeList', method: 'get', params: { ywh: ywh } }) } /** * @description: getSqr * @author: * @param datumId */ export function getFjnrById (datumId) { return request({ url: SERVER.SERVERAPI + '/rest/fjcl/getFjnrById', method: 'get', params: { datumId: datumId } }) }