kttZhjbxx.js 848 Bytes
/*
 * @Description  :宗海基本信息api文件
 * @Autor        : miaofang
 * @LastEditTime : 2023-05-17 10:39:09
 */
import request from '@/utils/request'
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))

class kttZhjbxx {
  /**
   * @description: 宗海基本信息
   * @param {*} bsmSjsb
   * @author: renchao
   */
  async getKttZhjbxxById (bsmSjsb) {
    return request({
      url: SERVER.SERVERAPI + '/rest/reg/KttZhjbxx/detail',
      method: 'get',
      params: {
        bsmSjsb: bsmSjsb
      }
    })
  }
  /**
   * @description: 修改宗海基本信息
   * @param {*} data
   * @author: renchao
   */
  async updateKttZhjbxx (data) {
    return request({
      url: SERVER.SERVERAPI + '/rest/reg/KttZhjbxx/edit',
      method: 'post',
      data
    })
  }
}
export default new kttZhjbxx()