safecheck-client 3.0.33-3 → 3.0.33-6
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 +133 -133
- package/src/App.vue +31 -31
- package/src/filiale/dexin/android/SafecheckDevices.vue +1 -1
- package/src/filiale/dexin/android/WebMeterOpen.vue +1 -1
- package/src/filiale/fugou/pc/CheckBook.vue +301 -301
- package/src/filiale/fugou/pc/CheckBookDetails.vue +161 -161
- package/src/filiale/fugou/pc/CheckBookEntry.vue +66 -66
- package/src/filiale/fugou/pc/CheckBookList.vue +366 -366
- package/src/filiale/fugou/pc/CheckBookSearchArea.vue +560 -560
- package/src/filiale/fugou/pc/CheckBookSearchUser.vue +651 -651
- package/src/filiale/fugou/pc/checkPlanList.vue +371 -371
- package/src/filiale/wensu/pc/DefectPaperNew.vue +1 -1
- package/src/filiale/wensu/pc/PrintMaterialBill.vue +172 -172
- package/src/filiale/wensu/pc/SelectCheckPlan.vue +342 -342
- package/src/filiale/wensu/pc/checkUserList.vue +8 -8
- package/src/filiale/wenxi/android/SafecheckUserInfo.vue +651 -651
- package/src/main.js +33 -33
@@ -246,8 +246,8 @@
|
|
246
246
|
>
|
247
247
|
</v-select>
|
248
248
|
</div>
|
249
|
-
|
250
|
-
<label class="font_normal_body"
|
249
|
+
<div class="form-group col-sm-4" >
|
250
|
+
<label class="font_normal_body">安检筛选:</label>
|
251
251
|
<v-select
|
252
252
|
class="select select_list"
|
253
253
|
:value.sync="model.f_hasHousehold"
|
@@ -259,7 +259,7 @@
|
|
259
259
|
value-single
|
260
260
|
>
|
261
261
|
</v-select>
|
262
|
-
</div
|
262
|
+
</div>
|
263
263
|
|
264
264
|
</div>
|
265
265
|
</div>
|
@@ -358,7 +358,7 @@
|
|
358
358
|
gasproperties:[],//用气性质
|
359
359
|
meter_classifys:[],//气表类型
|
360
360
|
entry_status: this.$appdata.getParam('安检状态')?[{label: '全部', value: ''}, ...this.$appdata.getParam('安检状态')]:[{label: '全部', value: ''}],
|
361
|
-
hasHousehold:[{label:"全部",value:""},{label:"
|
361
|
+
hasHousehold:[{label:"全部",value:""},{label:"入户",value:"入户"},{label:"未入户",value:"未入户"}],
|
362
362
|
yearCheckList:[{label:"全部",value:""},{label:"已在计划中",value:"ua.f_plan_id is not null"},{label:"未在计划中",value:"ua.f_plan_id is null"}],
|
363
363
|
sliceArea:[],
|
364
364
|
meterbooks:[],
|
@@ -399,11 +399,11 @@
|
|
399
399
|
selfSearch (args) {
|
400
400
|
//tag)
|
401
401
|
args.condition += ` and ui.f_filialeid='${this.userlogin.orgid}'`
|
402
|
-
|
403
|
-
args.condition +=` and
|
402
|
+
if(args.model.f_hasHousehold=='入户'){
|
403
|
+
args.condition +=` and ua.F_LAST_CHECK_STATE='入户'`
|
404
404
|
}else if(args.model.f_hasHousehold=='未入户'){
|
405
|
-
args.condition +=` and (
|
406
|
-
}
|
405
|
+
args.condition +=` and (ua.F_LAST_CHECK_STATE !='入户' or ua.F_LAST_CHECK_STATE is null)`
|
406
|
+
}
|
407
407
|
if(this.uploadCodeCondition){
|
408
408
|
args.condition +=` and ${this.uploadCodeCondition}`
|
409
409
|
}
|