guarantee-lsq 2 vuotta sitten
vanhempi
commit
17de63572b
1 muutettua tiedostoa jossa 15 lisäystä ja 7 poistoa
  1. 15 7
      src/views/repair/application-form/modules/TicketForm.vue

+ 15 - 7
src/views/repair/application-form/modules/TicketForm.vue

@@ -274,13 +274,17 @@
             <td colspan="29" >
               <div>
 
-                计划开始时间:<a-date-picker style="min-width:30px;" show-time placeholder="选择时间" suffixIcon=" "/>
+<!--                计划开始时间:<a-date-picker style="min-width:30px;" show-time placeholder="选择时间" suffixIcon=" "/>
                 计划完工时间:
                 <a-date-picker style="min-width:30px;" show-time placeholder="选择时间" suffixIcon=" "/><br>
                 实际开始时间:
                 <a-date-picker style="min-width:30px;" show-time placeholder="选择时间" suffixIcon=" "/>
                 实际结束时间:
-                <a-date-picker style="min-width:30px;" show-time placeholder="选择时间" suffixIcon=" "/>
+                <a-date-picker style="min-width:30px;" show-time placeholder="选择时间" suffixIcon=" "/>-->
+                计划开始时间:&nbsp;&nbsp;&nbsp;&nbsp;{{ this.model.planStartTime }}&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
+                计划完工时间:&nbsp;&nbsp;&nbsp;&nbsp;{{ this.model.planEndTime }}<br>
+                实际开始时间:&nbsp;&nbsp;&nbsp;&nbsp;{{ this.model.repairStartTime }}&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
+                实际结束时间:&nbsp;&nbsp;&nbsp;&nbsp;{{ this.model.repairEndTime }}
               </div>
             </td>
           </tr>
@@ -349,9 +353,9 @@
           <tr>
             <td colspan="29" >
               <div style="display:flex;justify-content:space-around">
-                <div style="flex:1">派工工程师:</div>
-                <div style="flex:1">检维修人:</div>
-                <div style="flex:1">工时统计:<a-input style="width:150px" placeholder="检维修人填写" /></div>
+                <div style="flex:1">派工工程师:{{ this.model.dispatcher }}</div>
+                <div style="flex:1">检维修人:{{ this.model.repairMan }}</div>
+                <div style="flex:1">工时统计:{{ this.model.repairMin }}</div>
                 <div style="flex:1">主管确认:</div>
               </div>
             </td>
@@ -363,7 +367,6 @@
   </div>
 </template>
 <script>
-import { stringify } from 'qs'
 export default {
   data () {
     return {
@@ -394,7 +397,12 @@ export default {
         'repairProfessor': null,
         'repairType': null,
         'trustDept': null,
-        'level': null
+        'level': null,
+        'repairStartTime': null,
+        'repairEndTime': null,
+        'planStartTime': null,
+        'planEndTime': null,
+        'repairMin': null
       }
     }
   },