djyw.js 875 Bytes
/*
 * @Description: 登记业务信息接口
 * @Autor: renchao
 * @LastEditTime: 2023-09-18 14:22:02
 */
import request from '@/utils/request'
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
/**
 * @description: 根据业务号查询系统参数数据
 * @param {*} ywh
 * @author: renchao
 */
export function getXtParamsByYwh (ywh) {
  return request({
    url: SERVER.SERVERAPI + '/rest/ywbl/djyw/getXtParamsByYwh',
    method: 'get',
    params: {
      ywh: ywh
    }
  })
}

/**
 * @description: 根据业务号查询补录参数数据
 * @param {*} ywh
 * @param {*} bsmQlxx
 * @author: renchao
 */
export function getBlParamsByYwh (ywh, bsmQlxx) {
  return request({
    url: SERVER.SERVERAPI + '​/rest​/ywbl​/djyw​/getBlParamsByYwh',
    method: 'get',
    params: {
      ywh: ywh,
      bsmQlxx: bsmQlxx
    }
  })
}