添加
diff --git a/ruoyi-pill/src/main/resources/mapper/pill/PillFactoryMapper.xml b/ruoyi-pill/src/main/resources/mapper/pill/PillFactoryMapper.xml
index 27e387d..b9cee94 100644
--- a/ruoyi-pill/src/main/resources/mapper/pill/PillFactoryMapper.xml
+++ b/ruoyi-pill/src/main/resources/mapper/pill/PillFactoryMapper.xml
@@ -3,8 +3,8 @@
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
-
-
+
+
@@ -20,12 +20,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
- select factory_id, factory_name, factory_code, contact, phone, keyword, status, create_by, create_time, update_by, update_time, remark from pill_factory
+ select factory_id, factory_name, factory_code, contact, phone, keyword, status, create_by, create_time, update_by, update_time, remark
+ from ruoyi.pill_factory
-
\ No newline at end of file
+
diff --git a/ruoyi-ui/public/html/ie.html b/ruoyi-ui/public/html/ie.html
index 390ce8a..f7d9dcf 100644
--- a/ruoyi-ui/public/html/ie.html
+++ b/ruoyi-ui/public/html/ie.html
@@ -1,46 +1,46 @@
-
-
-
-
-
- 请升级您的浏览器
-
-
-
-
-
-
-请升级您的浏览器,以便我们更好的为您提供服务!
-您正在使用 Internet Explorer 的早期版本(IE11以下版本或使用该内核的浏览器)。这意味着在升级浏览器前,您将无法访问此网站。
-
-请注意:微软公司对Windows XP 及 Internet Explorer 早期版本的支持已经结束
-自 2016 年 1 月 12 日起,Microsoft 不再为 IE 11 以下版本提供相应支持和更新。没有关键的浏览器安全更新,您的电脑可能易受有害病毒、间谍软件和其他恶意软件的攻击,它们可以窃取或损害您的业务数据和信息。请参阅 微软对 Internet Explorer 早期版本的支持将于 2016 年 1 月 12 日结束的说明 。
-
-您可以选择更先进的浏览器
-推荐使用以下浏览器的最新版本。如果您的电脑已有以下浏览器的最新版本则直接使用该浏览器访问即可。
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+ 请升级您的浏览器
+
+
+
+
+
+
+请升级您的浏览器,以便我们更好的为您提供服务!
+您正在使用 Internet Explorer 的早期版本(IE11以下版本或使用该内核的浏览器)。这意味着在升级浏览器前,您将无法访问此网站。
+
+请注意:微软公司对Windows XP 及 Internet Explorer 早期版本的支持已经结束
+自 2016 年 1 月 12 日起,Microsoft 不再为 IE 11 以下版本提供相应支持和更新。没有关键的浏览器安全更新,您的电脑可能易受有害病毒、间谍软件和其他恶意软件的攻击,它们可以窃取或损害您的业务数据和信息。请参阅 微软对 Internet Explorer 早期版本的支持将于 2016 年 1 月 12 日结束的说明 。
+
+您可以选择更先进的浏览器
+推荐使用以下浏览器的最新版本。如果您的电脑已有以下浏览器的最新版本则直接使用该浏览器访问即可。
+
+
+
+
diff --git a/ruoyi-ui/public/index.html b/ruoyi-ui/public/index.html
index 56fd45b..f89c242 100644
--- a/ruoyi-ui/public/index.html
+++ b/ruoyi-ui/public/index.html
@@ -1,208 +1,208 @@
-
-
-
-
-
-
-
-
- <%= webpackConfig.name %>
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ <%= webpackConfig.name %>
+
+
+
+
+
+
+
diff --git a/ruoyi-ui/src/api/crops/acquisition.js b/ruoyi-ui/src/api/crops/acquisition.js
new file mode 100644
index 0000000..b666a93
--- /dev/null
+++ b/ruoyi-ui/src/api/crops/acquisition.js
@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询数据采集列表
+export function listAcquisition(query) {
+ return request({
+ url: '/crops/acquisition/list',
+ method: 'get',
+ params: query
+ })
+}
+
+// 查询数据采集详细
+export function getAcquisition(id) {
+ return request({
+ url: '/crops/acquisition/' + id,
+ method: 'get'
+ })
+}
+
+// 新增数据采集
+export function addAcquisition(data) {
+ return request({
+ url: '/crops/acquisition',
+ method: 'post',
+ data: data
+ })
+}
+
+// 修改数据采集
+export function updateAcquisition(data) {
+ return request({
+ url: '/crops/acquisition',
+ method: 'put',
+ data: data
+ })
+}
+
+// 删除数据采集
+export function delAcquisition(id) {
+ return request({
+ url: '/crops/acquisition/' + id,
+ method: 'delete'
+ })
+}
diff --git a/ruoyi-ui/src/api/crops/drought.js b/ruoyi-ui/src/api/crops/drought.js
new file mode 100644
index 0000000..e3e14f6
--- /dev/null
+++ b/ruoyi-ui/src/api/crops/drought.js
@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询作物旱情列表
+export function listDrought(query) {
+ return request({
+ url: '/crops/drought/list',
+ method: 'get',
+ params: query
+ })
+}
+
+// 查询作物旱情详细
+export function getDrought(id) {
+ return request({
+ url: '/crops/drought/' + id,
+ method: 'get'
+ })
+}
+
+// 新增作物旱情
+export function addDrought(data) {
+ return request({
+ url: '/crops/drought',
+ method: 'post',
+ data: data
+ })
+}
+
+// 修改作物旱情
+export function updateDrought(data) {
+ return request({
+ url: '/crops/drought',
+ method: 'put',
+ data: data
+ })
+}
+
+// 删除作物旱情
+export function delDrought(id) {
+ return request({
+ url: '/crops/drought/' + id,
+ method: 'delete'
+ })
+}
diff --git a/ruoyi-ui/src/api/crops/growth.js b/ruoyi-ui/src/api/crops/growth.js
new file mode 100644
index 0000000..15c8ee2
--- /dev/null
+++ b/ruoyi-ui/src/api/crops/growth.js
@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询作物长势列表
+export function listGrowth(query) {
+ return request({
+ url: '/crops/growth/list',
+ method: 'get',
+ params: query
+ })
+}
+
+// 查询作物长势详细
+export function getGrowth(id) {
+ return request({
+ url: '/crops/growth/' + id,
+ method: 'get'
+ })
+}
+
+// 新增作物长势
+export function addGrowth(data) {
+ return request({
+ url: '/crops/growth',
+ method: 'post',
+ data: data
+ })
+}
+
+// 修改作物长势
+export function updateGrowth(data) {
+ return request({
+ url: '/crops/growth',
+ method: 'put',
+ data: data
+ })
+}
+
+// 删除作物长势
+export function delGrowth(id) {
+ return request({
+ url: '/crops/growth/' + id,
+ method: 'delete'
+ })
+}
diff --git a/ruoyi-ui/src/api/crops/information.js b/ruoyi-ui/src/api/crops/information.js
new file mode 100644
index 0000000..7b97f0e
--- /dev/null
+++ b/ruoyi-ui/src/api/crops/information.js
@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询预警信息统计列表
+export function listInformation(query) {
+ return request({
+ url: '/crops/information/list',
+ method: 'get',
+ params: query
+ })
+}
+
+// 查询预警信息统计详细
+export function getInformation(id) {
+ return request({
+ url: '/crops/information/' + id,
+ method: 'get'
+ })
+}
+
+// 新增预警信息统计
+export function addInformation(data) {
+ return request({
+ url: '/crops/information',
+ method: 'post',
+ data: data
+ })
+}
+
+// 修改预警信息统计
+export function updateInformation(data) {
+ return request({
+ url: '/crops/information',
+ method: 'put',
+ data: data
+ })
+}
+
+// 删除预警信息统计
+export function delInformation(id) {
+ return request({
+ url: '/crops/information/' + id,
+ method: 'delete'
+ })
+}
diff --git a/ruoyi-ui/src/api/crops/meteorological.js b/ruoyi-ui/src/api/crops/meteorological.js
new file mode 100644
index 0000000..962f7ed
--- /dev/null
+++ b/ruoyi-ui/src/api/crops/meteorological.js
@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询气象预警列表
+export function listMeteorological(query) {
+ return request({
+ url: '/crops/meteorological/list',
+ method: 'get',
+ params: query
+ })
+}
+
+// 查询气象预警详细
+export function getMeteorological(id) {
+ return request({
+ url: '/crops/meteorological/' + id,
+ method: 'get'
+ })
+}
+
+// 新增气象预警
+export function addMeteorological(data) {
+ return request({
+ url: '/crops/meteorological',
+ method: 'post',
+ data: data
+ })
+}
+
+// 修改气象预警
+export function updateMeteorological(data) {
+ return request({
+ url: '/crops/meteorological',
+ method: 'put',
+ data: data
+ })
+}
+
+// 删除气象预警
+export function delMeteorological(id) {
+ return request({
+ url: '/crops/meteorological/' + id,
+ method: 'delete'
+ })
+}
diff --git a/ruoyi-ui/src/api/crops/prediction.js b/ruoyi-ui/src/api/crops/prediction.js
new file mode 100644
index 0000000..bba14d4
--- /dev/null
+++ b/ruoyi-ui/src/api/crops/prediction.js
@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询博兴天气列表
+export function listPrediction(query) {
+ return request({
+ url: '/crops/prediction/list',
+ method: 'get',
+ params: query
+ })
+}
+
+// 查询博兴天气详细
+export function getPrediction(id) {
+ return request({
+ url: '/crops/prediction/' + id,
+ method: 'get'
+ })
+}
+
+// 新增博兴天气
+export function addPrediction(data) {
+ return request({
+ url: '/crops/prediction',
+ method: 'post',
+ data: data
+ })
+}
+
+// 修改博兴天气
+export function updatePrediction(data) {
+ return request({
+ url: '/crops/prediction',
+ method: 'put',
+ data: data
+ })
+}
+
+// 删除博兴天气
+export function delPrediction(id) {
+ return request({
+ url: '/crops/prediction/' + id,
+ method: 'delete'
+ })
+}
diff --git a/ruoyi-ui/src/api/crops/records.js b/ruoyi-ui/src/api/crops/records.js
new file mode 100644
index 0000000..10d14d4
--- /dev/null
+++ b/ruoyi-ui/src/api/crops/records.js
@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询操作记录列表
+export function listRecords(query) {
+ return request({
+ url: '/crops/records/list',
+ method: 'get',
+ params: query
+ })
+}
+
+// 查询操作记录详细
+export function getRecords(id) {
+ return request({
+ url: '/crops/records/' + id,
+ method: 'get'
+ })
+}
+
+// 新增操作记录
+export function addRecords(data) {
+ return request({
+ url: '/crops/records',
+ method: 'post',
+ data: data
+ })
+}
+
+// 修改操作记录
+export function updateRecords(data) {
+ return request({
+ url: '/crops/records',
+ method: 'put',
+ data: data
+ })
+}
+
+// 删除操作记录
+export function delRecords(id) {
+ return request({
+ url: '/crops/records/' + id,
+ method: 'delete'
+ })
+}
diff --git a/ruoyi-ui/src/api/crops/sense.js b/ruoyi-ui/src/api/crops/sense.js
new file mode 100644
index 0000000..1b16605
--- /dev/null
+++ b/ruoyi-ui/src/api/crops/sense.js
@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询设备传感数据列表
+export function listSense(query) {
+ return request({
+ url: '/crops/sense/list',
+ method: 'get',
+ params: query
+ })
+}
+
+// 查询设备传感数据详细
+export function getSense(id) {
+ return request({
+ url: '/crops/sense/' + id,
+ method: 'get'
+ })
+}
+
+// 新增设备传感数据
+export function addSense(data) {
+ return request({
+ url: '/crops/sense',
+ method: 'post',
+ data: data
+ })
+}
+
+// 修改设备传感数据
+export function updateSense(data) {
+ return request({
+ url: '/crops/sense',
+ method: 'put',
+ data: data
+ })
+}
+
+// 删除设备传感数据
+export function delSense(id) {
+ return request({
+ url: '/crops/sense/' + id,
+ method: 'delete'
+ })
+}
diff --git a/ruoyi-ui/src/api/crops/statistics.js b/ruoyi-ui/src/api/crops/statistics.js
new file mode 100644
index 0000000..9e0c39d
--- /dev/null
+++ b/ruoyi-ui/src/api/crops/statistics.js
@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询接口数据量统计列表
+export function listStatistics(query) {
+ return request({
+ url: '/crops/statistics/list',
+ method: 'get',
+ params: query
+ })
+}
+
+// 查询接口数据量统计详细
+export function getStatistics(id) {
+ return request({
+ url: '/crops/statistics/' + id,
+ method: 'get'
+ })
+}
+
+// 新增接口数据量统计
+export function addStatistics(data) {
+ return request({
+ url: '/crops/statistics',
+ method: 'post',
+ data: data
+ })
+}
+
+// 修改接口数据量统计
+export function updateStatistics(data) {
+ return request({
+ url: '/crops/statistics',
+ method: 'put',
+ data: data
+ })
+}
+
+// 删除接口数据量统计
+export function delStatistics(id) {
+ return request({
+ url: '/crops/statistics/' + id,
+ method: 'delete'
+ })
+}
diff --git a/ruoyi-ui/src/api/crops/structure.js b/ruoyi-ui/src/api/crops/structure.js
new file mode 100644
index 0000000..478005f
--- /dev/null
+++ b/ruoyi-ui/src/api/crops/structure.js
@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询作物种植结构列表
+export function listStructure(query) {
+ return request({
+ url: '/crops/structure/',
+ method: 'get',
+ params: query
+ })
+}
+
+// 查询作物种植结构详细
+export function getStructure(id) {
+ return request({
+ url: '/crops/structure/' + id,
+ method: 'get'
+ })
+}
+
+// 新增作物种植结构
+export function addStructure(data) {
+ return request({
+ url: '/crops/structure',
+ method: 'post',
+ data: data
+ })
+}
+
+// 修改作物种植结构
+export function updateStructure(data) {
+ return request({
+ url: '/crops/structure',
+ method: 'put',
+ data: data
+ })
+}
+
+// 删除作物种植结构
+export function delStructure(id) {
+ return request({
+ url: '/crops/structure/' + id,
+ method: 'delete'
+ })
+}
diff --git a/ruoyi-ui/src/api/crops/type.js b/ruoyi-ui/src/api/crops/type.js
new file mode 100644
index 0000000..1731def
--- /dev/null
+++ b/ruoyi-ui/src/api/crops/type.js
@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询服务类型列表
+export function listType(query) {
+ return request({
+ url: '/crops/type/list',
+ method: 'get',
+ params: query
+ })
+}
+
+// 查询服务类型详细
+export function getType(id) {
+ return request({
+ url: '/crops/type/' + id,
+ method: 'get'
+ })
+}
+
+// 新增服务类型
+export function addType(data) {
+ return request({
+ url: '/crops/type',
+ method: 'post',
+ data: data
+ })
+}
+
+// 修改服务类型
+export function updateType(data) {
+ return request({
+ url: '/crops/type',
+ method: 'put',
+ data: data
+ })
+}
+
+// 删除服务类型
+export function delType(id) {
+ return request({
+ url: '/crops/type/' + id,
+ method: 'delete'
+ })
+}
diff --git a/ruoyi-ui/src/api/crops/yield.js b/ruoyi-ui/src/api/crops/yield.js
new file mode 100644
index 0000000..9b399c3
--- /dev/null
+++ b/ruoyi-ui/src/api/crops/yield.js
@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询作物产量列表
+export function listYield(query) {
+ return request({
+ url: '/crops/yield/list',
+ method: 'get',
+ params: query
+ })
+}
+
+// 查询作物产量详细
+export function getYield(id) {
+ return request({
+ url: '/crops/yield/' + id,
+ method: 'get'
+ })
+}
+
+// 新增作物产量
+export function addYield(data) {
+ return request({
+ url: '/crops/yield',
+ method: 'post',
+ data: data
+ })
+}
+
+// 修改作物产量
+export function updateYield(data) {
+ return request({
+ url: '/crops/yield',
+ method: 'put',
+ data: data
+ })
+}
+
+// 删除作物产量
+export function delYield(id) {
+ return request({
+ url: '/crops/yield/' + id,
+ method: 'delete'
+ })
+}
diff --git a/ruoyi-ui/src/components/Crontab/index.vue b/ruoyi-ui/src/components/Crontab/index.vue
index 3963df2..f154a1e 100644
--- a/ruoyi-ui/src/components/Crontab/index.vue
+++ b/ruoyi-ui/src/components/Crontab/index.vue
@@ -374,7 +374,7 @@ export default {
margin-top: 20px;
}
.popup-main {
- position: relative;
+ machineryTrajectory: relative;
margin: 10px auto;
background: #fff;
border-radius: 5px;
@@ -393,10 +393,10 @@ export default {
margin: 25px auto;
padding: 15px 10px 10px;
border: 1px solid #ccc;
- position: relative;
+ machineryTrajectory: relative;
}
.popup-result .title {
- position: absolute;
+ machineryTrajectory: absolute;
top: -28px;
left: 50%;
width: 140px;
diff --git a/ruoyi-ui/src/components/FileUpload/index.vue b/ruoyi-ui/src/components/FileUpload/index.vue
index 6c583cf..d506478 100644
--- a/ruoyi-ui/src/components/FileUpload/index.vue
+++ b/ruoyi-ui/src/components/FileUpload/index.vue
@@ -201,7 +201,7 @@ export default {
border: 1px solid #e4e7ed;
line-height: 2;
margin-bottom: 10px;
- position: relative;
+ machineryTrajectory: relative;
}
.upload-file-list .ele-upload-list__item-content {
display: flex;
diff --git a/ruoyi-ui/src/components/IconSelect/index.vue b/ruoyi-ui/src/components/IconSelect/index.vue
index 2404321..0e4d467 100644
--- a/ruoyi-ui/src/components/IconSelect/index.vue
+++ b/ruoyi-ui/src/components/IconSelect/index.vue
@@ -58,7 +58,7 @@ export default {
width: 100%;
padding: 10px;
.icon-search {
- position: relative;
+ machineryTrajectory: relative;
margin-bottom: 5px;
}
.icon-list {
diff --git a/ruoyi-ui/src/components/PanThumb/index.vue b/ruoyi-ui/src/components/PanThumb/index.vue
index 796b01b..6b61906 100644
--- a/ruoyi-ui/src/components/PanThumb/index.vue
+++ b/ruoyi-ui/src/components/PanThumb/index.vue
@@ -1,142 +1,142 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/ruoyi-ui/src/components/RightPanel/index.vue b/ruoyi-ui/src/components/RightPanel/index.vue
index 25ce3f8..df4c423 100644
--- a/ruoyi-ui/src/components/RightPanel/index.vue
+++ b/ruoyi-ui/src/components/RightPanel/index.vue
@@ -1,106 +1,106 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/ruoyi-ui/src/layout/components/AppMain.vue b/ruoyi-ui/src/layout/components/AppMain.vue
index b7a87ae..b16d755 100644
--- a/ruoyi-ui/src/layout/components/AppMain.vue
+++ b/ruoyi-ui/src/layout/components/AppMain.vue
@@ -31,7 +31,7 @@ export default {
/* 50= navbar 50 */
min-height: calc(100vh - 50px);
width: 100%;
- position: relative;
+ machineryTrajectory: relative;
overflow: hidden;
}
diff --git a/ruoyi-ui/src/layout/components/Navbar.vue b/ruoyi-ui/src/layout/components/Navbar.vue
index 67a53ab..f6ad23b 100644
--- a/ruoyi-ui/src/layout/components/Navbar.vue
+++ b/ruoyi-ui/src/layout/components/Navbar.vue
@@ -1,200 +1,200 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ruoyi-ui/src/layout/components/Settings/index.vue b/ruoyi-ui/src/layout/components/Settings/index.vue
index 6759446..9435301 100644
--- a/ruoyi-ui/src/layout/components/Settings/index.vue
+++ b/ruoyi-ui/src/layout/components/Settings/index.vue
@@ -1,260 +1,260 @@
-
-
-
-
-
-
-
主题风格设置
-
-
-
-
-
-
-
-
-
-
-
-
-
- 主题颜色
-
-
-
-
-
-
-
系统布局配置
-
-
- 开启 TopNav
-
-
-
-
- 开启 Tags-Views
-
-
-
-
- 固定 Header
-
-
-
-
- 显示 Logo
-
-
-
-
- 动态标题
-
-
-
-
-
-
保存配置
-
重置配置
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
主题风格设置
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 主题颜色
+
+
+
+
+
+
+
系统布局配置
+
+
+ 开启 TopNav
+
+
+
+
+ 开启 Tags-Views
+
+
+
+
+ 固定 Header
+
+
+
+
+ 显示 Logo
+
+
+
+
+ 动态标题
+
+
+
+
+
+
保存配置
+
重置配置
+
+
+
+
+
+
+
+
diff --git a/ruoyi-ui/src/layout/components/Sidebar/Logo.vue b/ruoyi-ui/src/layout/components/Sidebar/Logo.vue
index c8401c5..061fc08 100644
--- a/ruoyi-ui/src/layout/components/Sidebar/Logo.vue
+++ b/ruoyi-ui/src/layout/components/Sidebar/Logo.vue
@@ -1,93 +1,93 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/ruoyi-ui/src/layout/components/TagsView/ScrollPane.vue b/ruoyi-ui/src/layout/components/TagsView/ScrollPane.vue
index c110bf1..26e672a 100644
--- a/ruoyi-ui/src/layout/components/TagsView/ScrollPane.vue
+++ b/ruoyi-ui/src/layout/components/TagsView/ScrollPane.vue
@@ -1,94 +1,94 @@
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
diff --git a/ruoyi-ui/src/layout/components/TagsView/index.vue b/ruoyi-ui/src/layout/components/TagsView/index.vue
index 1fc2323..aa219a1 100644
--- a/ruoyi-ui/src/layout/components/TagsView/index.vue
+++ b/ruoyi-ui/src/layout/components/TagsView/index.vue
@@ -1,332 +1,332 @@
-
-
-
-
- {{ tag.title }}
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+ {{ tag.title }}
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ruoyi-ui/src/layout/index.vue b/ruoyi-ui/src/layout/index.vue
index b7c9ab0..ca4a8e9 100644
--- a/ruoyi-ui/src/layout/index.vue
+++ b/ruoyi-ui/src/layout/index.vue
@@ -70,7 +70,7 @@ export default {
.app-wrapper {
@include clearfix;
- position: relative;
+ machineryTrajectory: relative;
height: 100%;
width: 100%;
@@ -81,13 +81,13 @@ export default {
::v-deep .el-scrollbar__bar.is-vertical {
z-index: 10;
}
-
+
::v-deep .el-scrollbar__wrap {
overflow-x: hidden;
}
&.mobile.openSidebar {
- position: fixed;
+ machineryTrajectory: fixed;
top: 0;
}
}
@@ -98,12 +98,12 @@ export default {
width: 100%;
top: 0;
height: 100%;
- position: absolute;
+ machineryTrajectory: absolute;
z-index: 999;
}
.fixed-header {
- position: fixed;
+ machineryTrajectory: fixed;
top: 0;
right: 0;
z-index: 9;
diff --git a/ruoyi-ui/src/views/crops/acquisition/index.vue b/ruoyi-ui/src/views/crops/acquisition/index.vue
new file mode 100644
index 0000000..2680e62
--- /dev/null
+++ b/ruoyi-ui/src/views/crops/acquisition/index.vue
@@ -0,0 +1,312 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+ 新增
+
+
+ 修改
+
+
+ 删除
+
+
+ 导出
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ parseTime(scope.row.time, '{y}-{m}-{d}') }}
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ruoyi-ui/src/views/crops/drought/index.vue b/ruoyi-ui/src/views/crops/drought/index.vue
new file mode 100644
index 0000000..90c1403
--- /dev/null
+++ b/ruoyi-ui/src/views/crops/drought/index.vue
@@ -0,0 +1,247 @@
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+ 新增
+
+
+ 修改
+
+
+ 删除
+
+
+ 导出
+
+
+
+
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ruoyi-ui/src/views/crops/growth/index.vue b/ruoyi-ui/src/views/crops/growth/index.vue
new file mode 100644
index 0000000..948094c
--- /dev/null
+++ b/ruoyi-ui/src/views/crops/growth/index.vue
@@ -0,0 +1,247 @@
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+ 新增
+
+
+ 修改
+
+
+ 删除
+
+
+ 导出
+
+
+
+
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ruoyi-ui/src/views/crops/information/index.vue b/ruoyi-ui/src/views/crops/information/index.vue
new file mode 100644
index 0000000..0261011
--- /dev/null
+++ b/ruoyi-ui/src/views/crops/information/index.vue
@@ -0,0 +1,301 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+ 新增
+
+
+ 修改
+
+
+ 删除
+
+
+ 导出
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ parseTime(scope.row.warningTime, '{y}-{m}-{d}') }}
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ruoyi-ui/src/views/crops/meteorological/index.vue b/ruoyi-ui/src/views/crops/meteorological/index.vue
new file mode 100644
index 0000000..7d8ff42
--- /dev/null
+++ b/ruoyi-ui/src/views/crops/meteorological/index.vue
@@ -0,0 +1,253 @@
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+ 新增
+
+
+ 修改
+
+
+ 删除
+
+
+ 导出
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ parseTime(scope.row.time, '{y}-{m}-{d}') }}
+
+
+
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ruoyi-ui/src/views/crops/prediction/index.vue b/ruoyi-ui/src/views/crops/prediction/index.vue
new file mode 100644
index 0000000..99afcc8
--- /dev/null
+++ b/ruoyi-ui/src/views/crops/prediction/index.vue
@@ -0,0 +1,334 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+ 新增
+
+
+ 修改
+
+
+ 删除
+
+
+ 导出
+
+
+
+
+
+
+
+
+
+ {{ parseTime(scope.row.weatherTime, '{y}-{m}-{d}') }}
+
+
+
+
+
+
+
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ruoyi-ui/src/views/crops/records/index.vue b/ruoyi-ui/src/views/crops/records/index.vue
new file mode 100644
index 0000000..59be8c8
--- /dev/null
+++ b/ruoyi-ui/src/views/crops/records/index.vue
@@ -0,0 +1,249 @@
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+ 新增
+
+
+ 修改
+
+
+ 删除
+
+
+ 导出
+
+
+
+
+
+
+
+
+
+ {{ parseTime(scope.row.updateTime, '{y}-{m}-{d}') }}
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ruoyi-ui/src/views/crops/sense/index.vue b/ruoyi-ui/src/views/crops/sense/index.vue
new file mode 100644
index 0000000..6944b49
--- /dev/null
+++ b/ruoyi-ui/src/views/crops/sense/index.vue
@@ -0,0 +1,316 @@
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+ 新增
+
+
+ 修改
+
+
+ 删除
+
+
+ 导出
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ parseTime(scope.row.time, '{y}-{m}-{d}') }}
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ruoyi-ui/src/views/crops/statistics/index.vue b/ruoyi-ui/src/views/crops/statistics/index.vue
new file mode 100644
index 0000000..5fbee82
--- /dev/null
+++ b/ruoyi-ui/src/views/crops/statistics/index.vue
@@ -0,0 +1,279 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+ 新增
+
+
+ 修改
+
+
+ 删除
+
+
+ 导出
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ parseTime(scope.row.time, '{y}-{m}-{d}') }}
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ruoyi-ui/src/views/crops/structure/index.vue b/ruoyi-ui/src/views/crops/structure/index.vue
new file mode 100644
index 0000000..999fc1b
--- /dev/null
+++ b/ruoyi-ui/src/views/crops/structure/index.vue
@@ -0,0 +1,260 @@
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+ 新增
+
+
+ 修改
+
+
+ 删除
+
+
+ 导出
+
+
+
+
+
+
+
+
+
+
+ {{ parseTime(scope.row.imageDate, '{y}-{m}-{d}') }}
+
+
+
+
+
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ruoyi-ui/src/views/crops/type/index.vue b/ruoyi-ui/src/views/crops/type/index.vue
new file mode 100644
index 0000000..401af7c
--- /dev/null
+++ b/ruoyi-ui/src/views/crops/type/index.vue
@@ -0,0 +1,279 @@
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+ 新增
+
+
+ 修改
+
+
+ 删除
+
+
+ 导出
+
+
+
+
+
+
+
+
+
+
+ {{ parseTime(scope.row.time, '{y}-{m}-{d}') }}
+
+
+
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ruoyi-ui/src/views/crops/yield/index.vue b/ruoyi-ui/src/views/crops/yield/index.vue
new file mode 100644
index 0000000..b94ed0d
--- /dev/null
+++ b/ruoyi-ui/src/views/crops/yield/index.vue
@@ -0,0 +1,244 @@
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+ 新增
+
+
+ 修改
+
+
+ 删除
+
+
+ 导出
+
+
+
+
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ruoyi-ui/src/views/dashboard/PanelGroup.vue b/ruoyi-ui/src/views/dashboard/PanelGroup.vue
index 8d3a73b..cc5cf7c 100644
--- a/ruoyi-ui/src/views/dashboard/PanelGroup.vue
+++ b/ruoyi-ui/src/views/dashboard/PanelGroup.vue
@@ -1,181 +1,181 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ruoyi-ui/src/views/error/404.vue b/ruoyi-ui/src/views/error/404.vue
index 666d27c..5bd1321 100644
--- a/ruoyi-ui/src/views/error/404.vue
+++ b/ruoyi-ui/src/views/error/404.vue
@@ -1,233 +1,233 @@
-
-
-
-
-
-
- 404错误!
-
-
- {{ message }}
-
-
- 对不起,您正在寻找的页面不存在。尝试检查URL的错误,然后按浏览器上的刷新按钮或尝试在我们的应用程序中找到其他内容。
-
-
- 返回首页
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+ 404错误!
+
+
+ {{ message }}
+
+
+ 对不起,您正在寻找的页面不存在。尝试检查URL的错误,然后按浏览器上的刷新按钮或尝试在我们的应用程序中找到其他内容。
+
+
+ 返回首页
+
+
+
+
+
+
+
+
+
diff --git a/ruoyi-ui/src/views/index_v1.vue b/ruoyi-ui/src/views/index_v1.vue
index 4828d88..1391b55 100644
--- a/ruoyi-ui/src/views/index_v1.vue
+++ b/ruoyi-ui/src/views/index_v1.vue
@@ -1,98 +1,98 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ruoyi-ui/src/views/login.vue b/ruoyi-ui/src/views/login.vue
index cdae8dc..feab46a 100644
--- a/ruoyi-ui/src/views/login.vue
+++ b/ruoyi-ui/src/views/login.vue
@@ -1,219 +1,219 @@
-
-
-
- 若依后台管理系统
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 记住密码
-
-
- 登 录
- 登 录 中...
-
-
- 立即注册
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+ 若依后台管理系统
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 记住密码
+
+
+ 登 录
+ 登 录 中...
+
+
+ 立即注册
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ruoyi-ui/src/views/register.vue b/ruoyi-ui/src/views/register.vue
index e4f2df6..c8cea53 100644
--- a/ruoyi-ui/src/views/register.vue
+++ b/ruoyi-ui/src/views/register.vue
@@ -1,209 +1,209 @@
-
-
-
- 若依后台管理系统
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 注 册
- 注 册 中...
-
-
- 使用已有账户登录
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+ 若依后台管理系统
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 注 册
+ 注 册 中...
+
+
+ 使用已有账户登录
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ruoyi-ui/src/views/system/dept/index.vue b/ruoyi-ui/src/views/system/dept/index.vue
index e502b4e..7b97438 100644
--- a/ruoyi-ui/src/views/system/dept/index.vue
+++ b/ruoyi-ui/src/views/system/dept/index.vue
@@ -114,7 +114,7 @@