swhtxx.js
776 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
* @Description:
* @Autor: renchao
* @LastEditTime: 2024-03-21 15:43:56
*/
import request from '@/utils/request'
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
/**
* @description: 获取明细信息
* @param {*} bsmSlsq
* @param {*} bestepid
* @author: renchao
*/
export function getDetail (bsmSldy) {
return request({
url: SERVER.SERVERAPI + '/rest/ywbl/swhtxx/getDetail',
method: 'get',
params: {
bsmSldy: bsmSldy
}
})
}
/**
* @description: 读取权利人信息
* @param {*} bsmSldy
* @author: renchao
*/
export function loadQlrxx (bsmSldy) {
return request({
url: SERVER.SERVERAPI + '/rest/ywbl/swhtxx/loadQlrxx',
method: 'get',
params: {
bsmSldy: bsmSldy
}
})
}