|
|
@@ -39,13 +39,12 @@ export default {
|
|
|
return h('div', {
|
|
|
staticClass: 'o-info'
|
|
|
}, [
|
|
|
- h('div', null, data.desc),
|
|
|
+ h('div', null, `内容:${data.name}`),
|
|
|
h('div', null, `设备:${data.device}`)
|
|
|
])
|
|
|
} },
|
|
|
- { prop: 'type', label: '类型' },
|
|
|
- { prop: 'name', label: '名称' },
|
|
|
- { prop: 'resolutionRatio', label: '分辨率' },
|
|
|
+ { prop: 'type', label: '类型', width: 100 },
|
|
|
+ { prop: 'desc', label: '时间', 'min-width': 120 },
|
|
|
...this.reviewCol
|
|
|
]
|
|
|
}
|
|
|
@@ -66,12 +65,11 @@ export default {
|
|
|
const diff = this.getDiff(item)
|
|
|
return { ...same, ...diff }
|
|
|
},
|
|
|
- getSame ({ id, status, programCalendarName, resolutionRatio, createBy, createByUsername, createTime, calendarReleaseDeviceList }) {
|
|
|
+ getSame ({ id, status, programCalendarName, createBy, createByUsername, createTime, calendarReleaseDeviceList }) {
|
|
|
return {
|
|
|
pass: status !== State.SUBMITTED,
|
|
|
id,
|
|
|
name: programCalendarName,
|
|
|
- resolutionRatio,
|
|
|
createBy: createByUsername || createBy,
|
|
|
createTime,
|
|
|
device: calendarReleaseDeviceList?.map(item => item.deviceName).join(',')
|
|
|
@@ -97,7 +95,7 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
getDesc (target) {
|
|
|
- if (target.type === PublishType.EVENT && target.detail.priority === EventPriority.INSERTED) {
|
|
|
+ if (target.type === PublishType.EVENT) {
|
|
|
return getEventDescription(target.detail)
|
|
|
}
|
|
|
return ''
|