|
@@ -105,7 +105,7 @@ const PCA = {
|
105
|
105
|
click: this.showPicker
|
106
|
106
|
}
|
107
|
107
|
},
|
108
|
|
- this.selected.length ? this.selected.join(" ") : "请选择区域地点"
|
|
108
|
+ this.selected.length ? this.selected.join(" ") : "请选择校区区域地点"
|
109
|
109
|
);
|
110
|
110
|
},
|
111
|
111
|
mounted() {},
|
|
@@ -145,49 +145,89 @@ const PCA = {
|
145
|
145
|
},
|
146
|
146
|
getPlaceData() {
|
147
|
147
|
this.$parent.$parent.$parent.$parent.$parent.loadShow = true;
|
148
|
|
- var that = this;
|
149
|
148
|
this.$http
|
150
|
149
|
.post("service/user/data/fetchDataList/place", {
|
151
|
150
|
idx: 0,
|
152
|
151
|
sum: 1000,
|
153
|
|
- area: {
|
154
|
|
- wechatAreaId: ""
|
155
|
|
- }
|
156
|
152
|
})
|
157
|
153
|
.then(res => {
|
158
|
|
- var data = res.data.list;
|
159
|
|
- for (var i = 0; i < data.length; i++) {
|
160
|
|
- for (var j = 0; j < that.selectData.length; j++) {
|
161
|
|
- if (data[i].area.id == that.selectData[j].value) {
|
162
|
|
- that.selectData[j].children.push({
|
163
|
|
- text: data[i].place,
|
164
|
|
- value: data[i].id
|
165
|
|
- });
|
166
|
|
- }
|
|
154
|
+ let data = res.data.list;
|
|
155
|
+ // for (var i = 0; i < data.length; i++) {
|
|
156
|
+ // for (var j = 0; j < that.selectData.length; j++) {
|
|
157
|
+ // if (data[i].area.id == that.selectData[j].value) {
|
|
158
|
+ // that.selectData[j].children.push({
|
|
159
|
+ // text: data[i].place,
|
|
160
|
+ // value: data[i].id
|
|
161
|
+ // });
|
|
162
|
+ // }
|
|
163
|
+ // }
|
|
164
|
+ // }
|
|
165
|
+ // -------------------------start
|
|
166
|
+ console.log(data, 'data');
|
|
167
|
+ this.selectData = [];
|
|
168
|
+ const collectionBranch = {};
|
|
169
|
+ data.forEach((v) => {
|
|
170
|
+ if(collectionBranch[v.area.branch]){
|
|
171
|
+ collectionBranch[v.area.branch].push(v);
|
|
172
|
+ }else{
|
|
173
|
+ this.selectData.push({text:v.area.branchName, value: v.area.branch, children: []})
|
|
174
|
+ collectionBranch[v.area.branch] = [v];
|
167
|
175
|
}
|
168
|
|
- }
|
169
|
|
- console.log(that.selectData);
|
|
176
|
+ })
|
|
177
|
+
|
|
178
|
+ this.selectData.forEach(v => {
|
|
179
|
+ let areaByPlace = collectionBranch[v.value];
|
|
180
|
+ let areaCollection = {};
|
|
181
|
+ let areaArr = [];
|
|
182
|
+ areaByPlace.forEach(vv => {
|
|
183
|
+ if(areaCollection[vv.area.id]){
|
|
184
|
+ areaCollection[vv.area.id].push({text:vv.place, value: vv.id});
|
|
185
|
+ }else{
|
|
186
|
+ areaArr.push({text:vv.area.area, value: vv.area.id, children: []})
|
|
187
|
+ areaCollection[vv.area.id] = [{text:vv.place, value: vv.id}];
|
|
188
|
+ }
|
|
189
|
+ })
|
|
190
|
+ areaArr.forEach(vv => {
|
|
191
|
+ vv.children = areaCollection[vv.value];
|
|
192
|
+ })
|
|
193
|
+ v.children = areaArr;
|
|
194
|
+ })
|
|
195
|
+
|
|
196
|
+ console.log(collectionBranch,'collectionBranch集合');
|
|
197
|
+ console.log(this.selectData,'地点');
|
|
198
|
+ // this.picker = this.$createCascadePicker({
|
|
199
|
+ // title: "校区区域地点选择",
|
|
200
|
+ // data: this.selectData,
|
|
201
|
+ // selectedIndex: [0, 0, 0],
|
|
202
|
+ // onSelect: this.selectHandler
|
|
203
|
+ // });
|
|
204
|
+ // -------------------------end
|
170
|
205
|
let loginUser = JSON.parse(localStorage.getItem("loginUser"));
|
171
|
|
- let areaIndex = that.selectData.findIndex(
|
|
206
|
+ let branchIndex = this.selectData.findIndex(
|
|
207
|
+ v => v.value == loginUser.branch.id
|
|
208
|
+ );
|
|
209
|
+
|
|
210
|
+ let areaIndex = this.selectData[branchIndex].children.findIndex(
|
172
|
211
|
v => v.value == loginUser.place.area.id
|
173
|
212
|
);
|
174
|
|
- let placeIndex = that.selectData
|
175
|
|
- .find(v => v.value == loginUser.place.area.id)
|
176
|
|
- .children.findIndex(v => v.value == loginUser.place.id);
|
177
|
|
- that.selectIndex = [areaIndex, placeIndex];
|
178
|
|
- that.picker = that.$createCascadePicker({
|
179
|
|
- title: "区域地点选择",
|
180
|
|
- data: that.selectData,
|
181
|
|
- selectedIndex: that.selectIndex,
|
182
|
|
- onSelect: that.selectHandler
|
|
213
|
+
|
|
214
|
+ let placeIndex = this.selectData[branchIndex].children[areaIndex].children.findIndex(v => v.value == loginUser.place.id);
|
|
215
|
+
|
|
216
|
+ this.selectIndex = [branchIndex, areaIndex, placeIndex];
|
|
217
|
+ this.picker = this.$createCascadePicker({
|
|
218
|
+ title: "校区区域地点选择",
|
|
219
|
+ data: this.selectData,
|
|
220
|
+ selectedIndex: this.selectIndex,
|
|
221
|
+ onSelect: this.selectHandler
|
183
|
222
|
});
|
184
|
223
|
this.$parent.$parent.$parent.$parent.$parent.loadShow = false;
|
185
|
224
|
});
|
186
|
225
|
},
|
187
|
226
|
getParamsPlace() {
|
188
|
227
|
var data = JSON.parse(localStorage.getItem("loginUser"));
|
189
|
|
- this.selected[0] = data.place.area.area;
|
190
|
|
- this.selected[1] = data.place.place;
|
|
228
|
+ this.selected[0] = data.branch?data.branch.hosName:'';
|
|
229
|
+ this.selected[1] = data.place.area.area;
|
|
230
|
+ this.selected[2] = data.place.place;
|
191
|
231
|
if (this.$parent.$parent.$parent.$parent.$parent.ifRoom == 1) {
|
192
|
232
|
this.getRoomData(data.place.id);
|
193
|
233
|
}
|
|
@@ -325,12 +365,12 @@ export default {
|
325
|
365
|
{
|
326
|
366
|
component: PCA,
|
327
|
367
|
modelKey: "pcaValue",
|
328
|
|
- label: "区域地点:",
|
|
368
|
+ label: "校区区域地点:",
|
329
|
369
|
rules: {
|
330
|
370
|
required: true
|
331
|
371
|
},
|
332
|
372
|
messages: {
|
333
|
|
- required: "请选择区域地点"
|
|
373
|
+ required: "请选择校区区域地点"
|
334
|
374
|
}
|
335
|
375
|
},
|
336
|
376
|
{
|
|
@@ -467,14 +507,19 @@ export default {
|
467
|
507
|
});
|
468
|
508
|
},
|
469
|
509
|
submitHandler() {
|
470
|
|
- if (this.model.pcaValue.length == 2) {
|
471
|
|
- this.model.areaId = this.model.pcaValue[this.model.pcaValue.length - 2];
|
472
|
|
- this.model.placeId = this.model.pcaValue[
|
473
|
|
- this.model.pcaValue.length - 1
|
474
|
|
- ];
|
475
|
|
- } else if (this.model.pcaValue.length == 1) {
|
476
|
|
- this.model.areaId = this.model.pcaValue[this.model.pcaValue.length - 1];
|
477
|
|
- this.model.placeId = "";
|
|
510
|
+ // if (this.model.pcaValue.length == 2) {
|
|
511
|
+ // this.model.areaId = this.model.pcaValue[this.model.pcaValue.length - 2];
|
|
512
|
+ // this.model.placeId = this.model.pcaValue[
|
|
513
|
+ // this.model.pcaValue.length - 1
|
|
514
|
+ // ];
|
|
515
|
+ // } else if (this.model.pcaValue.length == 1) {
|
|
516
|
+ // this.model.areaId = this.model.pcaValue[this.model.pcaValue.length - 1];
|
|
517
|
+ // this.model.placeId = "";
|
|
518
|
+ // }
|
|
519
|
+ if (this.model.pcaValue.length == 3) {
|
|
520
|
+ this.model.branch = {id: this.model.pcaValue[0]};
|
|
521
|
+ this.model.areaId = this.model.pcaValue[1];
|
|
522
|
+ this.model.placeId = this.model.pcaValue[2];
|
478
|
523
|
}
|
479
|
524
|
|
480
|
525
|
this.model["requester"] = this.loginUser;
|
|
@@ -491,7 +536,7 @@ export default {
|
491
|
536
|
},
|
492
|
537
|
incident: JSON.parse(JSON.stringify(this.model))
|
493
|
538
|
};
|
494
|
|
- // 报修主体是报修科室的时候,不传科室id艺洛
|
|
539
|
+ // 报修主体是报修科室的时候,不传科室id
|
495
|
540
|
if (this.repairMain.valueconfig == 2) {
|
496
|
541
|
reqData.incident.deptId = this.deptIdNum;
|
497
|
542
|
} else {
|
|
@@ -658,8 +703,9 @@ export default {
|
658
|
703
|
: "";
|
659
|
704
|
this.model.contacts = this.loginUser.name;
|
660
|
705
|
this.model.address = this.loginUser.houseNumber;
|
661
|
|
- this.model.pcaValue[0] = this.loginUser.place.area.id;
|
662
|
|
- this.model.pcaValue[1] = this.loginUser.place.id;
|
|
706
|
+ this.model.pcaValue[0] = this.loginUser.branch.id;
|
|
707
|
+ this.model.pcaValue[1] = this.loginUser.place.area.id;
|
|
708
|
+ this.model.pcaValue[2] = this.loginUser.place.id;
|
663
|
709
|
this.model.deptId = this.loginUser.dept ? this.loginUser.dept.dept : "";
|
664
|
710
|
}
|
665
|
711
|
},
|
|
@@ -794,6 +840,7 @@ export default {
|
794
|
840
|
color: inherit;
|
795
|
841
|
background: none;
|
796
|
842
|
border: none;
|
|
843
|
+ white-space: normal;
|
797
|
844
|
}
|
798
|
845
|
.cube-form_standard .cube-upload-def .cube-upload-btn,
|
799
|
846
|
.cube-form_standard .cube-upload-def .cube-upload-file {
|