董国庆
2025-06-25 d8d68a0aee93073b5ec3195368ca0ed1076f66a2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import axios from '@/utils/request';
 
// 项目组总积分分页列表
export const pageList = (data) => {
    return axios.post('/api/t-feasibility-study-report/pageList', { ...data })
}
// 评定
export const evaluate = (data) => {
    return axios.put(`/open/t-feasibility-study-report/evaluate?id=${data.id}&evaluateScore=${data.evaluateScore}`, { params:data })
}
// 查看详情
export const evaluateDetail = (data) => {
    return axios.get('/open/t-feasibility-study-report/evaluateDetail', { params:data })
}
// 统计
export const evaluateCount = (data) => {
    return axios.post('/api/t-feasibility-study-report/evaluateCount', {...data })
}