From 29bb28b69adab9858f0613111f5e4d32ef9eb8a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=B2=88=E9=B8=BF?= Date: Fri, 27 Jun 2025 16:37:34 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E4=BA=A7=E5=87=BA=E5=93=81=E4=BF=A1?= =?UTF-8?q?=E6=81=AF=E5=A4=9A=E9=80=89=E3=80=81=E6=93=8D=E4=BD=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/output-products/output-info/index.vue | 9 +++------ .../src/views/output-products/output-info/output.js | 7 +++++++ 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/sub-government-affairs-service/src/views/output-products/output-info/index.vue b/sub-government-affairs-service/src/views/output-products/output-info/index.vue index c0d4d84..c26321e 100644 --- a/sub-government-affairs-service/src/views/output-products/output-info/index.vue +++ b/sub-government-affairs-service/src/views/output-products/output-info/index.vue @@ -15,9 +15,6 @@ @current-change="handleCurrentChange" @size-change="handleSizeChange" > - @@ -150,7 +147,7 @@ const filterObject = (obj) => { const crudData = ref([]); const crudOptions = reactive({ ...CRUD_OPTIONS, - menu: false, + // menu: false, header: false, height: 'calc(100vh - 340px)', selection: true, @@ -202,13 +199,13 @@ const handleSizeChange = (val) => { const handleView = (row) => { isReadonly.value = true; formData.value = { ...row }; - dialogTitle.value = '查看网格'; + dialogTitle.value = '产出品信息'; visible.value = true; }; const handleEdit = (row) => { isReadonly.value = false; formData.value = { ...row }; - dialogTitle.value = '编辑网格'; + dialogTitle.value = '编辑'; visible.value = true; }; const handleDelete = async (row) => { diff --git a/sub-government-affairs-service/src/views/output-products/output-info/output.js b/sub-government-affairs-service/src/views/output-products/output-info/output.js index 1eb704d..8fb1a7d 100644 --- a/sub-government-affairs-service/src/views/output-products/output-info/output.js +++ b/sub-government-affairs-service/src/views/output-products/output-info/output.js @@ -1,5 +1,6 @@ export const mockData = [ { + id: '1', AreaCode: '530501', // 行政区划编码 gridCode: 'G001', // 网格编码 landCode: 'L001', // 地块编码 @@ -22,6 +23,7 @@ export const mockData = [ outputValue: 77952, }, { + id: '2', AreaCode: '530502', gridCode: 'G002', landCode: 'L002', @@ -43,6 +45,7 @@ export const mockData = [ outputValue: 116025, }, { + id: '3', AreaCode: '530503', gridCode: 'G003', landCode: 'L003', @@ -64,6 +67,7 @@ export const mockData = [ outputValue: 207200, }, { + id: '4', AreaCode: '530505', gridCode: 'G005', landCode: 'L005', @@ -85,6 +89,7 @@ export const mockData = [ outputValue: 112560, }, { + id: '5', AreaCode: '530506', gridCode: 'G006', landCode: 'L006', @@ -106,6 +111,7 @@ export const mockData = [ outputValue: 108000, }, { + id: '6', AreaCode: '530507', gridCode: 'G007', landCode: 'L007', @@ -127,6 +133,7 @@ export const mockData = [ outputValue: 198400, }, { + id: '7', AreaCode: '530508', gridCode: 'G008', landCode: 'L008', From f1e5031f20f067c1823e92da9ae39932ae19a881 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=83=AD=E6=B0=B8=E8=B6=85?= <2090205686@qq.com> Date: Fri, 27 Jun 2025 16:46:39 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E6=8A=95=E5=85=A5=E5=93=81=E4=BD=BF?= =?UTF-8?q?=E7=94=A8=E7=9B=91=E7=AE=A1=EF=BC=88=E7=A7=8D=E5=AD=90=E5=92=8C?= =?UTF-8?q?=E8=82=A5=E6=96=99=EF=BC=89=E5=A2=9E=E5=88=A0=E6=94=B9=E5=BC=80?= =?UTF-8?q?=E5=8F=91=E5=AE=8C=E6=88=90=EF=BC=8C=E5=86=9C=E8=8D=AF=E4=BD=BF?= =?UTF-8?q?=E7=94=A8=E7=9B=91=E7=AE=A1=E5=BE=85=E5=8E=9F=E5=9E=8B=E7=A1=AE?= =?UTF-8?q?=E8=AE=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main/.env.development | 4 +- .../.env.development | 8 +- .../src/apis/system/dictType.js | 2 +- .../src/components/LandSelect.vue | 5 +- .../demandManage/fertilizerDemand.vue | 24 +- .../demandManage/pesticideDemand.vue | 23 +- .../demandManage/seedDemand.vue | 36 +- .../material/pesticide/index.vue | 4 +- .../material/seed/index.vue | 2 +- .../subsidyManage/fertilizerSubsidy.vue | 2 +- .../subsidyManage/pesticideSubsidy.vue | 2 +- .../subsidyManage/seedSubsidy.vue | 4 +- .../fertilizerRegulation.vue | 136 ++++-- .../pesticideRegulation.vue | 390 ++++++++++++++---- .../supervisionOfInputs/seedRegulation.vue | 62 +-- 15 files changed, 507 insertions(+), 197 deletions(-) diff --git a/main/.env.development b/main/.env.development index 8ed46a0..8b03e2f 100644 --- a/main/.env.development +++ b/main/.env.development @@ -16,6 +16,6 @@ VITE_APP_UPLOAD_API = '/uploadApis' # VITE_APP_BASE_URL = 'http://47.109.205.240:8080' # VITE_APP_UPLOAD_URL = 'http://47.109.205.240:9300' # 内网接口地址 -VITE_APP_BASE_URL = 'http://192.168.18.99:8080' -VITE_APP_UPLOAD_URL = 'http://192.168.18.99:8080' +VITE_APP_BASE_URL = 'http://192.168.18.88:8080' +VITE_APP_UPLOAD_URL = 'http://192.168.18.88:8080' # VITE_APP_VIST_URL = 'http://192.168.18.99' diff --git a/sub-government-affairs-service/.env.development b/sub-government-affairs-service/.env.development index 06ea220..26e094b 100644 --- a/sub-government-affairs-service/.env.development +++ b/sub-government-affairs-service/.env.development @@ -13,9 +13,9 @@ VITE_APP_UPLOAD_API = '/uploadApis' # VITE_APP_UPLOAD_URL = 'http://47.109.205.240:9204' # 内网测试库接口地址 -VITE_APP_BASE_URL = 'http://192.168.18.99:8080' -VITE_APP_UPLOAD_URL = 'http://192.168.18.99:8080' +VITE_APP_BASE_URL = 'http://192.168.18.88:8080' +VITE_APP_UPLOAD_URL = 'http://192.168.18.88:8080' # 本地开发接口地址 -VITE_APP_BASE_URL = 'http://192.168.18.99:8080' -VITE_APP_UPLOAD_URL = 'http://192.168.18.99:8080' \ No newline at end of file +# VITE_APP_BASE_URL = 'http://192.168.18.99:8080' +# VITE_APP_UPLOAD_URL = 'http://192.168.18.99:8080' \ No newline at end of file diff --git a/sub-government-affairs-service/src/apis/system/dictType.js b/sub-government-affairs-service/src/apis/system/dictType.js index 947668a..53aee4c 100644 --- a/sub-government-affairs-service/src/apis/system/dictType.js +++ b/sub-government-affairs-service/src/apis/system/dictType.js @@ -57,7 +57,7 @@ export function GetDictType(dictId) { }); } /** - * @Title: 类型信息 + * @Title: 类型信息 sys_use_supervise_number 获取投入品用量单位 */ export function GetDictTypeInfo(dictId) { return request(`/system/dict/data/type/${dictId}`, { diff --git a/sub-government-affairs-service/src/components/LandSelect.vue b/sub-government-affairs-service/src/components/LandSelect.vue index e4ca053..1eb935e 100644 --- a/sub-government-affairs-service/src/components/LandSelect.vue +++ b/sub-government-affairs-service/src/components/LandSelect.vue @@ -1,5 +1,5 @@