气象站监测页面完成
8
.idea/.gitignore
vendored
Normal 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
|
9
.idea/Agriculture-front-end.iml
Normal 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
@ -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
@ -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
@ -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
@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="VcsDirectoryMappings">
|
||||||
|
<mapping directory="" vcs="Git" />
|
||||||
|
</component>
|
||||||
|
</project>
|
@ -14485,7 +14485,7 @@ goog.require('ol.math');
|
|||||||
*
|
*
|
||||||
* @constructor
|
* @constructor
|
||||||
* @extends {ol.geom.SimpleGeometry}
|
* @extends {ol.geom.SimpleGeometry}
|
||||||
* @param {ol.Coordinate} coordinates Coordinates.
|
* @param {number[]} coordinates Coordinates.
|
||||||
* @param {ol.geom.GeometryLayout=} opt_layout Layout.
|
* @param {ol.geom.GeometryLayout=} opt_layout Layout.
|
||||||
* @api
|
* @api
|
||||||
*/
|
*/
|
||||||
@ -56872,7 +56872,7 @@ goog.require('ol.geom.flat.deflate');
|
|||||||
*
|
*
|
||||||
* @constructor
|
* @constructor
|
||||||
* @extends {ol.geom.SimpleGeometry}
|
* @extends {ol.geom.SimpleGeometry}
|
||||||
* @param {ol.Coordinate} center Center.
|
* @param {*[]} center Center.
|
||||||
* @param {number=} opt_radius Radius.
|
* @param {number=} opt_radius Radius.
|
||||||
* @param {ol.geom.GeometryLayout=} opt_layout Layout.
|
* @param {ol.geom.GeometryLayout=} opt_layout Layout.
|
||||||
* @api
|
* @api
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
import request from '@/utils/request'
|
import request from '@/utils/request'
|
||||||
|
|
||||||
|
|
||||||
export function getreturnToMonitoringTime(query) {
|
export function getreturnToMonitoringTime(query) {
|
||||||
return request({
|
return request({
|
||||||
url: 'equipment/returnToMonitoringTime',
|
url: 'equipment/returnToMonitoringTime',
|
||||||
method: 'get',
|
method: 'get',
|
||||||
@ -9,7 +9,7 @@ export function getreturnToMonitoringTime(query) {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
export function getmeteorologicalFreeze(query) {
|
export function getmeteorologicalFreeze(query) {
|
||||||
return request({
|
return request({
|
||||||
url: 'equipment/meteorologicalFreeze',
|
url: 'equipment/meteorologicalFreeze',
|
||||||
method: 'get',
|
method: 'get',
|
||||||
@ -17,7 +17,7 @@ export function getmeteorologicalFreeze(query) {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
export function getsendSms(data) {
|
export function getsendSms(data) {
|
||||||
return request({
|
return request({
|
||||||
url: 'equipment/sendSms',
|
url: 'equipment/sendSms',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
@ -25,11 +25,34 @@ export function getsendSms(data) {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
export function getmeteorologyEquipment(data) {
|
export function getmeteorologyEquipment(data) {
|
||||||
return request({
|
return request({
|
||||||
url: 'equipment/meteorologicals',
|
url: 'equipment/meteorologicals',
|
||||||
method: 'post',
|
method: 'get',
|
||||||
data: data
|
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',
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
BIN
src/assets/images/ganhan0.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
src/assets/images/ganhan1.png
Normal file
After Width: | Height: | Size: 991 B |
BIN
src/assets/images/ganhan2.png
Normal file
After Width: | Height: | Size: 897 B |
BIN
src/assets/images/ganhan3.png
Normal file
After Width: | Height: | Size: 999 B |
BIN
src/assets/images/ganhan4.png
Normal file
After Width: | Height: | Size: 995 B |
BIN
src/assets/images/personSelected.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
src/assets/images/personUnselected.png
Normal file
After Width: | Height: | Size: 1.6 KiB |