气象站监测页面完成

This commit is contained in:
jiangzhongzhi 2023-07-05 13:56:04 +08:00
parent 7c2a51edff
commit 2940fc66fc
16 changed files with 1247 additions and 1474 deletions

8
.idea/.gitignore vendored Normal file
View File

@ -0,0 +1,8 @@
# Default ignored files
/shelf/
/workspace.xml
# Editor-based HTTP Client requests
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

9
.idea/libraries/dist.xml Normal file
View File

@ -0,0 +1,9 @@
<component name="libraryTable">
<library name="dist">
<CLASSES>
<root url="jar://$PROJECT_DIR$/dist.zip!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
</library>
</component>

6
.idea/misc.xml Normal file
View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectRootManager">
<output url="file://$PROJECT_DIR$/out" />
</component>
</project>

8
.idea/modules.xml Normal file
View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/Agriculture-front-end.iml" filepath="$PROJECT_DIR$/.idea/Agriculture-front-end.iml" />
</modules>
</component>
</project>

6
.idea/vcs.xml Normal file
View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="" vcs="Git" />
</component>
</project>

View File

@ -14485,7 +14485,7 @@ goog.require('ol.math');
*
* @constructor
* @extends {ol.geom.SimpleGeometry}
* @param {ol.Coordinate} coordinates Coordinates.
* @param {number[]} coordinates Coordinates.
* @param {ol.geom.GeometryLayout=} opt_layout Layout.
* @api
*/
@ -56872,7 +56872,7 @@ goog.require('ol.geom.flat.deflate');
*
* @constructor
* @extends {ol.geom.SimpleGeometry}
* @param {ol.Coordinate} center Center.
* @param {*[]} center Center.
* @param {number=} opt_radius Radius.
* @param {ol.geom.GeometryLayout=} opt_layout Layout.
* @api

View File

@ -1,7 +1,7 @@
import request from '@/utils/request'
export function getreturnToMonitoringTime(query) {
export function getreturnToMonitoringTime(query) {
return request({
url: 'equipment/returnToMonitoringTime',
method: 'get',
@ -9,7 +9,7 @@ export function getreturnToMonitoringTime(query) {
})
}
export function getmeteorologicalFreeze(query) {
export function getmeteorologicalFreeze(query) {
return request({
url: 'equipment/meteorologicalFreeze',
method: 'get',
@ -17,7 +17,7 @@ export function getmeteorologicalFreeze(query) {
})
}
export function getsendSms(data) {
export function getsendSms(data) {
return request({
url: 'equipment/sendSms',
method: 'post',
@ -25,11 +25,34 @@ export function getsendSms(data) {
})
}
export function getmeteorologyEquipment(data) {
export function getmeteorologyEquipment(data) {
return request({
url: 'equipment/meteorologicals',
method: 'post',
data: data
method: 'get',
params: data
})
}
export function meteorologicalsPeople () {
return request({
url: 'equipment/meteorologicalsPeople',
method: 'post',
})
}
export function meteorology (data) {
return request({
url: '/equipment/meteorology',
method: 'get',
params:data
})
}
export function zdmc () {
return request({
url: '/equipment/zdmc ',
method: 'get',
})
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 991 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 897 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 999 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 995 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

File diff suppressed because one or more lines are too long