seimin 2 年之前
父节点
当前提交
ac6c9a0307
共有 8 个文件被更改,包括 223 次插入112 次删除
  1. 2 1
      src/components/form/form.vue
  2. 1 1
      src/router/index.js
  3. 2 2
      src/views/Login.vue
  4. 2 2
      src/views/incidentDetails.vue
  5. 2 1
      src/views/indes.vue
  6. 60 28
      src/views/my.vue
  7. 88 41
      src/views/repair.vue
  8. 66 36
      src/views/supplementary.vue

+ 2 - 1
src/components/form/form.vue

@@ -342,8 +342,9 @@
342
           -webkit-text-stroke-width: 0.2px
342
           -webkit-text-stroke-width: 0.2px
343
           -moz-osx-font-smoothing: grayscale
343
           -moz-osx-font-smoothing: grayscale
344
     .cube-form-label
344
     .cube-form-label
345
-      width: 100px
345
+      width: 120px
346
       padding-right: 10px
346
       padding-right: 10px
347
+      flex-shrink: 0
347
     .cube-checkbox-group, .cube-radio-group
348
     .cube-checkbox-group, .cube-radio-group
348
       &::before, &::after
349
       &::before, &::after
349
         display: none
350
         display: none

+ 1 - 1
src/router/index.js

@@ -56,7 +56,7 @@ export default new Router({
56
       ]
56
       ]
57
     },
57
     },
58
     {
58
     {
59
-      path: '/repair/:data',
59
+      path: '/repair/:data?',
60
       component: Repair,
60
       component: Repair,
61
       name: 'Repair',
61
       name: 'Repair',
62
       meta: { allowBack: false },
62
       meta: { allowBack: false },

+ 2 - 2
src/views/Login.vue

@@ -209,9 +209,9 @@ export default {
209
             "loginConfig",
209
             "loginConfig",
210
             JSON.stringify({ username: this.zhanghao, password: this.mima })
210
             JSON.stringify({ username: this.zhanghao, password: this.mima })
211
           );
211
           );
212
-          // 判断是否有区域地点或联系电话,没有则需要补充
212
+          // 判断是否有区域地点或联系电话或校区,没有则需要补充
213
           var requester = res.data.data.requester;
213
           var requester = res.data.data.requester;
214
-          if (!requester.place || !requester.mphone) {
214
+          if (!requester.place || !requester.mphone || !requester.branch) {
215
             this.$router.push({ path: "/supplementary" });
215
             this.$router.push({ path: "/supplementary" });
216
           } else {
216
           } else {
217
             this.loginNext(res.data.data.requester);
217
             this.loginNext(res.data.data.requester);

+ 2 - 2
src/views/incidentDetails.vue

@@ -8,7 +8,7 @@
8
         <div>报修编号:&nbsp;{{ data.bxcode }}</div>
8
         <div>报修编号:&nbsp;{{ data.bxcode }}</div>
9
         <div :class="stateClassFn(data.state.name)">{{ data.state.name }}</div>
9
         <div :class="stateClassFn(data.state.name)">{{ data.state.name }}</div>
10
       </div>
10
       </div>
11
-      <div class="description" v-if="data.incident.category">
11
+      <div class="description" v-if="data.category && data.category.category">
12
         <div>
12
         <div>
13
           报修类别:
13
           报修类别:
14
         </div>
14
         </div>
@@ -44,7 +44,7 @@
44
         </div>
44
         </div>
45
         <div>
45
         <div>
46
           <template v-if="data.place">
46
           <template v-if="data.place">
47
-            {{ data.place.area.area }} {{ data.place.place }}
47
+            {{ data.branch?data.branch.hosName:'' }} {{ data.place.area.area }} {{ data.place.place }}
48
           {{ data.address }}
48
           {{ data.address }}
49
           </template>
49
           </template>
50
         </div>
50
         </div>

+ 2 - 1
src/views/indes.vue

@@ -306,7 +306,8 @@ export default {
306
         });
306
         });
307
     },
307
     },
308
     toRapir() {
308
     toRapir() {
309
-      this.$router.push({ name: "Repair", params: { data: "" } });
309
+      // this.$router.push({ name: "Repair", params: { data: "" } });
310
+      this.$router.push('/repair');
310
     },
311
     },
311
     toNoticeDetails(data) {
312
     toNoticeDetails(data) {
312
       this.$router.push({
313
       this.$router.push({

+ 60 - 28
src/views/my.vue

@@ -32,12 +32,12 @@
32
           <div v-if="repairMain.valueconfig != 1 && !loginUser.dept">暂无</div>
32
           <div v-if="repairMain.valueconfig != 1 && !loginUser.dept">暂无</div>
33
         </li>
33
         </li>
34
         <li class="myArea">
34
         <li class="myArea">
35
-          <div>区域地点</div>
35
+          <div>校区区域地点</div>
36
           <div>
36
           <div>
37
             <cube-button @click="showCascadePicker">
37
             <cube-button @click="showCascadePicker">
38
               {{ areaData || "暂无" }}
38
               {{ areaData || "暂无" }}
39
-              <i class="iconfont icon-moren"></i>
40
             </cube-button>
39
             </cube-button>
40
+            <i class="iconfont icon-moren"></i>
41
           </div>
41
           </div>
42
         </li>
42
         </li>
43
         <li>
43
         <li>
@@ -173,9 +173,8 @@ export default {
173
       });
173
       });
174
     },
174
     },
175
     getUserAreaData() {
175
     getUserAreaData() {
176
-      if (this.loginUser.place) {
177
-        this.areaData =
178
-          this.loginUser.place.area.area + " " + this.loginUser.place.place;
176
+      if (this.loginUser.place && this.loginUser.branch) {
177
+        this.areaData = this.loginUser.branch.hosName + " " +this.loginUser.place.area.area + " " + this.loginUser.place.place;
179
       }
178
       }
180
     },
179
     },
181
     toIncidentList(res) {
180
     toIncidentList(res) {
@@ -220,7 +219,6 @@ export default {
220
         });
219
         });
221
     },
220
     },
222
     getPlaceData() {
221
     getPlaceData() {
223
-      var that = this;
224
       this.$http
222
       this.$http
225
         .post("service/user/data/fetchDataList/place", {
223
         .post("service/user/data/fetchDataList/place", {
226
           idx: 0,
224
           idx: 0,
@@ -229,24 +227,56 @@ export default {
229
             wechatAreaId: ""
227
             wechatAreaId: ""
230
           }
228
           }
231
         })
229
         })
232
-        .then(function(res) {
233
-          var data = res.data.list;
234
-          for (var i = 0; i < data.length; i++) {
235
-            for (var j = 0; j < that.treeData.length; j++) {
236
-              if (data[i].area.id == that.treeData[j].value) {
237
-                that.treeData[j].children.push({
238
-                  text: data[i].place,
239
-                  value: data[i].id
240
-                });
241
-              }
230
+        .then((res) => {
231
+          let data = res.data.list;
232
+          // for (var i = 0; i < data.length; i++) {
233
+          //   for (var j = 0; j < that.treeData.length; j++) {
234
+          //     if (data[i].area.id == that.treeData[j].value) {
235
+          //       that.treeData[j].children.push({
236
+          //         text: data[i].place,
237
+          //         value: data[i].id
238
+          //       });
239
+          //     }
240
+          //   }
241
+          // }
242
+          console.log(data, 'data');
243
+          this.treeData = [];
244
+          const collectionBranch = {};
245
+          data.forEach((v) => {
246
+            if(collectionBranch[v.area.branch]){
247
+              collectionBranch[v.area.branch].push(v);
248
+            }else{
249
+              this.treeData.push({text:v.area.branchName, value: v.area.branch, children: []})
250
+              collectionBranch[v.area.branch] = [v];
242
             }
251
             }
243
-          }
244
-          that.cascadePicker = that.$createCascadePicker({
245
-            title: "请选择区域地点",
246
-            data: that.treeData,
247
-            selectedIndex: [0, 0],
248
-            onSelect: that.selectHandle,
249
-            onCancel: that.cancelHandle
252
+          })
253
+
254
+          this.treeData.forEach(v => {
255
+            let areaByPlace = collectionBranch[v.value];
256
+            let areaCollection = {};
257
+            let areaArr = [];
258
+            areaByPlace.forEach(vv => {
259
+              if(areaCollection[vv.area.id]){
260
+                areaCollection[vv.area.id].push({text:vv.place, value: vv.id});
261
+              }else{
262
+                areaArr.push({text:vv.area.area, value: vv.area.id, children: []})
263
+                areaCollection[vv.area.id] = [{text:vv.place, value: vv.id}];
264
+              }
265
+            })
266
+            areaArr.forEach(vv => {
267
+              vv.children = areaCollection[vv.value];
268
+            })
269
+            v.children = areaArr;
270
+          })
271
+
272
+          console.log(collectionBranch,'collectionBranch集合');
273
+          console.log(this.treeData,'地点');
274
+          this.cascadePicker = this.$createCascadePicker({
275
+            title: "请选择校区区域地点",
276
+            data: this.treeData,
277
+            selectedIndex: [0, 0, 0],
278
+            onSelect: this.selectHandle,
279
+            onCancel: this.cancelHandle
250
           });
280
           });
251
         });
281
         });
252
     },
282
     },
@@ -257,12 +287,12 @@ export default {
257
       var that = this;
287
       var that = this;
258
       this.$http
288
       this.$http
259
         .get(
289
         .get(
260
-          "service/user/updPlace/" + this.loginUser.id + "/" + selectedVal[1],
290
+          "service/user/updPlace/" + this.loginUser.id + "/" + selectedVal[2],
261
           {}
291
           {}
262
         )
292
         )
263
         .then(function(res) {
293
         .then(function(res) {
264
           if (res.status == 200) {
294
           if (res.status == 200) {
265
-            that.promptingConent = "恭喜您,修改区域地点成功!";
295
+            that.promptingConent = "恭喜您,修改校区区域地点成功!";
266
             that.promptingStatus = true;
296
             that.promptingStatus = true;
267
             $("#fade").fadeIn();
297
             $("#fade").fadeIn();
268
             setTimeout(function() {
298
             setTimeout(function() {
@@ -273,13 +303,15 @@ export default {
273
                 area: {}
303
                 area: {}
274
               };
304
               };
275
             }
305
             }
306
+            that.loginUser.branch = {id: selectedVal[0]};
276
             that.loginUser.place.id = selectedVal[1];
307
             that.loginUser.place.id = selectedVal[1];
277
             that.loginUser.place.area.id = selectedVal[0];
308
             that.loginUser.place.area.id = selectedVal[0];
309
+            that.loginUser.branch.hosName = selectedText[0];
278
             that.loginUser.place.place = selectedText[1];
310
             that.loginUser.place.place = selectedText[1];
279
             that.loginUser.place.area.area = selectedText[0];
311
             that.loginUser.place.area.area = selectedText[0];
280
             var loginUserStr = JSON.stringify(that.loginUser);
312
             var loginUserStr = JSON.stringify(that.loginUser);
281
             localStorage.setItem("loginUser", loginUserStr);
313
             localStorage.setItem("loginUser", loginUserStr);
282
-            that.areaData = selectedText[0] + " " + selectedText[1];
314
+            that.areaData = selectedText[0] + " " + selectedText[1] + " " + selectedText[2];
283
           } else {
315
           } else {
284
             that.promptingConent = "对不起,修改失败,请稍后再试!";
316
             that.promptingConent = "对不起,修改失败,请稍后再试!";
285
             that.promptingStatus = false;
317
             that.promptingStatus = false;
@@ -302,7 +334,7 @@ export default {
302
   },
334
   },
303
   mounted() {
335
   mounted() {
304
     // this.cascadePicker = this.$createCascadePicker({
336
     // this.cascadePicker = this.$createCascadePicker({
305
-    //     title: '请选择区域地点',
337
+    //     title: '请选择校区区域地点',
306
     //     data: this.treeData,
338
     //     data: this.treeData,
307
     //     selectedIndex: [0,0],
339
     //     selectedIndex: [0,0],
308
     //     onSelect: this.selectHandle,
340
     //     onSelect: this.selectHandle,
@@ -466,7 +498,7 @@ export default {
466
   color: #333333 !important;
498
   color: #333333 !important;
467
   text-align: right !important;
499
   text-align: right !important;
468
   overflow: hidden;
500
   overflow: hidden;
469
-  white-space: nowrap;
501
+  white-space: normal;
470
   text-overflow: ellipsis;
502
   text-overflow: ellipsis;
471
 }
503
 }
472
 </style>
504
 </style>

+ 88 - 41
src/views/repair.vue

@@ -105,7 +105,7 @@ const PCA = {
105
           click: this.showPicker
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
   mounted() {},
111
   mounted() {},
@@ -145,49 +145,89 @@ const PCA = {
145
     },
145
     },
146
     getPlaceData() {
146
     getPlaceData() {
147
       this.$parent.$parent.$parent.$parent.$parent.loadShow = true;
147
       this.$parent.$parent.$parent.$parent.$parent.loadShow = true;
148
-      var that = this;
149
       this.$http
148
       this.$http
150
         .post("service/user/data/fetchDataList/place", {
149
         .post("service/user/data/fetchDataList/place", {
151
           idx: 0,
150
           idx: 0,
152
           sum: 1000,
151
           sum: 1000,
153
-          area: {
154
-            wechatAreaId: ""
155
-          }
156
         })
152
         })
157
         .then(res => {
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
           let loginUser = JSON.parse(localStorage.getItem("loginUser"));
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
             v => v.value == loginUser.place.area.id
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
           this.$parent.$parent.$parent.$parent.$parent.loadShow = false;
223
           this.$parent.$parent.$parent.$parent.$parent.loadShow = false;
185
         });
224
         });
186
     },
225
     },
187
     getParamsPlace() {
226
     getParamsPlace() {
188
       var data = JSON.parse(localStorage.getItem("loginUser"));
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
       if (this.$parent.$parent.$parent.$parent.$parent.ifRoom == 1) {
231
       if (this.$parent.$parent.$parent.$parent.$parent.ifRoom == 1) {
192
         this.getRoomData(data.place.id);
232
         this.getRoomData(data.place.id);
193
       }
233
       }
@@ -325,12 +365,12 @@ export default {
325
         {
365
         {
326
           component: PCA,
366
           component: PCA,
327
           modelKey: "pcaValue",
367
           modelKey: "pcaValue",
328
-          label: "区域地点:",
368
+          label: "校区区域地点:",
329
           rules: {
369
           rules: {
330
             required: true
370
             required: true
331
           },
371
           },
332
           messages: {
372
           messages: {
333
-            required: "请选择区域地点"
373
+            required: "请选择校区区域地点"
334
           }
374
           }
335
         },
375
         },
336
         {
376
         {
@@ -467,14 +507,19 @@ export default {
467
       });
507
       });
468
     },
508
     },
469
     submitHandler() {
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
       this.model["requester"] = this.loginUser;
525
       this.model["requester"] = this.loginUser;
@@ -491,7 +536,7 @@ export default {
491
         },
536
         },
492
         incident: JSON.parse(JSON.stringify(this.model))
537
         incident: JSON.parse(JSON.stringify(this.model))
493
       };
538
       };
494
-      //  报修主体是报修科室的时候,不传科室id艺洛
539
+      //  报修主体是报修科室的时候,不传科室id
495
       if (this.repairMain.valueconfig == 2) {
540
       if (this.repairMain.valueconfig == 2) {
496
         reqData.incident.deptId = this.deptIdNum;
541
         reqData.incident.deptId = this.deptIdNum;
497
       } else {
542
       } else {
@@ -658,8 +703,9 @@ export default {
658
           : "";
703
           : "";
659
       this.model.contacts = this.loginUser.name;
704
       this.model.contacts = this.loginUser.name;
660
       this.model.address = this.loginUser.houseNumber;
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
       this.model.deptId = this.loginUser.dept ? this.loginUser.dept.dept : "";
709
       this.model.deptId = this.loginUser.dept ? this.loginUser.dept.dept : "";
664
     }
710
     }
665
   },
711
   },
@@ -794,6 +840,7 @@ export default {
794
   color: inherit;
840
   color: inherit;
795
   background: none;
841
   background: none;
796
   border: none;
842
   border: none;
843
+  white-space: normal;
797
 }
844
 }
798
 .cube-form_standard .cube-upload-def .cube-upload-btn,
845
 .cube-form_standard .cube-upload-def .cube-upload-btn,
799
 .cube-form_standard .cube-upload-def .cube-upload-file {
846
 .cube-form_standard .cube-upload-def .cube-upload-file {

+ 66 - 36
src/views/supplementary.vue

@@ -23,12 +23,12 @@
23
           </div>
23
           </div>
24
         </li>
24
         </li>
25
         <li class="myArea">
25
         <li class="myArea">
26
-          <div>区域地点</div>
27
-          <div>
28
-            <cube-button @click="showCascadePicker">
26
+          <div>校区区域地点</div>
27
+          <div style="flex:1;">
28
+            <cube-button @click="showCascadePicker" style="white-space:normal;">
29
               {{ areaData || "暂无" }}
29
               {{ areaData || "暂无" }}
30
-              <i class="iconfont icon-moren"></i>
31
             </cube-button>
30
             </cube-button>
31
+            <i class="iconfont icon-moren"></i>
32
           </div>
32
           </div>
33
         </li>
33
         </li>
34
         <li>
34
         <li>
@@ -110,7 +110,7 @@ export default {
110
       } else if (!this.areaData) {
110
       } else if (!this.areaData) {
111
         this.$createDialog({
111
         this.$createDialog({
112
           type: "alert",
112
           type: "alert",
113
-          content: "区域地点不能为空",
113
+          content: "校区区域地点不能为空",
114
           icon: "cubeic-wrong"
114
           icon: "cubeic-wrong"
115
         }).show();
115
         }).show();
116
       } else {
116
       } else {
@@ -173,33 +173,61 @@ export default {
173
         });
173
         });
174
     },
174
     },
175
     getPlaceData() {
175
     getPlaceData() {
176
-      var that = this;
177
       this.$http
176
       this.$http
178
         .post("service/user/data/fetchDataList/place", {
177
         .post("service/user/data/fetchDataList/place", {
179
           idx: 0,
178
           idx: 0,
180
           sum: 1000,
179
           sum: 1000,
181
-          area: {
182
-            wechatAreaId: ""
183
-          }
184
         })
180
         })
185
-        .then(function(res) {
186
-          var data = res.data.list;
187
-          for (var i = 0; i < data.length; i++) {
188
-            for (var j = 0; j < that.treeData.length; j++) {
189
-              if (data[i].area.id == that.treeData[j].value) {
190
-                that.treeData[j].children.push({
191
-                  text: data[i].place,
192
-                  value: data[i].id
193
-                });
194
-              }
181
+        .then((res) => {
182
+          let data = res.data.list;
183
+          // for (var i = 0; i < data.length; i++) {
184
+          //   for (var j = 0; j < that.treeData.length; j++) {
185
+          //     if (data[i].area.id == that.treeData[j].value) {
186
+          //       that.treeData[j].children.push({
187
+          //         text: data[i].place,
188
+          //         value: data[i].id
189
+          //       });
190
+          //     }
191
+          //   }
192
+          // }
193
+          console.log(data, 'data');
194
+          this.treeData = [];
195
+          const collectionBranch = {};
196
+          data.forEach((v) => {
197
+            if(collectionBranch[v.area.branch]){
198
+              collectionBranch[v.area.branch].push(v);
199
+            }else{
200
+              this.treeData.push({text:v.area.branchName, value: v.area.branch, children: []})
201
+              collectionBranch[v.area.branch] = [v];
195
             }
202
             }
196
-          }
197
-          that.cascadePicker = that.$createCascadePicker({
198
-            title: "请选择区域地点",
199
-            data: that.treeData,
200
-            selectedIndex: [0, 0],
201
-            onSelect: that.selectHandle,
202
-            onCancel: that.cancelHandle
203
+          })
204
+
205
+          this.treeData.forEach(v => {
206
+            let areaByPlace = collectionBranch[v.value];
207
+            let areaCollection = {};
208
+            let areaArr = [];
209
+            areaByPlace.forEach(vv => {
210
+              if(areaCollection[vv.area.id]){
211
+                areaCollection[vv.area.id].push({text:vv.place, value: vv.id});
212
+              }else{
213
+                areaArr.push({text:vv.area.area, value: vv.area.id, children: []})
214
+                areaCollection[vv.area.id] = [{text:vv.place, value: vv.id}];
215
+              }
216
+            })
217
+            areaArr.forEach(vv => {
218
+              vv.children = areaCollection[vv.value];
219
+            })
220
+            v.children = areaArr;
221
+          })
222
+
223
+          console.log(collectionBranch,'collectionBranch集合');
224
+          console.log(this.treeData,'地点');
225
+          this.cascadePicker = this.$createCascadePicker({
226
+            title: "请选择校区区域地点",
227
+            data: this.treeData,
228
+            selectedIndex: [0, 0, 0],
229
+            onSelect: this.selectHandle,
230
+            onCancel: this.cancelHandle
203
           });
231
           });
204
         });
232
         });
205
     },
233
     },
@@ -210,12 +238,12 @@ export default {
210
       var that = this;
238
       var that = this;
211
       this.$http
239
       this.$http
212
         .get(
240
         .get(
213
-          "service/user/updPlace/" + this.loginUser.id + "/" + selectedVal[1],
241
+          "service/user/updPlace/" + this.loginUser.id + "/" + selectedVal[2],
214
           {}
242
           {}
215
         )
243
         )
216
         .then(function(res) {
244
         .then(function(res) {
217
           if (res.status == 200) {
245
           if (res.status == 200) {
218
-            that.promptingConent = "恭喜您,修改区域地点成功!";
246
+            that.promptingConent = "恭喜您,修改校区区域地点成功!";
219
             that.promptingStatus = true;
247
             that.promptingStatus = true;
220
             $("#fade").fadeIn();
248
             $("#fade").fadeIn();
221
             setTimeout(function() {
249
             setTimeout(function() {
@@ -226,13 +254,15 @@ export default {
226
                 area: {}
254
                 area: {}
227
               };
255
               };
228
             }
256
             }
229
-            that.loginUser.place.id = selectedVal[1];
230
-            that.loginUser.place.area.id = selectedVal[0];
231
-            that.loginUser.place.place = selectedText[1];
232
-            that.loginUser.place.area.area = selectedText[0];
257
+            that.loginUser.branch = {id: selectedVal[0]};
258
+            that.loginUser.place.id = selectedVal[2];
259
+            that.loginUser.place.area.id = selectedVal[1];
260
+            that.loginUser.branch.hosName = selectedText[0];
261
+            that.loginUser.place.place = selectedText[2];
262
+            that.loginUser.place.area.area = selectedText[1];
233
             var loginUserStr = JSON.stringify(that.loginUser);
263
             var loginUserStr = JSON.stringify(that.loginUser);
234
             localStorage.setItem("loginUser", loginUserStr);
264
             localStorage.setItem("loginUser", loginUserStr);
235
-            that.areaData = selectedText[0] + " " + selectedText[1];
265
+            that.areaData = selectedText[0] + " " + selectedText[1] + " " + selectedText[2];
236
           } else {
266
           } else {
237
             that.promptingConent = "对不起,修改失败,请稍后再试!";
267
             that.promptingConent = "对不起,修改失败,请稍后再试!";
238
             that.promptingStatus = false;
268
             that.promptingStatus = false;
@@ -255,7 +285,7 @@ export default {
255
   },
285
   },
256
   mounted() {
286
   mounted() {
257
     // this.cascadePicker = this.$createCascadePicker({
287
     // this.cascadePicker = this.$createCascadePicker({
258
-    //     title: '请选择区域地点',
288
+    //     title: '请选择校区区域地点',
259
     //     data: this.treeData,
289
     //     data: this.treeData,
260
     //     selectedIndex: [0,0],
290
     //     selectedIndex: [0,0],
261
     //     onSelect: this.selectHandle,
291
     //     onSelect: this.selectHandle,
@@ -368,11 +398,11 @@ export default {
368
   width: 90%;
398
   width: 90%;
369
   text-align: right;
399
   text-align: right;
370
 }
400
 }
371
-.factionAdd i {
401
+/* .factionAdd i {
372
   display: inline-block;
402
   display: inline-block;
373
   font-size: 0.34rem;
403
   font-size: 0.34rem;
374
   width: 12%;
404
   width: 12%;
375
-}
405
+} */
376
 /* 我的报修 */
406
 /* 我的报修 */
377
 
407
 
378
 /* .myRapir {
408
 /* .myRapir {