safecheck-client 3.0.35-gongyi-3 → 3.0.35-gongyi-6
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/defect/DefectPaperWeiXiu.vue +2 -2
- package/src/components/paper/PaperList.vue +4 -1
- package/src/components/pc/CheckBookList.vue +8 -11
- package/src/components/pc/CheckBookManage.vue +52 -55
- package/src/components/querycheckpaper/CheckSearchUser.vue +6 -5
- package/src/components/report/CheckPlanAreaList.vue +13 -4
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.35-gongyi-
|
4
|
+
"version": "3.0.35-gongyi-6",
|
5
5
|
"description": "安检模块 前端组件",
|
6
6
|
"author": "丁新 <417755458@qq.com>",
|
7
7
|
"license": "ISC",
|
@@ -446,8 +446,8 @@
|
|
446
446
|
defectLeave:'',
|
447
447
|
defectType:'',
|
448
448
|
defectLeaveList:[],
|
449
|
-
headData: ['入户状态','用户编号','用户名','用户电话','用户小区','用户地址','安检时间','安检员','计划名','隐患总数','已处理数','未处理数','隐患数','隐患情况'],
|
450
|
-
bodyData: ['f_entry_status','f_userinfo_code','f_user_name','f_user_phone','f_residential_area','f_address','f_offsite_time','f_checker_name','f_plan_name','f_defect_count','f_repair_count','remainder','f_defect_count','f_defect_content']
|
449
|
+
headData: ['入户状态','用户编号','用户名','用户电话','用户小区','用户地址','安检时间','安检员','计划名','隐患总数','已处理数','未处理数','隐患数','隐患情况','用户类型','安装位置','机表类型','房屋类型'],
|
450
|
+
bodyData: ['f_entry_status','f_userinfo_code','f_user_name','f_user_phone','f_residential_area','f_address','f_offsite_time','f_checker_name','f_plan_name','f_defect_count','f_repair_count','remainder','f_defect_count','f_defect_content','f_user_type','f_position','F_METER_CLASSIFY','f_house_type']
|
451
451
|
}
|
452
452
|
},
|
453
453
|
props:{
|
@@ -438,7 +438,10 @@
|
|
438
438
|
'f_entry_status': '安检状态',
|
439
439
|
'f_offsite_time': '安检时间',
|
440
440
|
'f_upload_date':'上传时间',
|
441
|
-
'f_checker_name': '安检员'
|
441
|
+
'f_checker_name': '安检员',
|
442
|
+
'f_position':'安装位置',
|
443
|
+
'F_METER_CLASSIFY':'机表类型',
|
444
|
+
'f_house_type':'房屋类型',
|
442
445
|
},
|
443
446
|
fun: this.$login.f,
|
444
447
|
pcds:[],
|
@@ -15,7 +15,7 @@
|
|
15
15
|
condition=" f_checker_name = '{}'">
|
16
16
|
</role-selector-safe>
|
17
17
|
</div>
|
18
|
-
<div :class="$parent.$parent.style"
|
18
|
+
<div :class="$parent.$parent.style" >
|
19
19
|
<label class="font_normal_body">安检科室</label>
|
20
20
|
<right-tree-safe islist :userid="$parent.$parent.userid" :source="$parent.$parent.source" v-on:re-res="$parent.$parent.reres2" :textContent="'选择科室'" :selectData="''" v-ref:f_reciever>
|
21
21
|
</right-tree-safe>
|
@@ -59,8 +59,13 @@
|
|
59
59
|
condition="f_run_date <= '{}'">
|
60
60
|
</datepicker>
|
61
61
|
</div>
|
62
|
-
|
63
|
-
|
62
|
+
<div class="row" v-show="!$parent.$parent.$parent.showItem">
|
63
|
+
<div :class="$parent.$parent.style">
|
64
|
+
<label class="font_normal_body">安检册名</label>
|
65
|
+
<input style="width: 60%" type="text" class="input_search" v-model="model.f_check_book_name"
|
66
|
+
placeholder="安检册名" condition="f_check_book_name like '%{}%'">
|
67
|
+
</div>
|
68
|
+
</div>
|
64
69
|
<div :class="$parent.$parent.style" style="width: auto;margin-top:8px;float: right">
|
65
70
|
<export-excel-safe :data="$parent.$parent.exportParameter"
|
66
71
|
:field="$parent.$parent.excelHeaders"
|
@@ -78,14 +83,6 @@
|
|
78
83
|
|
79
84
|
|
80
85
|
</div>
|
81
|
-
<div class="row" v-show="!$parent.$parent.$parent.showItem">
|
82
|
-
<div :class="$parent.$parent.style">
|
83
|
-
<label class="font_normal_body">安检册名</label>
|
84
|
-
<input style="width: 60%" type="text" class="input_search" v-model="model.f_check_book_name"
|
85
|
-
placeholder="安检册名" condition="f_check_book_name like '%{}%'">
|
86
|
-
</div>
|
87
|
-
</div>
|
88
|
-
|
89
86
|
<div class="row" v-show="$parent.$parent.$parent.showItem">
|
90
87
|
<div :class="$parent.$parent.style2" style="margin: 0px">
|
91
88
|
<role-selector-safe
|
@@ -31,8 +31,8 @@
|
|
31
31
|
<export-excel-safe :data="$parent.$parent.searchData"
|
32
32
|
:field="$parent.$parent.excelHeaders"
|
33
33
|
progress="safeGetExportProgress"
|
34
|
-
sqlurl="rs/logic/SafeExportExcel" sql-name="
|
35
|
-
template-name='
|
34
|
+
sqlurl="rs/logic/SafeExportExcel" sql-name="getUserByCheckBook"
|
35
|
+
template-name='用户安检明细'></export-excel-safe>
|
36
36
|
|
37
37
|
|
38
38
|
<button class="button_spacing button_search" @click="search()">查询</button>
|
@@ -267,7 +267,7 @@
|
|
267
267
|
<nobr><input type="checkbox" v-model="$parent.$parent.$parent.bookAll"></input>全选</nobr>
|
268
268
|
</th>
|
269
269
|
<th>
|
270
|
-
<nobr><input
|
270
|
+
<nobr><input type="checkbox" v-model="$parent.$parent.$parent.bookCheckedAll"></input>本页全选</nobr>
|
271
271
|
</th>
|
272
272
|
<th>
|
273
273
|
<nobr>客户姓名</nobr>
|
@@ -297,8 +297,7 @@
|
|
297
297
|
</td>
|
298
298
|
<td style="text-align: center">
|
299
299
|
<nobr>
|
300
|
-
<input type="checkbox" :checked="$parent.$parent.$parent.pageCheckModel(row)"
|
301
|
-
@change="$parent.$parent.$parent.pageCheckChange(row, $event)"></input>
|
300
|
+
<input type="checkbox" :checked="$parent.$parent.$parent.pageCheckModel(row)"></input>
|
302
301
|
</nobr>
|
303
302
|
</td>
|
304
303
|
<td style="text-align: center">{{ row.f_user_name }}</td>
|
@@ -326,7 +325,7 @@
|
|
326
325
|
<!-- </div>-->
|
327
326
|
<div class="col-sm-6 form-group" style="margin-top: 20px" v-if="permission === 'c1' && showModal ">
|
328
327
|
<label class="font_normal_body">安检科室</label>
|
329
|
-
<right-tree islist :userid="userid" :source="source" v-on:re-res="reres" :textContent="选择科室" :selectData="" v-ref:f_reciever>
|
328
|
+
<right-tree islist :userid="userid" :source="source" v-on:re-res="reres" :textContent="选择科室" :selectData="''" v-ref:f_reciever>
|
330
329
|
</right-tree>
|
331
330
|
</div>
|
332
331
|
<div class="col-sm-6 form-group" style="margin-top: 20px" v-if="permission === 'c2' ">
|
@@ -438,11 +437,18 @@ export default {
|
|
438
437
|
return {
|
439
438
|
model: model,
|
440
439
|
criteriaShow: false,
|
441
|
-
excelHeaders: {
|
440
|
+
excelHeaders: {
|
441
|
+
"f_user_name":'客户姓名',
|
442
|
+
"f_userinfo_code":'客户编号',
|
443
|
+
"f_user_type":'客户类型',
|
444
|
+
"f_user_phone":'客户电话',
|
445
|
+
"f_address":'客户地址',
|
446
|
+
"f_check_book_name":'所属安检册'
|
447
|
+
},
|
442
448
|
checkBooks: [],
|
443
449
|
f_orgid: '',
|
444
450
|
bookAll: false,
|
445
|
-
|
451
|
+
bookCheckedAll:false,
|
446
452
|
bookList: [],
|
447
453
|
selectBook:'',
|
448
454
|
// init:false,
|
@@ -586,7 +592,7 @@ export default {
|
|
586
592
|
this.$showMessage('请选择安检册')
|
587
593
|
return
|
588
594
|
}
|
589
|
-
if (this.isSearch && (this.
|
595
|
+
if (this.isSearch && (this.bookAll || this.bookCheckedAll || this.bookList.length > 0) && this.model.rows.length > 0) {
|
590
596
|
let userCondition = ''
|
591
597
|
if (this.bookList.length < 1) {
|
592
598
|
console.log('bookCondition', this.bookCondition)
|
@@ -614,7 +620,7 @@ export default {
|
|
614
620
|
this.selectBook = ''
|
615
621
|
this.clearBook()
|
616
622
|
this.bookAll = false
|
617
|
-
this.
|
623
|
+
this.bookCheckedAll = false
|
618
624
|
this.bookList = []
|
619
625
|
this.showModal2 = false
|
620
626
|
this.$refs.paged.$refs.criteria.search()
|
@@ -625,7 +631,7 @@ export default {
|
|
625
631
|
this.$showMessage('请选择安检册')
|
626
632
|
return
|
627
633
|
}
|
628
|
-
if (this.isSearch && (this.
|
634
|
+
if (this.isSearch && (this.bookAll || this.bookCheckedAll || this.bookList.length > 0) && this.model.rows.length > 0) {
|
629
635
|
let userCondition = ''
|
630
636
|
if (this.bookList.length < 1) {
|
631
637
|
console.log('bookCondition', this.bookCondition)
|
@@ -653,7 +659,7 @@ export default {
|
|
653
659
|
this.selectBook = ''
|
654
660
|
this.clearBook()
|
655
661
|
this.bookAll = false
|
656
|
-
this.
|
662
|
+
this.bookCheckedAll = false
|
657
663
|
this.bookList = []
|
658
664
|
this.showModal3 = false
|
659
665
|
this.$refs.paged.$refs.criteria.search()
|
@@ -663,7 +669,7 @@ export default {
|
|
663
669
|
this.selectBook = ''
|
664
670
|
this.clearBook()
|
665
671
|
this.bookAll = false
|
666
|
-
this.
|
672
|
+
this.bookCheckedAll = false
|
667
673
|
this.bookList = []
|
668
674
|
this.showModal2 = false
|
669
675
|
this.$refs.paged.$refs.criteria.search()
|
@@ -672,7 +678,7 @@ export default {
|
|
672
678
|
this.selectBook = ''
|
673
679
|
this.clearBook()
|
674
680
|
this.bookAll = false
|
675
|
-
this.
|
681
|
+
this.bookCheckedAll = false
|
676
682
|
this.bookList = []
|
677
683
|
this.showModal3 = false
|
678
684
|
this.$refs.paged.$refs.criteria.search()
|
@@ -682,7 +688,7 @@ export default {
|
|
682
688
|
this.$showMessage('请选择查询未划分安检册的用户')
|
683
689
|
return
|
684
690
|
}
|
685
|
-
if (this.isSearch && (this.
|
691
|
+
if (this.isSearch && (this.bookAll ||this.bookCheckedAll || this.bookList.length > 0) && this.model.rows.length > 0) {
|
686
692
|
this.showModal2 = true
|
687
693
|
this.freshCheckBook()
|
688
694
|
return
|
@@ -694,7 +700,7 @@ export default {
|
|
694
700
|
this.$showMessage('请选择查询已划分安检册的用户')
|
695
701
|
return
|
696
702
|
}
|
697
|
-
if (this.isSearch && (this.
|
703
|
+
if (this.isSearch && ( this.bookAll ||this.bookCheckedAll|| this.bookList.length > 0) && this.model.rows.length > 0) {
|
698
704
|
this.showModal3 = true
|
699
705
|
this.freshCheckBook()
|
700
706
|
return
|
@@ -706,7 +712,7 @@ export default {
|
|
706
712
|
this.$showMessage('请选择查询已划分安检册的用户')
|
707
713
|
return
|
708
714
|
}
|
709
|
-
if (this.isSearch && (this.
|
715
|
+
if (this.isSearch && (this.bookAll ||this.bookCheckedAll|| this.bookList.length > 0) && this.model.rows.length > 0) {
|
710
716
|
let userCondition= ''
|
711
717
|
if (this.bookList.length < 1) {
|
712
718
|
console.log('bookCondition', this.bookCondition)
|
@@ -733,7 +739,7 @@ export default {
|
|
733
739
|
this.$showMessage('从安检册删除所选用户成功')
|
734
740
|
this.selectBook = ''
|
735
741
|
this.bookAll = false
|
736
|
-
this.
|
742
|
+
this.bookCheckedAll = false
|
737
743
|
this.clearBook()
|
738
744
|
this.bookList = []
|
739
745
|
this.showModal3 = false
|
@@ -747,7 +753,7 @@ export default {
|
|
747
753
|
this.$showMessage('请选择查询未划分安检册的用户')
|
748
754
|
return
|
749
755
|
}
|
750
|
-
if (this.isSearch && (this.
|
756
|
+
if (this.isSearch && (this.bookAll ||this.bookCheckedAll || this.bookList.length > 0) && this.model.rows.length > 0) {
|
751
757
|
this.showModal = true
|
752
758
|
return
|
753
759
|
}
|
@@ -799,7 +805,7 @@ export default {
|
|
799
805
|
this.clearBook()
|
800
806
|
this.bookList = []
|
801
807
|
this.bookAll = false
|
802
|
-
this.
|
808
|
+
this.bookCheckedAll = false
|
803
809
|
this.freshCheckBook()
|
804
810
|
this.$refs.paged.$refs.criteria.search()
|
805
811
|
}
|
@@ -809,7 +815,7 @@ export default {
|
|
809
815
|
console.log('66666666666', val)
|
810
816
|
console.log(this.model.rows)
|
811
817
|
this.bookAll = false
|
812
|
-
this.
|
818
|
+
this.bookCheckedAll = false
|
813
819
|
this.bookList = []
|
814
820
|
if (this.$refs.paged.$refs.criteria.model.f_orgid){
|
815
821
|
this.$refs.paged.$refs.criteria.search()
|
@@ -817,7 +823,7 @@ export default {
|
|
817
823
|
},
|
818
824
|
cancel () {
|
819
825
|
this.bookAll = false
|
820
|
-
this.
|
826
|
+
this.bookCheckedAll = false
|
821
827
|
this.bookList = []
|
822
828
|
this.clearBook()
|
823
829
|
this.showModal = false
|
@@ -825,25 +831,25 @@ export default {
|
|
825
831
|
},
|
826
832
|
checkModel (row) {
|
827
833
|
if (this.bookAll) {
|
828
|
-
console.log('row', this.bookAll, JSON.stringify(row))
|
834
|
+
//console.log('row', this.bookAll, JSON.stringify(row))
|
829
835
|
return true
|
830
836
|
} else {
|
831
837
|
if (this.bookList.findIndex(res => res === row.f_userinfo_id) !== -1) {
|
832
|
-
console.log('row1111', JSON.stringify(row))
|
838
|
+
//console.log('row1111', JSON.stringify(row))
|
833
839
|
return true
|
834
840
|
} else {
|
835
841
|
return false
|
836
842
|
}
|
837
843
|
}
|
838
844
|
},
|
839
|
-
pageCheckModel
|
840
|
-
|
841
|
-
|
842
|
-
|
845
|
+
pageCheckModel(row){
|
846
|
+
if (this.bookCheckedAll){
|
847
|
+
console.log('benye', this.bookAll, JSON.stringify(row))
|
848
|
+
//全选被选中,每行row也被选中
|
843
849
|
return true
|
844
|
-
}
|
850
|
+
}else {
|
845
851
|
if (this.bookList.findIndex(res => res === row.f_userinfo_id) !== -1) {
|
846
|
-
console.log('
|
852
|
+
//console.log('本页', JSON.stringify(row))
|
847
853
|
return true
|
848
854
|
} else {
|
849
855
|
return false
|
@@ -857,15 +863,7 @@ export default {
|
|
857
863
|
} else {
|
858
864
|
this.bookList.splice(this.bookList.findIndex(res => res === row.f_userinfo_id), 1)
|
859
865
|
}
|
860
|
-
|
861
|
-
},
|
862
|
-
pageCheckChange (row, e) {
|
863
|
-
console.log('e', e.target.checked)
|
864
|
-
if (e.target.checked) {
|
865
|
-
this.bookList.push(row.f_userinfo_id)
|
866
|
-
} else {
|
867
|
-
this.bookList.splice(this.bookList.findIndex(res => res === row.f_userinfo_id), 1)
|
868
|
-
}
|
866
|
+
console.log('aaaaa', JSON.stringify(this.bookList))
|
869
867
|
},
|
870
868
|
getRes (obj) {
|
871
869
|
this.checkBook.f_orgid = obj.resids[0]
|
@@ -879,7 +877,7 @@ export default {
|
|
879
877
|
selfSearch (args) {
|
880
878
|
this.isSearch = true
|
881
879
|
this.bookAll = false
|
882
|
-
this.
|
880
|
+
this.bookCheckedAll = false
|
883
881
|
this.bookList = []
|
884
882
|
// if (this.$refs.paged.$refs.criteria.model.f_orgid){
|
885
883
|
// args.condition += `f_orgid in ${this.$refs.paged.$refs.criteria.model.f_orgid}`
|
@@ -922,20 +920,6 @@ export default {
|
|
922
920
|
})
|
923
921
|
}
|
924
922
|
},
|
925
|
-
watch: {
|
926
|
-
"isallchecked"(val){
|
927
|
-
if (val) {
|
928
|
-
// 全选
|
929
|
-
this.$refs.grid.model.rows.forEach((row=>{
|
930
|
-
this.bookList.push(row.f_userinfo_id)
|
931
|
-
}))
|
932
|
-
} else {
|
933
|
-
// 取消全选
|
934
|
-
this.isallchecked = false
|
935
|
-
this.bookList = []
|
936
|
-
}
|
937
|
-
}
|
938
|
-
},
|
939
923
|
ready () {
|
940
924
|
// 获取片区
|
941
925
|
this.getSliceArea()
|
@@ -953,7 +937,20 @@ export default {
|
|
953
937
|
// this.init=true
|
954
938
|
this.freshCheckBook()
|
955
939
|
this.getChecker()
|
956
|
-
}
|
940
|
+
},
|
941
|
+
watch: {
|
942
|
+
'bookCheckedAll' (val) {
|
943
|
+
if (val){
|
944
|
+
this.$refs.paged.$refs.grid.model.rows.forEach(row=>{
|
945
|
+
this.bookList.push(row.f_userinfo_id)
|
946
|
+
})
|
947
|
+
console.log('this.bookList', JSON.stringify(this.bookList))
|
948
|
+
}else {
|
949
|
+
this.bookList = []
|
950
|
+
console.log('this.bookList', JSON.stringify(this.bookList))
|
951
|
+
}
|
952
|
+
}
|
953
|
+
},
|
957
954
|
}
|
958
955
|
</script>
|
959
956
|
<style scoped>
|
@@ -456,9 +456,7 @@
|
|
456
456
|
<td v-bind:class="{newcolor:row.code==1}" style="text-align: center">{{ row.f_checker_name }}</td>
|
457
457
|
<td v-bind:class="{newcolor:row.code==1}" style="text-align: center">{{ row.f_last_check_date }}</td>
|
458
458
|
<td v-bind:class="{newcolor:row.code==1}" style="text-align: center">{{ row.f_last_check_state }}</td>
|
459
|
-
<td v-bind:class="{newcolor:row.code==1}" style="text-align: center">
|
460
|
-
{{row.f_last_check_result }}
|
461
|
-
</td>
|
459
|
+
<td v-bind:class="{newcolor:row.code==1}" style="text-align: center">{{row.f_last_check_result }}</td>
|
462
460
|
</template>
|
463
461
|
</data-grid>
|
464
462
|
</criteria-paged>
|
@@ -506,7 +504,7 @@ export default {
|
|
506
504
|
|
507
505
|
},
|
508
506
|
excelHeaders: {
|
509
|
-
//用户编号 用户名称 用户电话 安检次数 用户类型 小区名称 地址 安检日期 安检状态 安检结果
|
507
|
+
//用户编号 用户名称 用户电话 安检次数 用户类型 小区名称 地址 安检日期 安检状态 安检结果 气表类型 安装位置 房屋类型
|
510
508
|
|
511
509
|
'f_userinfo_code': '用户编号',
|
512
510
|
'f_user_name': '用户名称',
|
@@ -519,7 +517,10 @@ export default {
|
|
519
517
|
'f_address': '地址',
|
520
518
|
'f_last_check_date': '安检日期',
|
521
519
|
'f_last_check_state': '安检状态',
|
522
|
-
'f_last_check_result': '安检结果'
|
520
|
+
'f_last_check_result': '安检结果',
|
521
|
+
'f_position':'安装位置',
|
522
|
+
'F_METER_CLASSIFY':'机表类型',
|
523
|
+
'f_house_type':'房屋类型',
|
523
524
|
},
|
524
525
|
model: new PagedList('rs/sql/根据安检员查询用户档案', 20, {
|
525
526
|
orderitem: "'f_last_check_date'",
|
@@ -138,9 +138,11 @@
|
|
138
138
|
<input type="checkbox" id="f_checker_name" value="f_checker_name" v-model="$parent.$parent.nameForSql"/>
|
139
139
|
<label for="f_checker_name">安检员</label>
|
140
140
|
<input type="checkbox" id="f_dep" value="f_dep" v-model="$parent.$parent.nameForSql"/>
|
141
|
-
<label for="
|
141
|
+
<label for="f_dep">安检科室</label>
|
142
142
|
<input type="checkbox" id="f_user_number" value="f_user_number" v-model="$parent.$parent.nameForSql"/>
|
143
|
-
<label for="
|
143
|
+
<label for="f_user_number">档案数量</label>
|
144
|
+
<input type="checkbox" id="f_user_type" value="f_user_type" v-model="$parent.$parent.nameForSql"/>
|
145
|
+
<label for="f_user_type">用户类型</label>
|
144
146
|
</div>
|
145
147
|
</div>
|
146
148
|
</div>
|
@@ -159,6 +161,7 @@
|
|
159
161
|
<th v-if="$parent.$parent.$parent.nameForSql.includes('f_checker_name')"><nobr>安检员</nobr></th>
|
160
162
|
<th v-if="$parent.$parent.$parent.nameForSql.includes('f_dep')"><nobr>安检科室</nobr></th>
|
161
163
|
<th v-if="$parent.$parent.$parent.nameForSql.includes('f_user_number')"><nobr>档案数量</nobr></th>
|
164
|
+
<th v-if="$parent.$parent.$parent.nameForSql.includes('f_user_type')"><nobr>用户类型</nobr></th>
|
162
165
|
<th>
|
163
166
|
<nobr>计划总数</nobr>
|
164
167
|
</th>
|
@@ -198,6 +201,7 @@
|
|
198
201
|
<td style="text-align:center" :class="{'td-0':row.f_checker_name==undefined,'td-1':model.rows.length!=($index+1)&&row.f_checker_name.indexOf('*&')==-1,'td-2':model.rows.length!=($index+1)&&row.f_checker_name.indexOf('*&')!=-1,'td-3':model.rows.length==($index+1)&&row.f_checker_name.indexOf('*&')!=-1,'td-4':model.rows.length==($index+1)&&row.f_checker_name.indexOf('*&')==-1}" v-if="$parent.$parent.$parent.nameForSql.includes('f_checker_name')">{{row.f_checker_name.indexOf('*&')!=-1?'':row.f_checker_name}}</td>
|
199
202
|
<td style="text-align:center" v-if="$parent.$parent.$parent.nameForSql.includes('f_dep')">{{row.f_dep}}</td>
|
200
203
|
<td style="text-align:center" v-if="$parent.$parent.$parent.nameForSql.includes('f_user_number')">{{row.f_user_number}}</td>
|
204
|
+
<td style="text-align:center" v-if="$parent.$parent.$parent.nameForSql.includes('f_user_type')">{{row.f_user_type}}</td>
|
201
205
|
<td style="text-align:center">{{row.f_plan_total}}</td>
|
202
206
|
<td style="text-align:center">{{row.f_weijian}}</td>
|
203
207
|
<td style="text-align:center"><nobr>{{row.f_yijian}}</nobr></td>
|
@@ -319,6 +323,8 @@
|
|
319
323
|
this.exportExcelField.f_checker_name='小区名称'
|
320
324
|
}if (ff==='f_user_number') {
|
321
325
|
this.exportExcelField.f_checker_name='档案数量'
|
326
|
+
}if (ff==='f_user_type'){
|
327
|
+
this.exportExcelField.f_user_type='用户类型'
|
322
328
|
}
|
323
329
|
}
|
324
330
|
},
|
@@ -372,6 +378,9 @@
|
|
372
378
|
if(this.f_dep){
|
373
379
|
args.condition += ` and f_dep = '${this.f_dep}'`
|
374
380
|
}
|
381
|
+
if(this.f_user_type){
|
382
|
+
args.condition += ` and f_user_type = '${this.f_user_type}'`
|
383
|
+
}
|
375
384
|
this.model.f_bv=this.$refs.paged.$refs.cri.model.f_bv?this.$refs.paged.$refs.cri.model.f_bv:''
|
376
385
|
this.model.f_rh=this.$refs.paged.$refs.cri.model.f_rh?this.$refs.paged.$refs.cri.model.f_rh:''
|
377
386
|
this.$refs.paged.$refs.grid.$el.scrollTop = 0
|
@@ -386,7 +395,7 @@
|
|
386
395
|
|
387
396
|
// 拼接groupName1
|
388
397
|
getGroupName1 () {
|
389
|
-
var temp=['f_plan_month','f_no_checkplan','f_residential_area','f_plan_name','f_checker_name','f_dep','f_user_number']
|
398
|
+
var temp=['f_plan_month','f_no_checkplan','f_residential_area','f_plan_name','f_checker_name','f_dep','f_user_number','f_user_type']
|
390
399
|
var newtemp=[]
|
391
400
|
|
392
401
|
for (var i=0;i<temp.length;i++){
|
@@ -423,7 +432,7 @@
|
|
423
432
|
}
|
424
433
|
this.listflag=true
|
425
434
|
console.log(this.model.rows)
|
426
|
-
var temp=['f_plan_month','f_no_checkplan','f_residential_area','f_plan_name','f_checker_name','f_user_number']
|
435
|
+
var temp=['f_plan_month','f_no_checkplan','f_residential_area','f_plan_name','f_checker_name','f_user_number','f_user_type']
|
427
436
|
var newtemp=[]
|
428
437
|
for (var i=0;i<temp.length;i++){
|
429
438
|
for (var j=0;j<this.nameForSql.length;j++){
|