diff --git a/src/api/ems/report/reportPointSteam.js b/src/api/ems/report/reportPointSteam.js
new file mode 100644
index 0000000..faefc90
--- /dev/null
+++ b/src/api/ems/report/reportPointSteam.js
@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询蒸汽整点数据列表
+export function listReportPointSteam(query) {
+ return request({
+ url: '/ems/report/reportPointSteam/list',
+ method: 'get',
+ params: query
+ })
+}
+
+// 查询蒸汽整点数据详细
+export function getReportPointSteam(objId) {
+ return request({
+ url: '/ems/report/reportPointSteam/' + objId,
+ method: 'get'
+ })
+}
+
+// 新增蒸汽整点数据
+export function addReportPointSteam(data) {
+ return request({
+ url: '/ems/report/reportPointSteam',
+ method: 'post',
+ data: data
+ })
+}
+
+// 修改蒸汽整点数据
+export function updateReportPointSteam(data) {
+ return request({
+ url: '/ems/report/reportPointSteam',
+ method: 'put',
+ data: data
+ })
+}
+
+// 删除蒸汽整点数据
+export function delReportPointSteam(objId) {
+ return request({
+ url: '/ems/report/reportPointSteam/' + objId,
+ method: 'delete'
+ })
+}
diff --git a/src/views/ems/report/reportPointSteam/index.vue b/src/views/ems/report/reportPointSteam/index.vue
new file mode 100644
index 0000000..bc86214
--- /dev/null
+++ b/src/views/ems/report/reportPointSteam/index.vue
@@ -0,0 +1,465 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 修改
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 导出
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ parseTime(scope.row.recordTime, '{y}-{m}-{d} {h}:{i}:{s}') }}
+
+
+
+
+ {{ parseTime(scope.row.beginTime, '{y}-{m}-{d} {h}:{i}:{s}') }}
+
+
+
+
+ {{ parseTime(scope.row.endTime, '{y}-{m}-{d} {h}:{i}:{s}') }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+