readmeter-changan 1.0.36 → 1.0.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -143,6 +143,12 @@
|
|
|
143
143
|
<input type="number" id="f_condition" class="form-control font "v-el:f_condition v-model="model.f_condition" v-next-el="f_remark">
|
|
144
144
|
</div>
|
|
145
145
|
</div>
|
|
146
|
+
<div class="auto col-xs-12 col-sm-6 col-md-6 bg-white app-row ">
|
|
147
|
+
<label for="f_condition" class="panel-title col-xs-4 col-sm-4 col-md-4 text-left font">计量表钢丝锁</label>
|
|
148
|
+
<div class="col-xs-8 col-sm-8 col-md-8 ">
|
|
149
|
+
<input type="text" id="f_wirelock" class="form-control font "v-el:f_wirelock v-model="model.f_wirelock" v-next-el="f_remark">
|
|
150
|
+
</div>
|
|
151
|
+
</div>
|
|
146
152
|
<div class="auto col-xs-12 col-sm-12 col-md-12 bg-white " style="padding: 0.5em" >
|
|
147
153
|
|
|
148
154
|
<p class="panel-title col-xs-4 col-sm-2 col-md-2 text-left font">换表</p>
|
|
@@ -173,6 +179,45 @@
|
|
|
173
179
|
</v-select>
|
|
174
180
|
</div>
|
|
175
181
|
</div>
|
|
182
|
+
<div class="auto col-xs-12 col-sm-6 col-md-6 bg-white app-row ">
|
|
183
|
+
<label for="f_condition" class="panel-title col-xs-4 col-sm-4 col-md-4 text-left font">清理滤芯人员</label>
|
|
184
|
+
<div class="col-xs-8 col-sm-8 col-md-8 ">
|
|
185
|
+
<v-select id="f_clean_person"
|
|
186
|
+
v-model="model.f_clean_person"
|
|
187
|
+
placeholder='请选择'
|
|
188
|
+
:value.sync="model.f_clean_person"
|
|
189
|
+
multiple
|
|
190
|
+
:options='cleanperson'
|
|
191
|
+
close-on-select >
|
|
192
|
+
</v-select>
|
|
193
|
+
</div>
|
|
194
|
+
</div>
|
|
195
|
+
<div class="auto col-xs-12 col-sm-6 col-md-6 bg-white app-row ">
|
|
196
|
+
<label for="f_condition" class="panel-title col-xs-4 col-sm-4 col-md-4 text-left font">查漏人员</label>
|
|
197
|
+
<div class="col-xs-8 col-sm-8 col-md-8 ">
|
|
198
|
+
<v-select id="f_check_person"
|
|
199
|
+
v-model="model.f_check_person"
|
|
200
|
+
placeholder='请选择'
|
|
201
|
+
:value.sync="model.f_check_person"
|
|
202
|
+
multiple
|
|
203
|
+
:options='checkperson'
|
|
204
|
+
close-on-select >
|
|
205
|
+
</v-select>
|
|
206
|
+
</div>
|
|
207
|
+
</div>
|
|
208
|
+
<div class="auto col-xs-12 col-sm-6 col-md-6 bg-white app-row ">
|
|
209
|
+
<label for="f_condition" class="panel-title col-xs-4 col-sm-4 col-md-4 text-left font">单据填算人员</label>
|
|
210
|
+
<div class="col-xs-8 col-sm-8 col-md-8 ">
|
|
211
|
+
<v-select id="f_clean_person"
|
|
212
|
+
v-model="model.f_form_person"
|
|
213
|
+
placeholder='请选择'
|
|
214
|
+
:value.sync="model.f_form_person"
|
|
215
|
+
multiple
|
|
216
|
+
:options='formperson'
|
|
217
|
+
close-on-select >
|
|
218
|
+
</v-select>
|
|
219
|
+
</div>
|
|
220
|
+
</div>
|
|
176
221
|
<div class="auto row col-sm-12 col-xs-12 col-md-12 bg-white">
|
|
177
222
|
<div class="auto col-sm-6 col-xs-6 col-md-6">
|
|
178
223
|
<input class="magic-checkbox" type="checkbox" id="f_check_install" :true-value="'是'" :false-value="''"
|
|
@@ -344,6 +389,7 @@
|
|
|
344
389
|
import * as Util from './../Util'
|
|
345
390
|
import Vue from 'vue'
|
|
346
391
|
import co from 'co'
|
|
392
|
+
import AppData from '../../stores/AppData'
|
|
347
393
|
let getDataGen = function * (self, val) {
|
|
348
394
|
|
|
349
395
|
yield self.$resetpost(Vue.handdataUrl + 'rs/sql/getUserInfo', {data:{
|
|
@@ -362,6 +408,9 @@
|
|
|
362
408
|
title: '手机单户抄表',
|
|
363
409
|
data () {
|
|
364
410
|
return {
|
|
411
|
+
cleanperson: AppData.getParam('清滤芯人员'),
|
|
412
|
+
checkperson: AppData.getParam('查漏人员'),
|
|
413
|
+
formperson: AppData.getParam('单据填算人员'),
|
|
365
414
|
install:[{label:'开始',value:'开始'},{label:'结束',value:'结束'}],
|
|
366
415
|
model: {
|
|
367
416
|
f_mark:'',
|
|
@@ -373,12 +422,13 @@
|
|
|
373
422
|
f_check_result_state:'',
|
|
374
423
|
f_check_install:'',
|
|
375
424
|
f_check_unstall:'',
|
|
425
|
+
f_wirelock:'',
|
|
376
426
|
imgInfo: '',
|
|
377
427
|
imgName: '',
|
|
378
428
|
sumgas_moment:0,
|
|
379
429
|
f_datacomparison:0,
|
|
380
430
|
f_weekcheckmeternum:'',
|
|
381
|
-
f_weekchecktime:
|
|
431
|
+
f_weekchecktime:Util.toStandardTimeString(),
|
|
382
432
|
f_weekcheckicsn:'',
|
|
383
433
|
f_weekchecksn:'',
|
|
384
434
|
f_weekchecknum:'',
|