|
@@ -0,0 +1,455 @@
|
|
1
|
+<template>
|
|
2
|
+ <div id="water-form">
|
|
3
|
+ <el-form ref="form" :rules="rules" :model="form">
|
|
4
|
+ <el-row>
|
|
5
|
+ <el-col>
|
|
6
|
+ <el-form-item label="日期:" required prop="record_date" class="st">
|
|
7
|
+ <el-date-picker
|
|
8
|
+ v-model="form.record_date"
|
|
9
|
+ prefix-icon="none"
|
|
10
|
+ type="date"
|
|
11
|
+ placeholder="请选择"
|
|
12
|
+ format="yyyy-MM-dd"
|
|
13
|
+ value-format="yyyy-MM-dd"
|
|
14
|
+ style="width:150px">
|
|
15
|
+ </el-date-picker>
|
|
16
|
+ </el-form-item>
|
|
17
|
+ </el-col>
|
|
18
|
+ </el-row>
|
|
19
|
+ <el-row>
|
|
20
|
+ <el-col>
|
|
21
|
+ <el-form-item label="设备运行状态:" class="st">
|
|
22
|
+ <el-radio v-model="form.machine_status" label="1">正常</el-radio>
|
|
23
|
+ <el-radio v-model="form.machine_status" label="2">故障</el-radio>
|
|
24
|
+ </el-form-item>
|
|
25
|
+ </el-col>
|
|
26
|
+ </el-row>
|
|
27
|
+ <el-row>
|
|
28
|
+ <el-col>
|
|
29
|
+ <el-form-item label="故障描述:" class="st">
|
|
30
|
+ <el-input type="textarea" v-model="form.fault_description" style="width:600px"></el-input>
|
|
31
|
+ </el-form-item>
|
|
32
|
+ </el-col>
|
|
33
|
+ </el-row>
|
|
34
|
+ <el-row>
|
|
35
|
+ <span>原水参数</span>
|
|
36
|
+ </el-row>
|
|
37
|
+ <el-row>
|
|
38
|
+ <el-col :span="8">
|
|
39
|
+ <el-form-item label="原水电导度(μs/cm):" class="st" label-width="100px">
|
|
40
|
+ <el-input v-model="form.water_conductivity" style="width:100px" type="number"></el-input>
|
|
41
|
+ </el-form-item>
|
|
42
|
+ </el-col>
|
|
43
|
+ <el-col :span="8">
|
|
44
|
+ <el-form-item label="原水压力(Mpa):" class="st">
|
|
45
|
+ <el-input v-model="form.water_pressure" style="width:100px" type="number"></el-input>
|
|
46
|
+ </el-form-item>
|
|
47
|
+ </el-col>
|
|
48
|
+ <el-col :span="8">
|
|
49
|
+ <el-form-item label="温度:" class="st">
|
|
50
|
+ <el-input v-model="form.temperature" style="width:100px" type="number"></el-input>
|
|
51
|
+ </el-form-item>
|
|
52
|
+ </el-col>
|
|
53
|
+ </el-row>
|
|
54
|
+ <el-row>
|
|
55
|
+ <el-col :span="24">
|
|
56
|
+ <el-form-item label="加压泵:" class="st">
|
|
57
|
+ <el-radio v-model="form.force_pump_status" label="1">正常</el-radio>
|
|
58
|
+ <el-radio v-model="form.force_pump_status" label="2">故障</el-radio>
|
|
59
|
+ </el-form-item>
|
|
60
|
+ </el-col>
|
|
61
|
+ </el-row>
|
|
62
|
+ <el-row>
|
|
63
|
+ <span>反渗一级</span>
|
|
64
|
+ </el-row>
|
|
65
|
+ <el-row>
|
|
66
|
+ <el-col :span="8">
|
|
67
|
+ <el-form-item label="RO膜进水:" class="st">
|
|
68
|
+ <el-input v-model="form.first_ro_membrane_water" type="number" style="width:100px"></el-input>
|
|
69
|
+ </el-form-item>
|
|
70
|
+ </el-col>
|
|
71
|
+ <el-col :span="8">
|
|
72
|
+ <el-form-item label="RO膜浓水:" class="st">
|
|
73
|
+ <el-input v-model="form.first_ro_film_thick_water" type="number" style="width:100px"></el-input>
|
|
74
|
+ </el-form-item>
|
|
75
|
+ </el-col>
|
|
76
|
+ <el-col :span="8">
|
|
77
|
+ <el-form-item label="RO膜出水:" class="st">
|
|
78
|
+ <el-input v-model="form.first_ro_membrane_effluent" type="number" style="width:100px"></el-input>
|
|
79
|
+ </el-form-item>
|
|
80
|
+ </el-col>
|
|
81
|
+ </el-row>
|
|
82
|
+ <el-row>
|
|
83
|
+ <el-col :span="8">
|
|
84
|
+ <el-form-item label="产水电导度(μs/cm):" class="st">
|
|
85
|
+ <el-input v-model="form.first_production_of_water_conductivity" type="number" style="width:100px"></el-input>
|
|
86
|
+ </el-form-item>
|
|
87
|
+ </el-col>
|
|
88
|
+ <el-col :span="8">
|
|
89
|
+ <el-form-item label="产水量(L/h):" class="st">
|
|
90
|
+ <el-input v-model="form.first_water_yield" style="width:100px" type="number"></el-input>
|
|
91
|
+ </el-form-item>
|
|
92
|
+ </el-col>
|
|
93
|
+
|
|
94
|
+ </el-row>
|
|
95
|
+ <el-row>
|
|
96
|
+ <span>反渗二级</span>
|
|
97
|
+ </el-row>
|
|
98
|
+ <el-row>
|
|
99
|
+ <el-col :span="8">
|
|
100
|
+ <el-form-item label="RO膜进水:" class="st">
|
|
101
|
+ <el-input v-model="form.last_ro_membrane_water" type="number" style="width:100px"></el-input>
|
|
102
|
+ </el-form-item>
|
|
103
|
+ </el-col>
|
|
104
|
+ <el-col :span="8">
|
|
105
|
+ <el-form-item label="RO膜浓水:" class="st">
|
|
106
|
+ <el-input v-model="form.last_ro_film_thick_water" type="number" style="width:100px"></el-input>
|
|
107
|
+ </el-form-item>
|
|
108
|
+ </el-col>
|
|
109
|
+ <el-col :span="8">
|
|
110
|
+ <el-form-item label="RO膜出水:" class="st">
|
|
111
|
+ <el-input v-model="form.last_ro_membrane_effluent" type="number" style="width:100px"></el-input>
|
|
112
|
+ </el-form-item>
|
|
113
|
+ </el-col>
|
|
114
|
+ </el-row>
|
|
115
|
+ <el-row>
|
|
116
|
+ <el-col :span="8">
|
|
117
|
+ <el-form-item label="产水电导度(μs/cm):" class="st">
|
|
118
|
+ <el-input v-model="form.last_production_of_water_conductivity" type="number" style="width:100px"></el-input>
|
|
119
|
+ </el-form-item>
|
|
120
|
+ </el-col>
|
|
121
|
+ <el-col :span="8">
|
|
122
|
+ <el-form-item label="产水量(L/h):" class="st">
|
|
123
|
+ <el-input v-model="form.last_water_yield" type="number" style="width:100px"></el-input>
|
|
124
|
+ </el-form-item>
|
|
125
|
+ </el-col>
|
|
126
|
+ </el-row>
|
|
127
|
+
|
|
128
|
+ <el-row>
|
|
129
|
+ <el-col :span="8">
|
|
130
|
+ <el-form-item label="碳罐(MPa):" class="st">
|
|
131
|
+ <el-input v-model="form.carbon_tank" type="number" style="width:100px"></el-input>
|
|
132
|
+ </el-form-item>
|
|
133
|
+ </el-col>
|
|
134
|
+ <el-col :span="8">
|
|
135
|
+ <el-form-item label="砂罐(MPa):" class="st">
|
|
136
|
+ <el-input v-model="form.snd_tank" type="number" style="width:100px"></el-input>
|
|
137
|
+ </el-form-item>
|
|
138
|
+ </el-col>
|
|
139
|
+ <el-col :span="8">
|
|
140
|
+ <el-form-item label="树脂罐(MPa):" class="st">
|
|
141
|
+ <el-input v-model="form.resin_tank" type="number" style="width:100px"></el-input>
|
|
142
|
+ </el-form-item>
|
|
143
|
+ </el-col>
|
|
144
|
+ </el-row>
|
|
145
|
+ <el-row>
|
|
146
|
+ <el-col :span="8">
|
|
147
|
+ <el-form-item label="精密过滤器(MPa):" class="st">
|
|
148
|
+ <el-input v-model="form.ultrafilter" type="number" style="width:100px"></el-input>
|
|
149
|
+ </el-form-item>
|
|
150
|
+ </el-col>
|
|
151
|
+ </el-row>
|
|
152
|
+
|
|
153
|
+ <el-row>
|
|
154
|
+ <span>水质监测</span>
|
|
155
|
+ </el-row>
|
|
156
|
+
|
|
157
|
+ <el-row>
|
|
158
|
+ <el-col :span="8">
|
|
159
|
+ <el-form-item label="硬度监测(mg/l):" class="st">
|
|
160
|
+ <el-input v-model="form.hardness_monitoring" type="number" style="width:100px"></el-input>
|
|
161
|
+ </el-form-item>
|
|
162
|
+ </el-col>
|
|
163
|
+ <el-col :span="8">
|
|
164
|
+ <el-form-item label="总氯检测(mg/l):" class="st">
|
|
165
|
+ <el-input v-model="form.total_chlorine_detection" type="number" style="width:100px"></el-input>
|
|
166
|
+ </el-form-item>
|
|
167
|
+ </el-col>
|
|
168
|
+ <el-col :span="8">
|
|
169
|
+ <el-form-item label="PH值检测:" class="st">
|
|
170
|
+ <el-input v-model="form.ph_detection" type="number" style="width:100px"></el-input>
|
|
171
|
+ </el-form-item>
|
|
172
|
+ </el-col>
|
|
173
|
+ </el-row>
|
|
174
|
+
|
|
175
|
+ <el-row>
|
|
176
|
+ <el-col :span="8">
|
|
177
|
+ <el-form-item label="过氧乙酸浓度(mg/l):" class="st">
|
|
178
|
+ <el-input v-model="form.concentration_of_peroxyacetic_acid" type="number" style="width:100px"></el-input>
|
|
179
|
+ </el-form-item>
|
|
180
|
+ </el-col>
|
|
181
|
+ </el-row>
|
|
182
|
+
|
|
183
|
+ <el-row>
|
|
184
|
+ <el-col :span="8">
|
|
185
|
+ <el-checkbox v-model="form.reverse_osmosis_membrane_disinfection">反渗膜消毒</el-checkbox>
|
|
186
|
+ </el-col>
|
|
187
|
+ <el-col :span="8">
|
|
188
|
+ <el-form-item label="消毒方式:" class="st">
|
|
189
|
+ <el-select style="width:135px" v-model="form.first_disinfection_method">
|
|
190
|
+ <el-option
|
|
191
|
+ v-for="item in this.disinfectionType"
|
|
192
|
+ :key="item.id"
|
|
193
|
+ :label="item.name"
|
|
194
|
+ :value="item.id"
|
|
195
|
+ ></el-option>
|
|
196
|
+ </el-select>
|
|
197
|
+ </el-form-item>
|
|
198
|
+ </el-col>
|
|
199
|
+ <el-col :span="8">
|
|
200
|
+ <el-form-item label="时长(h):" class="st">
|
|
201
|
+ <el-input v-model="form.first_disinfection_time" type="number" style="width:100px"></el-input>
|
|
202
|
+ </el-form-item>
|
|
203
|
+ </el-col>
|
|
204
|
+ </el-row>
|
|
205
|
+
|
|
206
|
+ <el-row>
|
|
207
|
+ <el-col :span="8">
|
|
208
|
+ <el-checkbox v-model="form.disinfection_of_water_pipeline">输水管道消毒</el-checkbox>
|
|
209
|
+ </el-col>
|
|
210
|
+ <el-col :span="8">
|
|
211
|
+ <el-form-item label="消毒方式:" class="st">
|
|
212
|
+ <el-select style="width:135px" v-model="form.last_disinfection_method">
|
|
213
|
+ <el-option
|
|
214
|
+ v-for="item in this.disinfectionType"
|
|
215
|
+ :key="item.id"
|
|
216
|
+ :label="item.name"
|
|
217
|
+ :value="item.id"
|
|
218
|
+ ></el-option>
|
|
219
|
+ </el-select>
|
|
220
|
+ </el-form-item>
|
|
221
|
+ </el-col>
|
|
222
|
+ <el-col :span="8">
|
|
223
|
+ <el-form-item label="时长(h):" class="st">
|
|
224
|
+ <el-input v-model="form.last_disinfection_time" type="number" style="width:100px"></el-input>
|
|
225
|
+ </el-form-item>
|
|
226
|
+ </el-col>
|
|
227
|
+ </el-row>
|
|
228
|
+
|
|
229
|
+ <el-row>
|
|
230
|
+
|
|
231
|
+ <el-col :span="8">
|
|
232
|
+ <el-form-item label="过滤器更换(只):" class="st">
|
|
233
|
+ <el-input v-model="form.filter_replacement" type="number" style="width:100px"></el-input>
|
|
234
|
+ </el-form-item>
|
|
235
|
+ </el-col>
|
|
236
|
+
|
|
237
|
+ <el-col :span="8">
|
|
238
|
+ <el-form-item label="备注:" class="st">
|
|
239
|
+ <el-input v-model="form.remark" style="width:100px"></el-input>
|
|
240
|
+ </el-form-item>
|
|
241
|
+ </el-col>
|
|
242
|
+ </el-row>
|
|
243
|
+
|
|
244
|
+ <el-row>
|
|
245
|
+
|
|
246
|
+ <el-col :span="8">
|
|
247
|
+ <el-form-item label="记录人:" class="st">
|
|
248
|
+ <el-select style="width:135px" v-model="form.admin_user_id">
|
|
249
|
+ <el-option
|
|
250
|
+ v-for="item in this.nurseList"
|
|
251
|
+ :key="item.admin_user_id"
|
|
252
|
+ :label="item.user_name"
|
|
253
|
+ :value="item.admin_user_id"
|
|
254
|
+ ></el-option>
|
|
255
|
+ </el-select>
|
|
256
|
+ </el-form-item>
|
|
257
|
+ </el-col>
|
|
258
|
+
|
|
259
|
+
|
|
260
|
+ </el-row>
|
|
261
|
+
|
|
262
|
+ </el-form>
|
|
263
|
+ <div style="float:right">
|
|
264
|
+ <el-button type="primary" @click="saveWater('form')">保存</el-button>
|
|
265
|
+ </div>
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+ </div>
|
|
269
|
+</template>
|
|
270
|
+<script>
|
|
271
|
+const moment = require('moment')
|
|
272
|
+import {getAllDoctorList,saveWaterList} from "@/api/manage";
|
|
273
|
+ export default {
|
|
274
|
+ name: "WaterForm",
|
|
275
|
+ props: {
|
|
276
|
+ equimentid: Number
|
|
277
|
+ },
|
|
278
|
+ data(){
|
|
279
|
+ return{
|
|
280
|
+ form:{
|
|
281
|
+ record_date: moment(new Date()).format('YYYY-MM-DD'), // 日期
|
|
282
|
+ machine_status:"1",//设备运行状态
|
|
283
|
+ fault_description:"",//故障描述
|
|
284
|
+ water_conductivity:"",//原水电导度
|
|
285
|
+ water_pressure:"",//原水压力
|
|
286
|
+ temperature:"",//温度
|
|
287
|
+ force_pump_status:"1",//加压泵
|
|
288
|
+
|
|
289
|
+ first_ro_membrane_water:"",//ro膜进水
|
|
290
|
+ first_ro_film_thick_water:"",//RO膜浓水
|
|
291
|
+ first_ro_membrane_effluent:"",//RO膜出水
|
|
292
|
+ first_production_of_water_conductivity:"",//产水电导度
|
|
293
|
+ first_water_yield:"",//产水量
|
|
294
|
+
|
|
295
|
+ last_ro_membrane_water:"",//ro膜进水
|
|
296
|
+ last_ro_film_thick_water:"",//ro膜进水
|
|
297
|
+ last_ro_membrane_effluent:"",
|
|
298
|
+ last_production_of_water_conductivity:"",//产水电导度
|
|
299
|
+ last_water_yield:"",//产水量
|
|
300
|
+
|
|
301
|
+ carbon_tank:"",//碳罐
|
|
302
|
+ snd_tank:"",//砂罐,
|
|
303
|
+ resin_tank:"",//树脂罐
|
|
304
|
+ ultrafilter:"",//精密过滤器
|
|
305
|
+ hardness_monitoring:"",//硬度监测
|
|
306
|
+ total_chlorine_detection:"",//总录检测,
|
|
307
|
+ ph_detection:"",//PH值检测,
|
|
308
|
+ concentration_of_peroxyacetic_acid:"",//过氧乙酸浓度,
|
|
309
|
+ reverse_osmosis_membrane_disinfection:"",//反渗膜消毒
|
|
310
|
+ disinfection_of_water_pipeline:"",//输水管道消毒
|
|
311
|
+ first_disinfection_method:"",//消毒方式
|
|
312
|
+ last_disinfection_method:"",//消毒方式
|
|
313
|
+ first_disinfection_time:"",//消毒时长
|
|
314
|
+ last_disinfection_time:"",//消毒时长
|
|
315
|
+ remark:"",//备注
|
|
316
|
+ filter_replacement:"",//过滤器更换
|
|
317
|
+ admin_user_id:"",//记录人
|
|
318
|
+
|
|
319
|
+ },
|
|
320
|
+ machineType:[
|
|
321
|
+ {id:0,name:"全部"},
|
|
322
|
+ {id:1,name:"正常"},
|
|
323
|
+ {id:2,name:"故障"},
|
|
324
|
+ ],
|
|
325
|
+ forcePumpList:[
|
|
326
|
+ {id:0,name:"全部"},
|
|
327
|
+ {id:1,name:"正常"},
|
|
328
|
+ {id:2,name:"故障"},
|
|
329
|
+ ],
|
|
330
|
+ disinfectionType:[
|
|
331
|
+ { id: 0, name: "请选择" },
|
|
332
|
+ { id: 1, name: "热消毒" },
|
|
333
|
+ { id: 2, name: "化学消毒" }
|
|
334
|
+ ],
|
|
335
|
+ checked:"",
|
|
336
|
+ rules: {
|
|
337
|
+ admin_user_id: [{ required: true, message: '请选择记录人' }],
|
|
338
|
+ },
|
|
339
|
+ nurseList:[],
|
|
340
|
+ }
|
|
341
|
+
|
|
342
|
+ },
|
|
343
|
+ methods:{
|
|
344
|
+ saveWater(formName){
|
|
345
|
+ // console.log("form",this.form,this.equimentid)
|
|
346
|
+ this.form.force_pump_status = parseInt(this.form.force_pump_status)
|
|
347
|
+ this.form.machine_status = parseInt(this.form.machine_status)
|
|
348
|
+ if(this.form.reverse_osmosis_membrane_disinfection == true){
|
|
349
|
+ this.form.reverse_osmosis_membrane_disinfection = 1
|
|
350
|
+ }
|
|
351
|
+ if(this.form.reverse_osmosis_membrane_disinfection == false){
|
|
352
|
+ this.form.reverse_osmosis_membrane_disinfection = 2
|
|
353
|
+ }
|
|
354
|
+ if(this.form.disinfection_of_water_pipeline == true){
|
|
355
|
+ this.form.disinfection_of_water_pipeline = 1
|
|
356
|
+ }
|
|
357
|
+ if(this.form.disinfection_of_water_pipeline == false){
|
|
358
|
+ this.form.disinfection_of_water_pipeline = 2
|
|
359
|
+ }
|
|
360
|
+
|
|
361
|
+ this.form.water_conductivity = parseFloat(this.form.water_conductivity)
|
|
362
|
+ this.form.water_pressure = parseFloat(this.form.water_pressure)
|
|
363
|
+ this.form.temperature = parseFloat(this.form.temperature)
|
|
364
|
+ this.form.force_pump_status = parseFloat(this.form.force_pump_status)
|
|
365
|
+ this.form.first_ro_membrane_water = parseFloat(this.form.first_ro_membrane_water)
|
|
366
|
+ this.form.first_ro_film_thick_water = parseFloat(this.form.first_ro_film_thick_water)
|
|
367
|
+ this.form.first_ro_membrane_effluent =parseFloat(this.form.first_ro_membrane_effluent)
|
|
368
|
+ this.form.first_production_of_water_conductivity = parseFloat(this.form.first_production_of_water_conductivity)
|
|
369
|
+ this.form.first_water_yield = parseFloat(this.form.first_water_yield)
|
|
370
|
+ this.form.last_ro_membrane_water = parseFloat(this.form.last_ro_membrane_water)
|
|
371
|
+ this.form.last_ro_membrane_effluent = parseFloat(this.form.last_ro_membrane_effluent)
|
|
372
|
+ this.form.last_ro_film_thick_water = parseFloat(this.form.last_ro_film_thick_water)
|
|
373
|
+ this.form.last_production_of_water_conductivity = parseFloat(this.form.last_production_of_water_conductivity)
|
|
374
|
+ this.form.last_water_yield = parseFloat(this.form.last_water_yield)
|
|
375
|
+ this.form.carbon_tank = parseFloat(this.form.carbon_tank)
|
|
376
|
+ this.form.snd_tank = parseFloat(this.form.snd_tank)
|
|
377
|
+ this.form.resin_tank= parseFloat(this.form.resin_tank)
|
|
378
|
+ this.form.ultrafilter = parseFloat(this.form.ultrafilter)
|
|
379
|
+ this.form.hardness_monitoring = parseFloat(this.form.hardness_monitoring)
|
|
380
|
+ this.form.total_chlorine_detection = parseFloat(this.form.total_chlorine_detection)
|
|
381
|
+ this.form.ph_detection = parseFloat(this.form.ph_detection)
|
|
382
|
+ this.form.concentration_of_peroxyacetic_acid = parseFloat(this.form.concentration_of_peroxyacetic_acid)
|
|
383
|
+ this.form.reverse_osmosis_membrane_disinfection= parseFloat(this.form.reverse_osmosis_membrane_disinfection)
|
|
384
|
+ this.form.first_disinfection_method = parseFloat(this.form.first_disinfection_method)
|
|
385
|
+ this.form.last_disinfection_method = parseFloat(this.form.last_disinfection_method)
|
|
386
|
+ this.form.first_disinfection_time = parseFloat(this.form.first_disinfection_time)
|
|
387
|
+ this.form.last_disinfection_time = parseFloat(this.form.last_disinfection_time)
|
|
388
|
+ this.form.filter_replacement = parseFloat(this.form.filter_replacement)
|
|
389
|
+ this.form.admin_user_id = parseFloat(this.form.admin_user_id)
|
|
390
|
+ this.form.disinfection_of_water_pipeline = parseFloat(this.form.disinfection_of_water_pipeline)
|
|
391
|
+ console.log("fomr=================",this.form)
|
|
392
|
+ this.$refs[formName].validate((valid) => {
|
|
393
|
+ if (valid) {
|
|
394
|
+ saveWaterList(this.equimentid,this.form).then(response=>{
|
|
395
|
+ if(response.data.state == 1){
|
|
396
|
+ var deviceWater = response.data.data.deviceWater
|
|
397
|
+ console.log("保存成功!",deviceWater)
|
|
398
|
+ this.$message.success("保存成功!")
|
|
399
|
+
|
|
400
|
+ this.form.fault_description = ""
|
|
401
|
+ this.form.water_conductivity = ""
|
|
402
|
+ this.form.water_pressure = ""
|
|
403
|
+ this.form.temperature = ""
|
|
404
|
+ this.form.first_ro_membrane_water = ""
|
|
405
|
+ this.form.first_ro_film_thick_water = ""
|
|
406
|
+ this.form.first_ro_membrane_effluent=""
|
|
407
|
+ this.form.first_production_of_water_conductivity = ""
|
|
408
|
+ this.form.first_water_yield = ""
|
|
409
|
+ this.form.last_ro_membrane_water= ""
|
|
410
|
+ this.form.last_ro_film_thick_water= ""
|
|
411
|
+ this.form.last_ro_membrane_effluent = ""
|
|
412
|
+ this.form.last_production_of_water_conductivity = ""
|
|
413
|
+ this.form.last_water_yield = ""
|
|
414
|
+ this.form.carbon_tank = ""
|
|
415
|
+ this.form.snd_tank = ""
|
|
416
|
+ this.form.resin_tank= ""
|
|
417
|
+ this.form.ultrafilter= ""
|
|
418
|
+ this.form.hardness_monitoring = ""
|
|
419
|
+ this.form.total_chlorine_detection= ""
|
|
420
|
+ this.form.concentration_of_peroxyacetic_acid = ""
|
|
421
|
+ this.form.reverse_osmosis_membrane_disinfection = ""
|
|
422
|
+ this.form.disinfection_of_water_pipeline= ""
|
|
423
|
+ this.form.first_disinfection_method = ""
|
|
424
|
+ this.form.last_disinfection_method = ""
|
|
425
|
+ this.form.first_disinfection_time = ""
|
|
426
|
+ this.form.last_disinfection_time = ""
|
|
427
|
+ this.form.remark = ""
|
|
428
|
+ this.form.filter_replacement = ""
|
|
429
|
+ }
|
|
430
|
+ })
|
|
431
|
+
|
|
432
|
+ }
|
|
433
|
+ })
|
|
434
|
+ },
|
|
435
|
+ getAllDoctorList(){
|
|
436
|
+ getAllDoctorList().then(response=>{
|
|
437
|
+ if(response.data.state == 1){
|
|
438
|
+ var doctorList = response.data.data.list
|
|
439
|
+ console.log("dcotorlist",doctorList)
|
|
440
|
+ for(let i=0;i<doctorList.length;i++){
|
|
441
|
+ if(doctorList[i].user_type == 3){
|
|
442
|
+ this.nurseList.push(doctorList[i])
|
|
443
|
+ }
|
|
444
|
+ }
|
|
445
|
+
|
|
446
|
+ }
|
|
447
|
+ })
|
|
448
|
+ }
|
|
449
|
+ },
|
|
450
|
+ created(){
|
|
451
|
+
|
|
452
|
+ this.getAllDoctorList()
|
|
453
|
+ }
|
|
454
|
+ }
|
|
455
|
+</script>
|