1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
| /**
| 入驻小区
| **/
| (function (vc) {
| var DEFAULT_PAGE = 1;
| var DEFAULT_ROWS = 10;
| vc.extends({
| data: {
| visitManageInfo: {
| visits: [],
| total: 0,
| records: 1,
| moreCondition: false,
| visitId: '',
| conditions: {
| visitId: '',
| nameLike: '',
| visitGender: '',
| phoneNumberLike: '',
| roomNameLike: '',
| ownerNameLike: '',
| communityId: '',
| typeId: '',
| state: '',
| queryStartTime:'',
| queryEndTime:''
| }
| },
| visitTypeList: [],
| stateList: [],
| },
| _initMethod: function () {
| $that.listVisitTypes();
| vc.getDict('visit', 'state', function (_data) {
| $that.stateList = _data;
| })
| $that._listVisits(DEFAULT_PAGE, DEFAULT_ROWS);
| vc.initDateTime('queryStartTime',function(_value){
| $that.visitManageInfo.conditions.queryStartTime = _value;
| });
| vc.initDateTime('queryEndTime',function(_value){
| $that.visitManageInfo.conditions.queryEndTime = _value;
| });
| },
| _initEvent: function () {
|
| vc.on('visitManage', 'listVisit', function (_param) {
| $that._listVisits(DEFAULT_PAGE, DEFAULT_ROWS);
| });
| vc.on('pagination', 'page_event', function (_currentPage) {
| $that._listVisits(_currentPage, DEFAULT_ROWS);
| });
| },
| methods: {
| _listVisits: function (_page, _rows) {
|
| $that.visitManageInfo.conditions.page = _page;
| $that.visitManageInfo.conditions.row = _rows;
| $that.visitManageInfo.conditions.communityId = vc.getCurrentCommunity().communityId;
| let param = {
| params: $that.visitManageInfo.conditions
| };
|
| param.params.iotApiCode='listVisitBmoImpl';
|
| //发送get请求
| vc.http.apiGet('/iot.getOpenApi',
| param,
| function (json, res) {
| let _json = JSON.parse(json);
| $that.visitManageInfo.total = _json.total;
| $that.visitManageInfo.records = _json.records;
| $that.visitManageInfo.visits = _json.data;
| vc.emit('pagination', 'init', {
| total: $that.visitManageInfo.records,
| currentPage: _page,
| dataCount:_json.total
| });
| }, function (errInfo, error) {
| console.log('请求失败处理');
| }
| );
| },
| _queryVisitMethod: function () {
| $that._listVisits(DEFAULT_PAGE, DEFAULT_ROWS);
| },
| _resetVisitMethod: function () {
| $that.visitManageInfo.conditions = {
| visitId: '',
| nameLike: '',
| visitGender: '',
| phoneNumberLike: '',
| roomNameLike: '',
| ownerNameLike: '',
| communityId: '',
| typeId: '',
| state: '',
| queryStartTime:'',
| queryEndTime:''
| }
| $that._listVisits(DEFAULT_PAGE, DEFAULT_ROWS);
| },
| _moreCondition: function () {
| if ($that.visitManageInfo.moreCondition) {
| $that.visitManageInfo.moreCondition = false;
| } else {
| $that.visitManageInfo.moreCondition = true;
| }
| },
| _toIotVisit: function () {
| vc.jumpToIot('/#/pages/accessControl/visitManage');
| },
| listVisitTypes: function () {
| let param = {
| params: {
| page: -1,
| row: 100,
| communityId: vc.getCurrentCommunity().communityId,
| iotApiCode:'listVisitTypeBmoImpl'
| }
| }
| vc.http.apiGet('/iot.getOpenApi',
| param,
| function (json, res) {
| let _json = JSON.parse(json);
| $that.visitTypeList = [{
| name: '访客类型',
| typeId: ''
| }];
| _json.data.forEach(item => {
| $that.visitTypeList.push(item);
| });
| }, function (errInfo, error) {
| console.log('请求失败处理');
| }
| )
| },
| switchVisitType: function(_visitTypt) {
| $that.visitManageInfo.conditions.typeId = _visitTypt.typeId;
| $that._listVisits(DEFAULT_PAGE, DEFAULT_ROWS);
| },
| _toVisitDetail: function (_visit) {
| vc.jumpToIot('/#/pages/accessControl/visitDetail?visitId=' + _visit.visitId + "&phoneNumber=" + _visit.phoneNumber);
| },
| }
| });
| })(window.vc);
|
|