cqf
2022-06-15 db97f4d5bfa03e22480f171dcca6dc32ee31f239
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
import request from '@/utils/request';
import {getTokenAndVerify} from "@/api/sgyhpczl/auth";
 
 
export function chart_analysis(data) {
    return request({
        headers:{
            'token': getTokenAndVerify().token,
            'verify':getTokenAndVerify().verify
        },
        url: "/taboi/danger/chart_analysis",
        contentType: "application/json",
        method: 'POST',
        data
    });
}
 
export function chart_compare(data) {
    return request({
        headers:{
            'token': getTokenAndVerify().token,
            'verify':getTokenAndVerify().verify
        },
        url: "/taboi/danger/chart_compare",
        contentType: "application/json",
        method: 'POST',
        data
    });
}