djyw.js 519 Bytes
/*
 * @Description: 登记业务信息接口
 * @Autor: renchao
 * @LastEditTime: 2023-09-15 14:16:20
 */
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
    }
  })
}