Blame view

src/api/sqcx.js 1.68 KB
1 2 3 4 5
/*
 * @Description: 
 * @Autor: renchao
 * @LastEditTime: 2023-05-16 14:05:25
 */
jiaozeping@pashanhoo.com committed
6
import request from '@/utils/request'
7
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
8 9 10 11 12
/**
 * @description: 获取申请查询列表
 * @param {*} data
 * @author: renchao
 */
蔡俊立 committed
13
export function getSqcxPage (data) {
jiaozeping@pashanhoo.com committed
14
  return request({
蔡俊立 committed
15
    url: SERVER.SERVERAPI + '/rest/sqcx/jtfc/getSqcxPage',
蔡俊立 committed
16 17 18 19 20
    method: 'post',
    data
  })
}

21 22 23 24 25
/**
 * @description: 新增申请查询家庭房产信息
 * @param {*} data
 * @author: renchao
 */
任超 committed
26
export function addJtfcCxjgXx (data) {
jiaozeping@pashanhoo.com committed
27
  return request({
任超 committed
28
    url: SERVER.SERVERAPI + '/rest/sqcx/jtfc/addJtfcCxjgXx',
jiaozeping@pashanhoo.com committed
29
    method: 'post',
任超 committed
30
    data
jiaozeping@pashanhoo.com committed
31
  })
任超 committed
32
}
蔡俊立 committed
33

34 35 36 37 38
/**
 * @description: 新增申请查询房屋明细信息
 * @param {*} data
 * @author: renchao
 */
蔡俊立 committed
39 40 41 42 43 44 45 46
export function addFwmxCxjgXx (data) {
  return request({
    url: SERVER.SERVERAPI + '/rest/sqcx/jtfc/addFwmxCxjgXx',
    method: 'post',
    data
  })
}

47 48 49 50 51
/**
 * @description: 获取申请查询记录详细信息
 * @param {*} params
 * @author: renchao
 */
任超 committed
52 53 54 55 56 57 58
export function getJtfcInfo (params) {
  return request({
    url: SERVER.SERVERAPI + '/rest/sqcx/jtfc/getJtfcInfo/',
    method: 'get',
    params
  })
}
蔡俊立 committed
59

60 61 62 63 64
/**
 * @description: 获取房屋明细记录详细信息
 * @param {*} params
 * @author: renchao
 */
蔡俊立 committed
65 66 67 68 69 70 71 72
export function getFwmxInfo (params) {
  return request({
    url: SERVER.SERVERAPI + '/rest/sqcx/jtfc/getFwmxInfo/',
    method: 'get',
    params
  })
}

73 74 75 76 77
/**
 * @description: 打印家庭房产
 * @param {*} data
 * @author: renchao
 */
蔡俊立 committed
78 79 80 81 82 83 84
export function printJtcfInfo (data) {
  return request({
    url: SERVER.SERVERAPI + '/rest/sqcx/jtfc/printJtcfInfo/',
    method: 'post',
    data
  })
}