|
@@ -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=" "/>-->
|
|
|
+ 计划开始时间: {{ this.model.planStartTime }}
|
|
|
+ 计划完工时间: {{ this.model.planEndTime }}<br>
|
|
|
+ 实际开始时间: {{ this.model.repairStartTime }}
|
|
|
+ 实际结束时间: {{ 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
|
|
|
}
|
|
|
}
|
|
|
},
|