1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
| import request from '@/utils/request'
|
| // 查询案例统计
| export function listanlstatistics(query) {
| return request({
| url: '/project/spstatcase/spStatCaselist',
| method: 'post',
| data: query
| })
| }
| // 查询绩效统计
| export function listjixstatistics(query) {
| return request({
| url: '/project/funddetail/getListBySpStatBonus',
| method: 'post',
| data: query
| })
| }
| // 查询报销统计
| export function listbxiaostatistics(query) {
| return request({
| url: '/project/spstatexpense/spStatExpenselist',
| method: 'post',
| data: query
| })
| }
| // 查询收费统计
| export function listsfeistatistics(query) {
| return request({
| url: '/project/donorchargeorgan/getListBySpStatChange',
| method: 'post',
| data: query
| })
| }
|
|