|
@@ -42,6 +42,7 @@
|
|
|
:data="loadData"
|
|
|
:alert="options.alert"
|
|
|
:rowSelection="options.rowSelection"
|
|
|
+ :scroll="{x: 1000, y: BaseTool.Constant.scrollY }"
|
|
|
showPagination="auto"
|
|
|
>
|
|
|
<span slot="action" slot-scope="record">
|
|
@@ -140,7 +141,7 @@ export default {
|
|
|
title: '报修人',
|
|
|
checked: true,
|
|
|
width: '200px',
|
|
|
- dataIndex: 'userName'
|
|
|
+ dataIndex: 'actualUser'
|
|
|
},
|
|
|
{
|
|
|
title: '报修来源',
|
|
@@ -174,24 +175,25 @@ export default {
|
|
|
return this.BaseTool.Object.getField(this.needStopMap, text)
|
|
|
}
|
|
|
}, */
|
|
|
+ {
|
|
|
+ title: '创建日期',
|
|
|
+ width: '200px',
|
|
|
+ dataIndex: 'createdTime'
|
|
|
+ },
|
|
|
{
|
|
|
title: '报修状态',
|
|
|
checked: true,
|
|
|
- width: '200px',
|
|
|
+ width: '100px',
|
|
|
+ fixed: 'right',
|
|
|
dataIndex: 'status',
|
|
|
scopedSlots: { customRender: 'status' }
|
|
|
},
|
|
|
-
|
|
|
- {
|
|
|
- title: '创建日期',
|
|
|
- width: '200px',
|
|
|
- dataIndex: 'createdTime'
|
|
|
- },
|
|
|
{
|
|
|
title: '操作',
|
|
|
checked: true,
|
|
|
+ fixed: 'right',
|
|
|
key: 'action',
|
|
|
- width: '200px',
|
|
|
+ width: '150px',
|
|
|
align: 'center',
|
|
|
scopedSlots: { customRender: 'action' }
|
|
|
}
|