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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
| import axios from "@/assets/js/axios";
|
| /**
| * 查询台站列表
| */
| export const getStation = () => {
| return axios({
| method: "GET",
| url: "station/getStation"
| })
| }
|
| /**
| * 台站下添加文件
| */
| export const addFileInStation = (params) => {
| return axios({
| method: "GET",
| url: "stationInfo/addFileInStation",
| params
| })
| }
| /**
| * 添加台站
| */
| export const addStation = (params) => {
| return axios({
| method: "GET",
| url: "stationInfo/addStation",
| params
| })
| }
| /**
| * 删除台站
| */
| export const deleteStation = (params) => {
| return axios({
| method: "GET",
| url: "stationInfo/deleteStation",
| params
| })
| }
| /**
| * 编辑台站
| */
| export const updateStation = (params) => {
| return axios({
| method: "GET",
| url: "stationInfo/updateStation",
| params
| })
| }
| /**
| * 解析xml文件
| */
| export const getXmlValue = (params) => {
| return axios({
| method: "GET",
| url: "fileInfo/getXmlValue",
| params
| })
| }
|
|