-
导出xlsx
-
-
打印
-
+
+
+ {{ sflogItem.end_time.slice(0, 10) }}{{ sflogItem.shift_name }}
+ {{ sflogItem.team_name }}
+ 交接班记录
+
+
+
+
+ | 日期 |
+ {{ sflogItem.end_time.slice(0, 10) }} |
+ 班次 |
+ {{ sflogItem.shift_name }} |
+ 班组 |
+ {{ sflogItem.team_name }} |
+
+
+ | 产量(t) |
+ {{ reportItem.total_production }} |
+ 台时(t/h) |
+ {{ reportItem.production_hour }} |
+ 运转时间(h) |
+ {{ reportItem.run_hour }} |
+
+
+ | 运转率(%) |
+ {{ reportItem.run_rate * 100 }} |
+ 停机时长(h) |
+ {{ reportItem.shut_hour }} |
+ 当期单位产品电耗(kW·h/t) |
+ {{ reportItem.elec_consume_unit }} |
+
+
+ | 辅料细度合格率(%) |
+ {{ reportItem.辅料_细度_rate_pass * 100 }} |
+ 0 |
+ 辅料Fe₂O₃合格率(%) |
+ {{ reportItem.辅料_Fe2O3_rate_pass * 100 }} |
+ 0 |
+ 辅料水分合格率(%) |
+ {{ reportItem.辅料_水分_rate_pass * 100 }} |
+ 0 |
+
+
+ | 干混生料CaO合格率(%) |
+ {{ reportItem.干混生料_CaO_rate_pass * 100 }} |
+ 0 |
+ 干混生料Fe₂O₃合格率(%) |
+ {{ reportItem.干混生料_Fe2O3_rate_pass * 100 }} |
+ 0 |
+ 干混生料细度合格率(%) |
+ {{ reportItem.干混生料_细度_rate_pass * 100 }} |
+ 0 |
+
+
+ | 干混生料水分合格率(%) |
+ {{ reportItem.干混生料_水分_rate_pass * 100 }} |
+ 0 |
+ 单位成本(元/吨) |
+ {{ reportItem.production_cost_unit }} |
+ |
+ |
+
+
+ | 生产情况记录 |
+ 时间 |
+ 类别 |
+ 原因 |
+ 处置措施 |
+ 处置人 |
+
+
+ | {{ item.happen_time }} |
+ {{ item.cate }} |
+ {{ item.reason }} |
+ {{ item.measure }} |
+ {{ item.handler }} |
+
+
+
-
-
-
- {{sflogItem.end_time.slice(0,10)}}{{ sflogItem.shift_name }}
- {{ sflogItem.team_name }}
- 交接班记录
-
-
-
-
- | 日期 |
- {{sflogItem.end_time.slice(0,10)}} |
- 班次 |
- {{ sflogItem.shift_name }} |
- 班组 |
- {{ sflogItem.team_name }} |
-
-
- | 产量(t) |
- {{reportItem.total_production}} |
- 台时(t/h) |
- {{reportItem.production_hour}} |
- 运转时间(h) |
- {{reportItem.run_hour}} |
-
-
- | 运转率(%) |
- {{reportItem.run_rate*100}} |
- 停机时长(h) |
- {{reportItem.shut_hour}} |
- 当期单位产品电耗(kW·h/t) |
- {{reportItem.elec_consume_unit}} |
-
-
- | 辅料细度合格率(%) |
- {{reportItem.辅料_细度_rate_pass*100}} |
- 0 |
- 辅料Fe₂O₃合格率(%) |
- {{reportItem.辅料_Fe2O3_rate_pass*100}} |
- 0 |
- 辅料水分合格率(%) |
- {{reportItem.辅料_水分_rate_pass*100}} |
- 0 |
-
-
- | 干混生料CaO合格率(%) |
- {{reportItem.干混生料_CaO_rate_pass*100}} |
- 0 |
- 干混生料Fe₂O₃合格率(%) |
- {{reportItem.干混生料_Fe2O3_rate_pass*100}} |
- 0 |
- 干混生料细度合格率(%) |
- {{reportItem.干混生料_细度_rate_pass*100}} |
- 0 |
-
-
- | 干混生料水分合格率(%) |
- {{reportItem.干混生料_水分_rate_pass*100}} |
- 0 |
- 单位成本(元/吨) |
- {{reportItem.production_cost_unit}} |
- |
- |
-
-
- | 生产情况记录 |
- 时间 |
- 类别 |
- 原因 |
- 处置措施 |
- 处置人 |
-
-
- | {{ item.happen_time}} |
- {{ item.cate}} |
- {{ item.reason}} |
- {{ item.measure}} |
- {{ item.handler}} |
-
-
-
-
-
-
-
-
-
-
+ handlePrint() {
+ this.$PRINT('#myReport');
+ },
+ exportExcel() {
+ this.exportLoading = true;
+ this.$XLSX('#myTable', this.tableName)
+ this.exportLoading = false;
+ },
+ },
+};
+
-
+
\ No newline at end of file
diff --git a/src/views/enm_rm/handover_form.vue b/src/views/enm_rm/handover_form.vue
index afb5eb33..0efc5054 100644
--- a/src/views/enm_rm/handover_form.vue
+++ b/src/views/enm_rm/handover_form.vue
@@ -1,225 +1,184 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 保存
- 取消
-
-
-
-
-
-
+ //表单注入数据
+ setData(data) {
+ Object.assign(this.form, data);
+ },
+ //设置过滤项
+ setFilters(filters) {
+ this.selectionFilters = filters;
+ this.setFiltersVisible = true;
+ },
+ },
+};
+
+
\ No newline at end of file
diff --git a/src/views/enm_rm/other_form.vue b/src/views/enm_rm/other_form.vue
index 5706486f..0388fce6 100644
--- a/src/views/enm_rm/other_form.vue
+++ b/src/views/enm_rm/other_form.vue
@@ -1,189 +1,174 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- (t)
-
-
-
-
-
- 保存
- 取消
-
-
-
-
-
-
+ //表单注入数据
+ setData(data) {
+ Object.assign(this.form, data);
+ },
+ //设置过滤项
+ setFilters(filters) {
+ this.selectionFilters = filters;
+ this.setFiltersVisible = true;
+ },
+ },
+};
+
+
\ No newline at end of file
diff --git a/src/views/enm_slag/handoverLog.vue b/src/views/enm_slag/handoverLog.vue
index 2d4c85e7..c9d199ed 100644
--- a/src/views/enm_slag/handoverLog.vue
+++ b/src/views/enm_slag/handoverLog.vue
@@ -1,277 +1,234 @@
-
-
-
-
交接班日志
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
交接班日志
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ scope.row.start_time.slice(0, 16) }}
+
+
+
+
+ {{ scope.row.end_time.slice(0, 16) }}
+
+
+
+
+
+
+
+ {{ scope.row.last_test_time.slice(0, 16) }}
+
+
+
+
+ 编辑
+
+ 报表
+
+
+
+
+
+
+ 交接班日志
+
+
+
+
+ 关闭
+
+
+
+ 导出xlsx
+
+ 打印
+
+
-
-
-
-
- {{ scope.row.start_time.slice(0,16)}}
-
-
-
-
- {{ scope.row.end_time.slice(0,16)}}
-
-
-
-
-
-
-
- {{ scope.row.last_test_time.slice(0,16)}}
-
-
-
-
- 编辑
-
- 报表
-
-
-
-
-
-
- 交接班日志
-
-
- 关闭
-
-
-
-
导出xlsx
-
-
打印
-
+
+
+ {{ sflogItem.end_time.slice(0, 10) }}{{ sflogItem.shift_name }}
+ {{ sflogItem.team_name }}
+ 交接班记录
+
+
+
+
+ | 日期 |
+ {{ sflogItem.end_time.slice(0, 10) }} |
+ 班次 |
+ {{ sflogItem.shift_name }} |
+ 班组 |
+ {{ sflogItem.team_name }} |
+
+
+ | 产量(t) |
+ {{ reportItem.total_production }} |
+ 单位产品分布电耗(KW·h/t) |
+ {{ reportItem.elec_consume_unit }} |
+ 单位成本(元/吨) |
+ {{ reportItem.production_cost_unit }} |
+
+
+ | 生产情况记录 |
+ 时间 |
+ 类别 |
+ 原因 |
+ 处置措施 |
+ 处置人 |
+
+
+ | {{ item.happen_time }} |
+ {{ item.cate }} |
+ {{ item.reason }} |
+ {{ item.measure }} |
+ {{ item.handler }} |
+
+
+
-
-
-
- {{sflogItem.end_time.slice(0,10)}}{{ sflogItem.shift_name }}
- {{ sflogItem.team_name }}
- 交接班记录
-
-
-
-
- | 日期 |
- {{sflogItem.end_time.slice(0,10)}} |
- 班次 |
- {{ sflogItem.shift_name }} |
- 班组 |
- {{ sflogItem.team_name }} |
-
-
- | 产量(t) |
- {{reportItem.total_production}} |
- 单位产品分布电耗(KW·h/t) |
- {{reportItem.elec_consume_unit}} |
- 单位成本(元/吨) |
- {{reportItem.production_cost_unit}} |
-
-
- | 生产情况记录 |
- 时间 |
- 类别 |
- 原因 |
- 处置措施 |
- 处置人 |
-
-
- | {{ item.happen_time}} |
- {{ item.cate}} |
- {{ item.reason}} |
- {{ item.measure}} |
- {{ item.handler}} |
-
-
-
-
-
-
-
+
+
+
-
+ exportExcel() {
+ this.exportLoading = true;
+ this.$XLSX('#myTable', this.tableName)
+ this.exportLoading = false;
+ },
+ },
+};
+
-
+
\ No newline at end of file
diff --git a/src/views/hrm/attendance_form.vue b/src/views/hrm/attendance_form.vue
index 241da751..0565e8e7 100644
--- a/src/views/hrm/attendance_form.vue
+++ b/src/views/hrm/attendance_form.vue
@@ -1,32 +1,13 @@
-
+
-
+
-
-
+
@@ -34,49 +15,25 @@
-
-
+
+
-
-
+
+
-
+
-
+
-
-
-
+
+
+
-
+
-
+
-
+
保存
取消
@@ -139,152 +81,151 @@
-
+
diff --git a/src/views/mtm/mgroup.vue b/src/views/mtm/mgroup.vue
index e7412a39..a752acbc 100644
--- a/src/views/mtm/mgroup.vue
+++ b/src/views/mtm/mgroup.vue
@@ -19,6 +19,13 @@
+
+
+
+ 是
+ 否
+
+
@@ -36,11 +43,7 @@
-
+
\ No newline at end of file
diff --git a/src/views/ungrouped/inspect.vue b/src/views/ungrouped/inspect.vue
index e310a717..8323f168 100644
--- a/src/views/ungrouped/inspect.vue
+++ b/src/views/ungrouped/inspect.vue
@@ -4,105 +4,71 @@
质量检验
-
-
-
-
+
+
+
+
-
-
+
+
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+ },
+ },
+};
+
\ No newline at end of file
diff --git a/src/views/wpm/worktask_form.vue b/src/views/wpm/worktask_form.vue
index 7abca915..c5e021cb 100644
--- a/src/views/wpm/worktask_form.vue
+++ b/src/views/wpm/worktask_form.vue
@@ -1,157 +1,84 @@
-
+
-
+
-
-
+
+
-
-
+
+
-
-
+
+
-
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
+
+
@@ -160,97 +87,50 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -258,76 +138,46 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
@@ -338,91 +188,45 @@
-
-
+
+
-
-
+
+
-
+
-
+
-
+
-
-
+
+
@@ -445,35 +249,15 @@
-->
-
-
+
+
-
-
+
+
@@ -482,83 +266,43 @@
-
+
-
+
-
+
-
+
-
+
-
+
@@ -570,122 +314,61 @@
-
+
-
-
+
+
-
-
+
+
-
+
-
+
-
+
-
-
+
+
-
-
+
+
-
+
@@ -695,138 +378,75 @@
- 关联产品计数:
-
+
关联产品计数:
+
-
-
+
+
-
+
-
+
-
+
不合格原因及数量:
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -844,75 +464,75 @@
\ No newline at end of file