diff --git a/sub-government-affairs-service/src/apis/inputSuppliesApi/material.js b/sub-government-affairs-service/src/apis/inputSuppliesApi/material.js
index 979f53b..73eea46 100644
--- a/sub-government-affairs-service/src/apis/inputSuppliesApi/material.js
+++ b/sub-government-affairs-service/src/apis/inputSuppliesApi/material.js
@@ -17,21 +17,29 @@ export function getPesticideList(params) {
}
/* 新增农药 */
export function addPesticide(data) {
- return request('/inputGoods/pesticide/save', {
+ return request('/inputGoods/supervise/pesticide/save', {
method: 'POST',
data,
});
}
-/* 农药检测报告 */
+/* 编辑农药 */
export function pesticideReportSave(data) {
- return request('/inputGoods/pesticide/uploadReport', {
+ return request('/inputGoods/supervise/pesticide/edit', {
data,
method: 'PUT',
});
}
/* 删除农药 */
export function delPesticide(ids) {
- return request(`/inputGoods/pesticide/delete/${ids}`);
+ return request(`/inputGoods/supervise/pesticide/delete/${ids}`);
+}
+/* 获取用药地块下拉选项 */
+export function getLandList() {
+ return request(`/inputGoods/supervise/pesticide/getLandList`);
+}
+/* 获取农药用药下拉选项 */
+export function getPesticideSelectList() {
+ return request(`/inputGoods/pesticide/getPesticideList`);
}
// #endregion
diff --git a/sub-government-affairs-service/src/components/FileUploader/index.vue b/sub-government-affairs-service/src/components/FileUploader/index.vue
index 808d766..62afe0c 100644
--- a/sub-government-affairs-service/src/components/FileUploader/index.vue
+++ b/sub-government-affairs-service/src/components/FileUploader/index.vue
@@ -2,6 +2,7 @@
diff --git a/sub-government-affairs-service/src/styles/custom.scss b/sub-government-affairs-service/src/styles/custom.scss
index 5668ff8..4c81671 100644
--- a/sub-government-affairs-service/src/styles/custom.scss
+++ b/sub-government-affairs-service/src/styles/custom.scss
@@ -5,6 +5,11 @@
border-radius: 10px;
background: #fff;
+ .custom-h2 {
+ margin: 14px 0 0 20px;
+ font-size: 24px;
+ }
+
.search-box {
overflow: hidden;
padding: 16px 8px 0 16px;
@@ -303,6 +308,7 @@
}
// 新增商品页面-结束
+// 弹性布局-左对齐-上对齐
.flex-left-top {
display: flex;
flex-direction: row;
@@ -316,4 +322,27 @@
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
+}
+
+// 弹窗表单样式-子元素一行2个列
+.dialog-form-container {
+ .dialog-form-title {
+ font-weight: bold;
+ margin-bottom: 20px;
+ }
+ .dialog-form-item{
+ margin-right: 20px;
+ .el-input,
+ .el-select {
+ width: 230px;
+ }
+ }
+ .dialog-form-many {
+ position: relative;
+ .dialog-form-many-delete {
+ position: absolute;
+ top: 28px;
+ right: 0;
+ }
+ }
}
\ No newline at end of file
diff --git a/sub-government-affairs-service/src/views/inputSuppliesManage/material/pesticide/index.vue b/sub-government-affairs-service/src/views/inputSuppliesManage/material/pesticide/index.vue
index 5b1888d..cc955d8 100644
--- a/sub-government-affairs-service/src/views/inputSuppliesManage/material/pesticide/index.vue
+++ b/sub-government-affairs-service/src/views/inputSuppliesManage/material/pesticide/index.vue
@@ -1,6 +1,7 @@
+
农药使用监管
-
-
-
-
-
+
+
+ 农药用药详情
+
+
+
+
+
+
+
+
+
+
+
+ 土地残留检测
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 农药用药信息
+ 添加用药信息
+
+
@@ -61,11 +164,14 @@
-
+