safecheck-client 3.0.34-92 → 3.0.34-93
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +1 -1
- package/src/components/android/AddPlanItemYy.vue +451 -451
- package/src/components/android/examples/SafeListExamples.vue +296 -279
- package/src/components/android/examples/UserExamples.vue +137 -137
- package/src/filiale/bayan/android/PaperFeedback.vue +4 -0
- package/src/filiale/bayan/pc/NewCheckpaper.vue +50 -46
- package/src/filiale/shanxian/android/AddPlanItem.vue +447 -447
- package/src/filiale/shanxian/android.js +18 -18
- package/src/filiale/shanxian/pc/PaperList.vue +785 -785
- package/src/filiale/shanxian/pc/SelectCheckPlan.vue +303 -303
- package/src/filiale/shanxian/pc.js +20 -20
- package/src/filiale/siyang/android/AddPlanItem.vue +450 -450
- package/src/filiale/tongchuan/android/SafecheckDevices.vue +2 -2
- package/src/filiale/tongchuan/pc/checkUserList.vue +30 -0
- package/src/filiale/xilan/android/AddPlanItem.vue +457 -457
- package/src/filiale/xilan/android/CurrentCreate.vue +1060 -1060
- package/src/filiale/xilan/android.js +11 -11
- package/src/main.js +33 -33
- package/src/safecheck-android.js +307 -307
@@ -721,8 +721,8 @@
|
|
721
721
|
//tag ===> ' + JSON.stringify(Number(this.gasDeviation)))
|
722
722
|
// 计算差值是否在范围内
|
723
723
|
if (Math.abs(this.f_items[this.f_gas_aberrant_number.index].f_item_value) > Number(this.gasDeviation)) {
|
724
|
-
this.f_items[this.f_gas_aberrant_number.index].f_is_defect =
|
725
|
-
this.f_items[this.f_gas_aberrant_number.index].f_defect_level = 'C'
|
724
|
+
this.f_items[this.f_gas_aberrant_number.index].f_is_defect = false
|
725
|
+
//this.f_items[this.f_gas_aberrant_number.index].f_defect_level = 'C'
|
726
726
|
}
|
727
727
|
|
728
728
|
//tag)
|
@@ -115,6 +115,21 @@
|
|
115
115
|
>
|
116
116
|
</v-select>
|
117
117
|
</div>
|
118
|
+
<div class="form-group col-sm-4" >
|
119
|
+
<label class="font_normal_body">街    道:</label>
|
120
|
+
<v-select
|
121
|
+
class="select select_list"
|
122
|
+
:value.sync="model.f_street"
|
123
|
+
v-model="model.f_street"
|
124
|
+
:options='$parent.$parent.streets'
|
125
|
+
placeholder='请选择'
|
126
|
+
condition="ua.f_street like '%{}%'"
|
127
|
+
:search="false"
|
128
|
+
close-on-select
|
129
|
+
value-single
|
130
|
+
>
|
131
|
+
</v-select>
|
132
|
+
</div>
|
118
133
|
<!--<div class="form-group col-sm-4" >
|
119
134
|
<label class="font_normal_body">小区名称:</label>
|
120
135
|
<input type="text" class="input_search" v-model="model.f_userinfo_code"
|
@@ -336,6 +351,7 @@
|
|
336
351
|
meterbooks:[],
|
337
352
|
cbc:[],
|
338
353
|
areaList:[],
|
354
|
+
streets:[],
|
339
355
|
checkAll:false,
|
340
356
|
checkes:[],
|
341
357
|
excelUserCondtion:false,
|
@@ -355,6 +371,7 @@
|
|
355
371
|
this.select_search()
|
356
372
|
this.Mreadibook()
|
357
373
|
this.getSliceArea()
|
374
|
+
this.getstreets()
|
358
375
|
},
|
359
376
|
cancel(){
|
360
377
|
this.showCondtion=false
|
@@ -418,6 +435,19 @@
|
|
418
435
|
|
419
436
|
})
|
420
437
|
},
|
438
|
+
getstreets(){
|
439
|
+
new HttpResetClass().load("POST", `${this.$androidUtil.getProxyUrl()}/rs/sql/safe_singleTable_OrderBy`, {data:{items:"*",tablename:"t_street",orderitem:"id",condition:`f_orgid = '${this.userlogin.orgid}' `}}, {resolveMsg: null, rejectMsg: null}).then((res)=>{
|
440
|
+
////tag)
|
441
|
+
this.streets=[]
|
442
|
+
if(res.data.length>0){
|
443
|
+
this.streets.push({label:"全部",value:""})
|
444
|
+
res.data.forEach((result)=>{
|
445
|
+
this.streets.push({label:result.f_street,value:result.f_street})
|
446
|
+
})
|
447
|
+
}
|
448
|
+
|
449
|
+
})
|
450
|
+
},
|
421
451
|
//获取抄表册
|
422
452
|
async Mreadibook(){
|
423
453
|
this.cbc=[]
|