tanghaolin
2025-04-20 fe4b76e24c82abf35afaaa07f3e681ba14ee2d80
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";
export const GetParaPageInfo = ()=>{
    return request ({
        url:"v3/Web/SelectByParas/GetParaPageInfo",
        method:'get'
    })
}
export const GetLibrary4XPump = ()=>{
    return request ({
        url:"v3/JieZhi/GetLibrary4XPump",
        method:'get'
    })
}
 
export const CalcJieZhiInfo = (data)=>{
    return request ({
        url:"v3/JieZhi/CalcJieZhiInfo",
        method:'get',
        params:data
    })
}
 
export const GetPageList = (data)=>{
    return request ({
        url:"v3/Web/SelectByParas/GetPageList",
        method:'post',
        data:data
    })
}