1
wwl
2025-03-12 1ac61011eb11a7d66f399abe1cf8b6b6fa2f9071
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import request1 from "@/utils/request1";
 
export function histongbulist() {
  return request1({
    url: "/list",
    method: "get",
  });
}
 
export function histongbuexec() {
  return request1({
    url: "/exec",
    method: "get",
  });
}
 
export function hisexec(data) {
  return request1({
    url: "/exec",
    method: "post",
    data:data
  });
}