zhengpz
2021-07-29 5f02eb6289bad2b570f403d44c49255240130202
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import request from "@/router/axios";
export const getCompanys = (params) => {
    return request({
        url: "/api/information/selectIn",
        method: "post",
        params:params
    });
};
export const selectPCount = (params) => {
    return request({
        url: "/api/information/selectPCount",
        method: "post",
        params:params
    });
};