kttZhjbxx.js
552 Bytes
import request from '@/utils/request'
let SERVER = JSON.parse(localStorage.getItem('ApiUrl'))
class kttZhjbxx {
//宗海基本信息
async getKttZhjbxxById (bsmSjsb) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/KttZhjbxx/detail',
method: 'get',
params: {
bsmSjsb: bsmSjsb
}
})
}
//修改宗海基本信息
async updateKttZhjbxx (data) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/KttZhjbxx/edit',
method: 'post',
data
})
}
}
export default new kttZhjbxx()