|
|
@ -50,14 +50,15 @@ |
|
|
|
</el-form> |
|
|
|
<!-- 列表 --> |
|
|
|
<vxe-table ref="xTable" |
|
|
|
v-loading="loading" |
|
|
|
:align="allAlign" |
|
|
|
:data="dataList" |
|
|
|
show-overflow |
|
|
|
resizable |
|
|
|
border |
|
|
|
highlight-hover-row |
|
|
|
:cell-style="columnStyle"> |
|
|
|
v-loading="loading" |
|
|
|
:align="allAlign" |
|
|
|
:data="dataList" |
|
|
|
show-overflow |
|
|
|
resizable |
|
|
|
border |
|
|
|
highlight-hover-row |
|
|
|
:cell-style="columnStyle" |
|
|
|
> |
|
|
|
<!-- 维护工单 --> |
|
|
|
<vxe-table-column field="maintwoid" width="150" show-overflow :title="getColumnName('maintwoid')" /> |
|
|
|
<!-- 描述 --> |
|
|
@ -87,9 +88,22 @@ |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span> {{ parseTime(scope.row.schedendtime) }} </span> |
|
|
|
</template> |
|
|
|
</vxe-table-column> |
|
|
|
<!-- 实际开始时间 --> |
|
|
|
<vxe-table-column field="actbegtime" width="200" :title="getColumnName('actbegtime')" > |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span> {{ parseTime(scope.row.actbegtime) }} </span> |
|
|
|
</template> |
|
|
|
</vxe-table-column> |
|
|
|
<!-- 实际结束时间 --> |
|
|
|
<vxe-table-column field="actendtime" width="200" :title="getColumnName('actendtime')"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span> {{ parseTime(scope.row.actendtime) }} </span> |
|
|
|
</template> |
|
|
|
</vxe-table-column> |
|
|
|
<!-- 最近一次更改人 --> |
|
|
|
<vxe-table-column field="lastuser" width="200" :title="getColumnName('lastuser')" /> |
|
|
|
|
|
|
|
<!-- 创建时间 --> |
|
|
|
<vxe-table-column field="credatuz" width="200" :title="getColumnName('credatuz')"> |
|
|
|
<template slot-scope="scope"> |
|
|
|