seimin 2 anos atrás
pai
commit
ac6c9a0307

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

@@ -342,8 +342,9 @@
342 342
           -webkit-text-stroke-width: 0.2px
343 343
           -moz-osx-font-smoothing: grayscale
344 344
     .cube-form-label
345
-      width: 100px
345
+      width: 120px
346 346
       padding-right: 10px
347
+      flex-shrink: 0
347 348
     .cube-checkbox-group, .cube-radio-group
348 349
       &::before, &::after
349 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 60
       component: Repair,
61 61
       name: 'Repair',
62 62
       meta: { allowBack: false },

+ 2 - 2
src/views/Login.vue

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

+ 2 - 2
src/views/incidentDetails.vue

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

+ 2 - 1
src/views/indes.vue

@@ -306,7 +306,8 @@ export default {
306 306
         });
307 307
     },
308 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 312
     toNoticeDetails(data) {
312 313
       this.$router.push({

+ 60 - 28
src/views/my.vue

@@ -32,12 +32,12 @@
32 32
           <div v-if="repairMain.valueconfig != 1 && !loginUser.dept">暂无</div>
33 33
         </li>
34 34
         <li class="myArea">
35
-          <div>区域地点</div>
35
+          <div>校区区域地点</div>
36 36
           <div>
37 37
             <cube-button @click="showCascadePicker">
38 38
               {{ areaData || "暂无" }}
39
-              <i class="iconfont icon-moren"></i>
40 39
             </cube-button>
40
+            <i class="iconfont icon-moren"></i>
41 41
           </div>
42 42
         </li>
43 43
         <li>
@@ -173,9 +173,8 @@ export default {
173 173
       });
174 174
     },
175 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 180
     toIncidentList(res) {
@@ -220,7 +219,6 @@ export default {
220 219
         });
221 220
     },
222 221
     getPlaceData() {
223
-      var that = this;
224 222
       this.$http
225 223
         .post("service/user/data/fetchDataList/place", {
226 224
           idx: 0,
@@ -229,24 +227,56 @@ export default {
229 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 287
       var that = this;
258 288
       this.$http
259 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 293
         .then(function(res) {
264 294
           if (res.status == 200) {
265
-            that.promptingConent = "恭喜您,修改区域地点成功!";
295
+            that.promptingConent = "恭喜您,修改校区区域地点成功!";
266 296
             that.promptingStatus = true;
267 297
             $("#fade").fadeIn();
268 298
             setTimeout(function() {
@@ -273,13 +303,15 @@ export default {
273 303
                 area: {}
274 304
               };
275 305
             }
306
+            that.loginUser.branch = {id: selectedVal[0]};
276 307
             that.loginUser.place.id = selectedVal[1];
277 308
             that.loginUser.place.area.id = selectedVal[0];
309
+            that.loginUser.branch.hosName = selectedText[0];
278 310
             that.loginUser.place.place = selectedText[1];
279 311
             that.loginUser.place.area.area = selectedText[0];
280 312
             var loginUserStr = JSON.stringify(that.loginUser);
281 313
             localStorage.setItem("loginUser", loginUserStr);
282
-            that.areaData = selectedText[0] + " " + selectedText[1];
314
+            that.areaData = selectedText[0] + " " + selectedText[1] + " " + selectedText[2];
283 315
           } else {
284 316
             that.promptingConent = "对不起,修改失败,请稍后再试!";
285 317
             that.promptingStatus = false;
@@ -302,7 +334,7 @@ export default {
302 334
   },
303 335
   mounted() {
304 336
     // this.cascadePicker = this.$createCascadePicker({
305
-    //     title: '请选择区域地点',
337
+    //     title: '请选择校区区域地点',
306 338
     //     data: this.treeData,
307 339
     //     selectedIndex: [0,0],
308 340
     //     onSelect: this.selectHandle,
@@ -466,7 +498,7 @@ export default {
466 498
   color: #333333 !important;
467 499
   text-align: right !important;
468 500
   overflow: hidden;
469
-  white-space: nowrap;
501
+  white-space: normal;
470 502
   text-overflow: ellipsis;
471 503
 }
472 504
 </style>

+ 88 - 41
src/views/repair.vue

@@ -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 {

+ 66 - 36
src/views/supplementary.vue

@@ -23,12 +23,12 @@
23 23
           </div>
24 24
         </li>
25 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 29
               {{ areaData || "暂无" }}
30
-              <i class="iconfont icon-moren"></i>
31 30
             </cube-button>
31
+            <i class="iconfont icon-moren"></i>
32 32
           </div>
33 33
         </li>
34 34
         <li>
@@ -110,7 +110,7 @@ export default {
110 110
       } else if (!this.areaData) {
111 111
         this.$createDialog({
112 112
           type: "alert",
113
-          content: "区域地点不能为空",
113
+          content: "校区区域地点不能为空",
114 114
           icon: "cubeic-wrong"
115 115
         }).show();
116 116
       } else {
@@ -173,33 +173,61 @@ export default {
173 173
         });
174 174
     },
175 175
     getPlaceData() {
176
-      var that = this;
177 176
       this.$http
178 177
         .post("service/user/data/fetchDataList/place", {
179 178
           idx: 0,
180 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 238
       var that = this;
211 239
       this.$http
212 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 244
         .then(function(res) {
217 245
           if (res.status == 200) {
218
-            that.promptingConent = "恭喜您,修改区域地点成功!";
246
+            that.promptingConent = "恭喜您,修改校区区域地点成功!";
219 247
             that.promptingStatus = true;
220 248
             $("#fade").fadeIn();
221 249
             setTimeout(function() {
@@ -226,13 +254,15 @@ export default {
226 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 263
             var loginUserStr = JSON.stringify(that.loginUser);
234 264
             localStorage.setItem("loginUser", loginUserStr);
235
-            that.areaData = selectedText[0] + " " + selectedText[1];
265
+            that.areaData = selectedText[0] + " " + selectedText[1] + " " + selectedText[2];
236 266
           } else {
237 267
             that.promptingConent = "对不起,修改失败,请稍后再试!";
238 268
             that.promptingStatus = false;
@@ -255,7 +285,7 @@ export default {
255 285
   },
256 286
   mounted() {
257 287
     // this.cascadePicker = this.$createCascadePicker({
258
-    //     title: '请选择区域地点',
288
+    //     title: '请选择校区区域地点',
259 289
     //     data: this.treeData,
260 290
     //     selectedIndex: [0,0],
261 291
     //     onSelect: this.selectHandle,
@@ -368,11 +398,11 @@ export default {
368 398
   width: 90%;
369 399
   text-align: right;
370 400
 }
371
-.factionAdd i {
401
+/* .factionAdd i {
372 402
   display: inline-block;
373 403
   font-size: 0.34rem;
374 404
   width: 12%;
375
-}
405
+} */
376 406
 /* 我的报修 */
377 407
 
378 408
 /* .myRapir {