| 1234567891011121314151617 |
- import request from '@/sheep/request';
- const projectDetailAPI = {
- // 项目详情信息
- getProjectDetailInfo: (data) => {
- return request({
- url: '/client/service/project/'+data.id,
- method: 'get',
- custom: {
- showSuccess: true,
- loadingMsg: '加载中...',
- },
- });
- }
- }
- export default projectDetailAPI;
|