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