This commit is contained in:
yanran200730
2022-01-05 18:11:23 +08:00
parent 8f7cd4fbcc
commit 41857e98ac

View File

@@ -80,8 +80,8 @@
{ prop: 'title', label: '议事主题', align: 'left', width: '200px' },
{ prop: 'type', label: '议事类型', align: 'center', formart: v => this.dict.getLabel('discussType', v) },
{ prop: 'createUserName', label: '话事人', align: 'center' },
{ prop: 'msgCount', label: '观点数量', align: 'center' },
{ prop: 'voteCount', label: '投票数量', align: 'center' },
{ prop: 'msgCount', label: '观点数量', align: 'center', formart: v => v === 0 ? '-' : v },
{ prop: 'voteCount', label: '投票数量', align: 'center', formart: v => v === 0 ? '-' : v },
{ prop: 'status', label: '发布状态', align: 'center', formart: v => this.dict.getLabel('discussStatus', v) },
{ prop: 'createTime', label: '发布时间', align: 'center' },
{ slot: 'options', label: '操作', align: 'center' }