浏览代码

房间号字段修改

seimin 2 年之前
父节点
当前提交
174cbc2eea
共有 1 个文件被更改,包括 21 次插入6 次删除
  1. 21 6
      src/views/repair.vue

+ 21 - 6
src/views/repair.vue

@@ -203,11 +203,11 @@ const PCA = {
203
           let arr = [];
203
           let arr = [];
204
           result.data.list = result.data.list || [];
204
           result.data.list = result.data.list || [];
205
           result.data.list.forEach(item => {
205
           result.data.list.forEach(item => {
206
-            arr.push({ value: item.room, text: item.room });
206
+            arr.push({ value: item.id, text: item.room });
207
           });
207
           });
208
           this.$parent.$parent.$parent.$parent.$parent.fields.forEach(item => {
208
           this.$parent.$parent.$parent.$parent.$parent.fields.forEach(item => {
209
             // 初始化房间号下拉框列表
209
             // 初始化房间号下拉框列表
210
-            if (item.modelKey == "room") {
210
+            if (item.modelKey == "roomId") {
211
               item.props.options = arr;
211
               item.props.options = arr;
212
             }
212
             }
213
           });
213
           });
@@ -229,9 +229,19 @@ const delay = (function() {
229
 })();
229
 })();
230
 export default {
230
 export default {
231
   watch: {
231
   watch: {
232
-    "model.room": {
232
+    "model.roomId": {
233
       handler(newV) {
233
       handler(newV) {
234
-        this.model.address = newV || "";
234
+        if (newV) {
235
+          this.fields.forEach(item => {
236
+            if (item.modelKey == "roomId") {
237
+              this.model.address = item.props.options.find(
238
+                v => v.value == newV
239
+              ).text;
240
+            }
241
+          });
242
+        } else {
243
+          this.model.address = "";
244
+        }
235
       }
245
       }
236
     }
246
     }
237
   },
247
   },
@@ -282,7 +292,7 @@ export default {
282
         deptId: "",
292
         deptId: "",
283
         contacts: "",
293
         contacts: "",
284
         assetId: "",
294
         assetId: "",
285
-        room: ""
295
+        roomId: ""
286
       },
296
       },
287
       // showPrompting:false,
297
       // showPrompting:false,
288
       promptingConent: "",
298
       promptingConent: "",
@@ -384,7 +394,7 @@ export default {
384
         },
394
         },
385
         {
395
         {
386
           type: "select",
396
           type: "select",
387
-          modelKey: "room",
397
+          modelKey: "roomId",
388
           label: "房间号",
398
           label: "房间号",
389
           props: {
399
           props: {
390
             placeholder: "请选择房间号",
400
             placeholder: "请选择房间号",
@@ -487,6 +497,11 @@ export default {
487
       } else {
497
       } else {
488
         delete reqData.incident.deptId;
498
         delete reqData.incident.deptId;
489
       }
499
       }
500
+      if (this.ifRoom == 1) {
501
+        reqData.incident.roomId = this.model.roomId;
502
+      } else {
503
+        delete reqData.incident.roomId;
504
+      }
490
       this.$http
505
       this.$http
491
         .post("service/apply/bpm/addWxIncident", reqData)
506
         .post("service/apply/bpm/addWxIncident", reqData)
492
         .then(function(res) {
507
         .then(function(res) {