Blame view

src/api/zttGyQlr.js 732 Bytes
xiaomiao committed
1 2 3 4 5
/*
 * @Description  :权利人 -- 业务表单的api文件
 * @Autor        : miaofang
 * @LastEditTime : 2023-05-17 10:57:52
 */
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
import request from "@/utils/request";
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))

class zttGyQlr {
  // 权利人 -- 业务表单
  async getZttGyQlrById (bsmSjsb) {
    return request({
      url: SERVER.SERVERAPI + "/rest/reg/ZttGyQlr/detail",
      method: "get",
      params: {
        bsmSjsb: bsmSjsb,
      },
    });
  }
  // 权利人 -- 业务表单修改
  async updateZttGyQlr (data) {
    return request({
      url: SERVER.SERVERAPI + "/rest/reg/ZttGyQlr/edit",
      method: "post",
      data,
    });
  }
}
export default new zttGyQlr();