safecheck-client 3.0.32-25 → 3.0.32-26
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 +1 -1
- package/src/components/rongcheng/DefectPaper.vue +4 -1
- package/src/components/rongcheng/SafecheckUserInfo.vue +1 -0
- package/src/filiale/dexin/android/SafecheckDevices.vue +13 -4
- package/src/filiale/dexin/android/SafecheckOrderV.vue +2375 -2353
- package/src/filiale/fugou/pc/AddToCheckBook.vue +160 -160
- package/src/filiale/fugou/pc/CheckBookDetails.vue +161 -194
- package/src/filiale/fugou/pc/CheckBookEntry.vue +6 -1
- package/src/filiale/fugou/pc/CheckBookList.vue +1 -1
- package/src/filiale/fugou/pc/CheckBookSearchArea.vue +560 -560
- package/src/filiale/fugou/pc/CheckBookSearchUser.vue +651 -634
- package/src/filiale/fugou/pc/PlanManage.vue +1019 -951
- package/src/filiale/fugou/pc/checkPlanList.vue +371 -368
- package/src/filiale/fugou/pc.js +3 -0
- package/src/filiale/qingjian/android/SafecheckOrderV.vue +1 -0
- package/src/filiale/qingjian/android/SafecheckUserInfo.vue +4 -0
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "safecheck-client",
|
3
3
|
"//": "主分支版本别乱升,测试包的版本直接发包(建议使用1.XX.XX-XXX格式作为测试包,不要频繁升级第三位版本号),别提交版本号。切了分支切记把主分支版本升了,保证主分支始终是最高版本!!!!!",
|
4
|
-
"version": "3.0.32-
|
4
|
+
"version": "3.0.32-26",
|
5
5
|
"description": "安检模块 前端组件",
|
6
6
|
"author": "丁新 <417755458@qq.com>",
|
7
7
|
"license": "ISC",
|
@@ -407,7 +407,7 @@
|
|
407
407
|
defectType:[],
|
408
408
|
userTypes:[{label: '民用', value: '民用'}, {label: '非民用', value: '非民用'}],
|
409
409
|
defectLeave:'',
|
410
|
-
defectLeaveList:[{label:'全部',value:''},{label:'一级隐患',value:'一级隐患'},{label:'二级隐患',value:'二级隐患'},{label:'三级隐患',value:'三级隐患'}],
|
410
|
+
defectLeaveList:[{label:'全部',value:''},{label:'一级隐患',value:'一级隐患'},{label:'二级隐患',value:'二级隐患'},{label:'三级隐患',value:'三级隐患'},{label: '其他隐患'}],
|
411
411
|
thead: '',
|
412
412
|
headData: ['入户状态','用户名','用户电话','用户地址','安检时间','安检员','计划名','是否有隐患','隐患数','一级隐患数','一级隐患','二级隐患数','二级隐患','三级隐患数','三级隐患','其他隐患','隐患内容'],
|
413
413
|
bodyData: ['f_entry_status','f_user_name','f_user_phone','f_address','f_offsite_time','f_checker_name','f_plan_name','f_has_defect','f_defect_count','f_fist_count','f_fist_content','f_second_count','f_second_content','f_third_count','f_third_content','f_other_count','f_defect_content'],
|
@@ -468,6 +468,9 @@
|
|
468
468
|
if(this.defectLeave=='三级隐患'){
|
469
469
|
args.condition += ` and f_third_count > 0`
|
470
470
|
}
|
471
|
+
if(this.defectLeave=='其他隐患'){
|
472
|
+
args.condition += ` and f_other_count > 0`
|
473
|
+
}
|
471
474
|
}
|
472
475
|
if(this.defectType.length>0){
|
473
476
|
args.condition += ` and (`
|
@@ -771,7 +771,7 @@ export default {
|
|
771
771
|
//tag ===> ' + JSON.stringify(Number(this.gasDeviation)))
|
772
772
|
// 计算差值是否在范围内
|
773
773
|
if (Math.abs(this.f_items[this.f_gas_aberrant_number.index].f_item_value) > Number(this.gasDeviation)|| Math.abs(this.f_items[this.f_gas_aberrant_number.index].f_item_value) < Number(this.gasDeviation) * -1) {
|
774
|
-
this.f_items[this.f_gas_aberrant_number.index].f_is_defect = true
|
774
|
+
// this.f_items[this.f_gas_aberrant_number.index].f_is_defect = true
|
775
775
|
this.f_items[this.f_gas_aberrant_number.index].f_deal_dispose = '未处理'
|
776
776
|
this.$showMessage('有差值请再次核对')
|
777
777
|
if (this.paper.f_meter_type.indexOf('卡表') > 0 && Math.abs(this.f_items[this.f_gas_aberrant_number.index].f_item_value) <= 1){
|
@@ -816,7 +816,7 @@ export default {
|
|
816
816
|
//tag ===> ' + JSON.stringify(Number(this.feeDeviation)))
|
817
817
|
// 计算差值是否在范围内
|
818
818
|
if (Math.abs(this.f_items[this.f_fee_aberrant_number.index].f_item_value) > Number(this.feeDeviation)) {
|
819
|
-
this.f_items[this.f_fee_aberrant_number.index].f_is_defect = true
|
819
|
+
// this.f_items[this.f_fee_aberrant_number.index].f_is_defect = true
|
820
820
|
this.f_items[this.f_fee_aberrant_number.index].f_deal_dispose = '未处理'
|
821
821
|
this.$showMessage('有差值请再次核对')
|
822
822
|
if (this.paper.f_meter_type.indexOf('卡表') > 0 && Math.abs(this.f_items[this.f_gas_aberrant_number.index].f_item_value) <= 1){
|
@@ -851,7 +851,7 @@ export default {
|
|
851
851
|
//tag ===> ' + JSON.stringify(Number(this.feeDeviation)))
|
852
852
|
// 计算差值是否在范围内
|
853
853
|
if (Math.abs(this.f_items[this.f_fee_aberrant_number.index].f_item_value) > Number(this.feeDeviation)) {
|
854
|
-
this.f_items[this.f_fee_aberrant_number.index].f_is_defect = true
|
854
|
+
// this.f_items[this.f_fee_aberrant_number.index].f_is_defect = true
|
855
855
|
this.f_items[this.f_fee_aberrant_number.index].f_deal_dispose = '未处理'
|
856
856
|
this.$showMessage('有差值请再次核对')
|
857
857
|
if (this.paper.f_meter_type.indexOf('卡表') > 0 && Math.abs(this.f_items[this.f_gas_aberrant_number.index].f_item_value) <= 1){
|
@@ -889,7 +889,7 @@ export default {
|
|
889
889
|
// 计算差值是否在范围内
|
890
890
|
//tag)
|
891
891
|
if (Math.abs(this.f_items[this.f_meter_aberrant_number1.index].f_item_value) > Number(this.meterbase)){
|
892
|
-
this.f_items[this.f_meter_aberrant_number1.index].f_is_defect = true
|
892
|
+
// this.f_items[this.f_meter_aberrant_number1.index].f_is_defect = true
|
893
893
|
this.$showMessage('有差值请再次核对')
|
894
894
|
if (this.paper.f_meter_type.indexOf('卡表') > 0 && Math.abs(this.f_items[this.f_gas_aberrant_number.index].f_item_value) <= 1){
|
895
895
|
this.f_items[this.f_gas_aberrant_number.index].f_is_defect = false
|
@@ -1128,6 +1128,15 @@ export default {
|
|
1128
1128
|
} else if (this.f_items[f].f_item_name == '累购金额') {
|
1129
1129
|
//tag)
|
1130
1130
|
this.f_total_fee.index = f
|
1131
|
+
}else if(this.f_items[f].f_item_name == '表基数'){
|
1132
|
+
this.f_fee_base.index = f
|
1133
|
+
this.$watch('f_items[' + f + '].f_item_value', function () {
|
1134
|
+
this.getFeeAberrantNumber('已用金额')
|
1135
|
+
})
|
1136
|
+
this.f_table_base.index = f
|
1137
|
+
this.$watch('f_items[' + f + '].f_item_value', function () {
|
1138
|
+
this.getGasAberrantNumber('已用气量')
|
1139
|
+
})
|
1131
1140
|
} else if (this.f_items[f].f_item_name == '已用金额') {
|
1132
1141
|
//tag)
|
1133
1142
|
this.f_fee_base.index = f
|