|
@@ -116,6 +116,7 @@ export default {
|
|
|
title: '序号',
|
|
|
dataIndex: 'index',
|
|
|
checked: true,
|
|
|
+ width: '70px',
|
|
|
customRender: (text, record, index) => {
|
|
|
return `${(this.$refs.table.localPagination.current - 1) * this.$refs.table.localPagination.pageSize + index + 1}`
|
|
|
}
|
|
@@ -123,11 +124,13 @@ export default {
|
|
|
{
|
|
|
title: '设备编号',
|
|
|
checked: true,
|
|
|
+ width: '200px',
|
|
|
dataIndex: 'sbNo'
|
|
|
},
|
|
|
{
|
|
|
title: '设备名称',
|
|
|
checked: true,
|
|
|
+ width: '200px',
|
|
|
dataIndex: 'sbId',
|
|
|
customRender: (text, record, index) => {
|
|
|
return record.sbName
|
|
@@ -136,11 +139,13 @@ export default {
|
|
|
{
|
|
|
title: '报修人',
|
|
|
checked: true,
|
|
|
+ width: '200px',
|
|
|
dataIndex: 'userName'
|
|
|
},
|
|
|
{
|
|
|
title: '报修来源',
|
|
|
checked: true,
|
|
|
+ width: '200px',
|
|
|
dataIndex: 'source',
|
|
|
customRender: (text, record, index) => {
|
|
|
return this.BaseTool.Object.getField(this.sourceMap, text)
|
|
@@ -149,11 +154,13 @@ export default {
|
|
|
{
|
|
|
title: '报修时间',
|
|
|
checked: true,
|
|
|
+ width: '200px',
|
|
|
dataIndex: 'applyTime'
|
|
|
},
|
|
|
- {
|
|
|
+ /*{
|
|
|
title: '紧急等级',
|
|
|
checked: true,
|
|
|
+ width: '200px',
|
|
|
dataIndex: 'level',
|
|
|
customRender: (text, record, index) => {
|
|
|
return this.BaseTool.Object.getField(this.levelMap, text)
|
|
@@ -166,16 +173,18 @@ export default {
|
|
|
customRender: (text, record, index) => {
|
|
|
return this.BaseTool.Object.getField(this.needStopMap, text)
|
|
|
}
|
|
|
- },
|
|
|
+ },*/
|
|
|
{
|
|
|
title: '报修状态',
|
|
|
checked: true,
|
|
|
+ width: '200px',
|
|
|
dataIndex: 'status',
|
|
|
scopedSlots: { customRender: 'status' }
|
|
|
},
|
|
|
|
|
|
{
|
|
|
title: '创建日期',
|
|
|
+ width: '200px',
|
|
|
dataIndex: 'createdTime'
|
|
|
},
|
|
|
{
|