Blame view

src/api/jtfc.js 511 Bytes
jiaozeping@pashanhoo.com committed
1
import request from '@/utils/request'
任超 committed
2
import SERVER from './config'
jiaozeping@pashanhoo.com committed
3 4 5
// 根据条件进行列表查询
export function getJtfcPage (data) {
  return request({
任超 committed
6
    url: SERVER.SERVERAPI + '/rest/sqcx/jtfc/getJtfcPage',
jiaozeping@pashanhoo.com committed
7 8 9 10 11 12 13
    method: 'post',
    data
  })
}
// 新增申请查询家庭房产信息
export function addJtfcCxjgXx (data) {
  return request({
任超 committed
14
    url: SERVER.SERVERAPI + '/rest/sqcx/jtfc/addJtfcCxjgXx',
jiaozeping@pashanhoo.com committed
15 16 17 18 19 20
    method: 'post',
    data,
    showLoading: true,
    loadingTarget: '正在查询中...'
  })
}