swhtxx.js 1.27 KB
/*
 * @Description: 
 * @Autor: renchao
 * @LastEditTime: 2024-03-21 15:43:56
 */
import request from '@/utils/request'
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))

/**
 * @description: 获取明细信息
 * @param {*} bsmSlsq
 * @param {*} bestepid
 * @author: renchao
 */
export function getDetail (bsmSldy) {
  return request({
    url: SERVER.SERVERAPI + '/rest/ywbl/swhtxx/getDetail',
    method: 'get',
    params: {
      bsmSldy: bsmSldy
    }
  })
}
/**
 * @description: 读取权利人信息
 * @param {*} bsmSldy
 * @author: renchao
 */
export function loadQlrxx (bsmSldy) {
  return request({
    url: SERVER.SERVERAPI + '/rest/ywbl/swhtxx/loadQlrxx',
    method: 'get',
    params: {
      bsmSldy: bsmSldy
    }
  })
}

/**
 * @description: 查询房产交易合同信息
 * @param {*} bsmSldy
 * @author: renchao
 */
export function queryTransactionDetails (data) {
  return request({
    url: SERVER.SERVERAPI + '/rest/ywbl/swhtxx/queryTransactionDetails',
    method: 'post',
    data
  })
}

/**
 * @description: 契税完税信息共享
 * @param {*} bsmSldy
 * @author: renchao
 */
export function querySwwsxx (data) {
  return request({
    url: SERVER.SERVERAPI + '/rest/ywbl/swhtxx/querySwwsxx',
    method: 'post',
    data
  })
}