You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
805 B

import request from '@/utils/request';
// 企业--基本信息==展示
export function getBasicInformationById(id) {
return request({
url: `/gysl/basicInformation/${id}`,
method: 'get'
});
}
// 企业--基本信息==修改
export function updateBasicInformation(data) {
return request({
url: `/gysl/basicInformation/edit`,
method: 'post',
data
});
}
// 通过主键查询单条基本信息(企业规划信息)
export function getProgrammeInformationById(id) {
return request({
url: `/gysl/planInformation/${id}`,
method: 'get'
});
}
// 修改规划信息
export function updateProgrammeInformation(data) {
return request({
url: `/gysl/planInformation/edit`,
method: 'post',
data
});
}