From b0ca2d334bc87fa5f02f669ec6bd6c3ff6a95dfa Mon Sep 17 00:00:00 2001
From: ll <1079863556@qq.com>
Date: Fri, 11 Jul 2025 21:14:00 +0800
Subject: [PATCH] =?UTF-8?q?=E5=B9=B2=E7=89=A9=E8=B4=A8=E7=B3=BB=E6=95=B0?=
=?UTF-8?q?=E5=89=8D=E7=AB=AF=E7=95=8C=E9=9D=A2?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../dryMatterCorrection.js | 46 +++
.../dryMatterCorrection/index.vue | 311 ++++++++++++++++++
2 files changed, 357 insertions(+)
create mode 100644 src/api/dryMatterCorrection/dryMatterCorrection.js
create mode 100644 src/views/dryMatterCorrection/dryMatterCorrection/index.vue
diff --git a/src/api/dryMatterCorrection/dryMatterCorrection.js b/src/api/dryMatterCorrection/dryMatterCorrection.js
new file mode 100644
index 0000000..9018311
--- /dev/null
+++ b/src/api/dryMatterCorrection/dryMatterCorrection.js
@@ -0,0 +1,46 @@
+import request from '@/utils/request'
+
+// 查询干物质校正列表
+export function listDryMatterCorrection(query) {
+ return request({
+ url: '/dryMatterCorrection/dryMatterCorrection/list',
+ method: 'get',
+ params: {
+ datetime: query.datetime // 只传递年月参数
+ }
+ })
+}
+
+// 查询干物质校正详细
+export function getDryMatterCorrection(id) {
+ return request({
+ url: '/dryMatterCorrection/dryMatterCorrection/' + id,
+ method: 'get'
+ })
+}
+
+// 新增干物质校正
+export function addDryMatterCorrection(data) {
+ return request({
+ url: '/dryMatterCorrection/dryMatterCorrection',
+ method: 'post',
+ data: data
+ })
+}
+
+// 修改干物质校正
+export function updateDryMatterCorrection(data) {
+ return request({
+ url: '/dryMatterCorrection/dryMatterCorrection',
+ method: 'put',
+ data: data
+ })
+}
+
+// 删除干物质校正
+export function delDryMatterCorrection(id) {
+ return request({
+ url: '/dryMatterCorrection/dryMatterCorrection/' + id,
+ method: 'delete'
+ })
+}
\ No newline at end of file
diff --git a/src/views/dryMatterCorrection/dryMatterCorrection/index.vue b/src/views/dryMatterCorrection/dryMatterCorrection/index.vue
new file mode 100644
index 0000000..fedf5dc
--- /dev/null
+++ b/src/views/dryMatterCorrection/dryMatterCorrection/index.vue
@@ -0,0 +1,311 @@
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+ 新增
+
+
+ 修改
+
+
+ 删除
+
+
+ 导出
+
+
+
+
+
+
+
+
+ {{ parseTime(scope.row.datetime, '{y}-{m}-{d}') }}
+
+
+
+
+
+
+
+
+ {{ calculateCoefficient(scope.row.content, scope.row.standard) }}
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file