liuzhihui лет назад: 2
Родитель
Сommit
4d88dcf425

+ 17 - 13
CallCenterWeb.UI/RMYY/src/views/login/changeDept.vue

@@ -31,21 +31,25 @@
31 31
        }
32 32
      },
33 33
      created() {
34
-       var str = window.localStorage.getItem('storageAllowUserDept')//获取允用科室ids
35
-       var arr = []
36
-       if (str.indexOf(',') >= 0) {
37
-         for (var i = 0; i < str.split(",").length; i++) {
38
-           if (this.$store.getters.deptmap[parseInt(str.split(",")[i])]) {
39
-             arr.push({
40
-               deptname: this.$store.getters.deptmap[parseInt(str.split(",")[i])].text,
41
-               deptid: str.split(",")[i]
42
-             })
43
-           }
44
-         }
45
-         this.allowData = arr
46
-       }
34
+       this.getData()
47 35
      },
48 36
      methods:{
37
+       getData(){
38
+         var str = window.localStorage.getItem('storageAllowUserDept')//获取允用科室ids
39
+         var arr = []
40
+         if (str.indexOf(',') >= 0) {
41
+           for (var i = 0; i < str.split(",").length; i++) {
42
+             if (this.$store.getters.deptmap[parseInt(str.split(",")[i])]) {
43
+               arr.push({
44
+                 deptname: this.$store.getters.deptmap[parseInt(str.split(",")[i])].text,
45
+                 deptid: str.split(",")[i]
46
+               })
47
+             }
48
+           }
49
+           this.allowData = arr
50
+         }
51
+         console.log(this.allowData)
52
+       },
49 53
        handleSelectionChange(val) {
50 54
          this.onchangedept = val.target.value
51 55
        },

+ 9 - 1
CallCenterWeb.UI/RMYY/src/views/orderManage/components/cardetail.vue

@@ -51,12 +51,20 @@
51 51
               <tr>
52 52
                 <th>申请时间:</th>
53 53
                 <td>{{ orderDetailData.F_CreateTime }}</td>
54
-                <th>联系电话:</th>
54
+                <th>申请人电话:</th>
55 55
                 <td>{{ orderDetailData.F_Phon }}</td>
56 56
                 <th>出发地点:</th>
57 57
                 <td>{{ orderDetailData.F_DepartPlace }}</td>
58 58
               </tr>
59 59
               <tr>
60
+                <th>车辆要求:</th>
61
+                <td>{{ orderDetailData.F_CarName }}</td>
62
+                <th>联系人:</th>
63
+                <td>{{ orderDetailData.F_Contact || "-" }}</td>
64
+                <th>联系人电话:</th>
65
+                <td>{{ orderDetailData.F_ContactNumber || "-" }}</td>
66
+              </tr>
67
+              <tr>
60 68
                 <th>到达地点:</th>
61 69
                 <td>{{ orderDetailData.F_Destination }}</td>
62 70
                 <th>车牌号:</th>

+ 11 - 3
CallCenterWeb.UI/RMYY/src/views/vehicleDispatch/vehicleScheduling/vehicleSchedulingList/components/detail.vue

@@ -22,8 +22,16 @@
22 22
                 <td>车辆调度</td>
23 23
                 <th>工单类别:</th>
24 24
                 <td>{{ orderDetailData.F_TypeName2 }}</td>
25
-                <th>创建时间:</th>
26
-                <td>{{ orderDetailData.F_CreateTime }}</td>
25
+                <th>超时时限:</th>
26
+                <td>{{ orderDetailData.GapTime || "-" }}</td>
27
+              </tr>
28
+              <tr>
29
+                <th>接单时间:</th>
30
+                <td>{{ orderDetailData.F_AcceptTime || "-" }}</td>
31
+                <th>完成时间:</th>
32
+                <td>{{ orderDetailData.F_EndTime || "-" }}</td>
33
+                <th>完成时长:</th>
34
+                <td>{{ orderDetailData.SpendTime || "-" }}</td>
27 35
               </tr>
28 36
               <tr>
29 37
                 <th>申请院区:</th>
@@ -70,7 +78,7 @@
70 78
                 <td>{{ orderDetailData.F_DriverPhon || "-" }}</td>
71 79
                 <th>目的地:</th>
72 80
                 <td>{{ orderDetailData.F_Destination || "-" }}</td>
73
-                <th>车时间:</th>
81
+                <th>车时间:</th>
74 82
                 <td>{{ orderDetailData.F_UseTime || "-" }}</td>
75 83
               </tr>
76 84
               <tr>