1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
| <template>
| <div class="app-container">
| <el-form :model="queryParams" ref="queryForm" :inline="true" label-width="68px">
| <el-form-item label="报表类型">
| <el-radio v-model="radio" label="1">日报</el-radio>
| <el-radio v-model="radio" label="2">月报</el-radio>
| </el-form-item>
| <el-form-item>
| <el-button type="primary" icon="el-icon-search" size="mini">搜索</el-button>
| <el-button icon="el-icon-refresh" size="mini">保存修改</el-button>
| </el-form-item>
| </el-form>
|
| <el-table :data="energyEenchmarkingList" @selection-change="handleSelectionChange">
| <el-table-column type="selection" width="55" align="center"/>
| <el-table-column label="单位名称" align="center" prop="name"/>
| <el-table-column label="产品名称" align="center" prop="cpname"/>
| <el-table-column label="计量单位" align="center" prop="jldw"/>
| <el-table-column label="计划产量" align="center" prop="jhcl"/>
| <el-table-column label="实际产量" align="center" prop="sjcl">
| <template scope="scope">
| <el-input size="mini" v-model="scope.row.sjcl"></el-input>
| </template>
| </el-table-column>
| </el-table>
| </div>
| </template>
|
| <script>
| import {getSettingProduct} from '@/api/basicsetting/modelNode'
| import { listPlannedOutput, getPlannedOutput, delPlannedOutput, addPlannedOutput, updatePlannedOutput, exportPlannedOutput } from "@/api/plannedOutput/plannedOutput";
|
| export default {
| data() {
| return {
| // 遮罩层
| //loading: true,
| // 选中数组
| ids: [],
| // 非单个禁用
| single: true,
| // 非多个禁用
| multiple: true,
| // 总条数
| total: 0,
| radio: '1',
| // energy_benchmarking表格数据
| energyEenchmarkingList:[{
| "name": "全厂",
| "cpname": "煤气",
| "jldw":"立方米",
| "jhcl":"100",
| "sjcl":"99",
| "createBy": null,
| "createTime": "",
| "updateBy": null,
| "updateTime": null,
| "remark": "",
| },
| {
| "name": "全厂",
| "cpname": "粗苯",
| "jldw":"吨",
| "jhcl":"20",
| "sjcl":"19",
| "createBy": null,
| "createTime": "",
| "updateBy": null,
| "updateTime": null,
| "remark": "",
| },
| {
| "name": "全厂",
| "cpname": "焦油",
| "jldw":"立方米",
| "jhcl":"60",
| "sjcl":"58",
| "createBy": null,
| "createTime": "",
| "updateBy": null,
| "updateTime": null,
| "remark": "",
| }],
| plannedOutputList:[],
| // 查询参数
| queryParams: {
| pageNum: 1,
| pageSize: 10,
| name: undefined,
| codeId: undefined,
| unit: undefined,
| range: undefined,
| type: undefined,
| value: undefined,
| termValidity: undefined,
| modelNode:"",
| },
| };
| },
| created() {
| },
| methods: {
| modelNodeChange(modelNode) {
| this.queryParams.indexCode=modelNode.id;
| console.log(modelNode);
| this.getList(this.queryParams)
| },
| getList() {
| this.loading = true;
| listPlannedOutput(this.queryParams).then(response => {
| //this.plannedOutputList = response.rows;
| console.log(response);
| });
| },
| // 取消按钮
| cancel() {
| this.open = false;
| this.reset();
| },
| // 表单重置
| reset() {
| this.form = {
| id: undefined,
| name: undefined,
| codeId: undefined,
| unit: undefined,
| range: undefined,
| type: undefined,
| value: undefined,
| termValidity: undefined
| };
| this.resetForm("form");
| },
| /** 搜索按钮操作 */
| handleQuery() {
| this.queryParams.pageNum = 1;
| this.getList();
| },
| /** 重置按钮操作 */
| resetQuery() {
| this.resetForm("queryForm");
| this.handleQuery();
| },
| // 多选框选中数据
| handleSelectionChange(selection) {
| this.ids = selection.map(item => item.id)
| this.single = selection.length!=1
| this.multiple = !selection.length
| },
| }
| };
| </script>
|
|