Blame view

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