sjsbFunctionOper.js
733 Bytes
/*
* @Description :数据上报表头的api文件
* @Autor : miaofang
* @LastEditTime : 2023-05-17 10:52:42
*/
import request from '@/utils/request'
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class sjsbFunctionOper {
// 数据上报表头相关接口
async getQltFwFdcqYzByCondition (id) {
return request({
url: '/sjsbFunctionOper/getSjsbTableInfo',
method: 'get',
params: {
msgId: id
}
})
}
// xml
async queryXML (id) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/sjsbFunctionOper/queryXML',
method: 'get',
params: {
msgid: id
}
})
}
}
export default new sjsbFunctionOper()