This commit is contained in:
yanran200730
2022-01-07 16:32:21 +08:00
parent 4b5e0d70b8
commit b73b7e9c61
2 changed files with 2 additions and 2 deletions

View File

@@ -29,7 +29,7 @@
</ai-card> </ai-card>
<ai-card title="意见征集" v-if="info.type === '0'" v-show="currIndex === 1"> <ai-card title="意见征集" v-if="info.type === '0'" v-show="currIndex === 1">
<template #right> <template #right>
<el-button type="primary" size="small" v-if="user.info.id === info.createUserId && info.status === '0' " @click="isShowAdd = true">发表意见</el-button> <el-button type="primary" size="small" v-if="user.info.id === info.createUserId && info.status === '0'" @click="isShowAdd = true">发表意见</el-button>
</template> </template>
<template #content> <template #content>
<ai-table <ai-table

View File

@@ -79,7 +79,7 @@
{ prop: 'content', label: '议事主题', align: 'left', width: '200px' }, { prop: 'content', label: '议事主题', align: 'left', width: '200px' },
{ prop: 'type', label: '议事类型', align: 'center', formart: v => this.dict.getLabel('discussType', v) }, { prop: 'type', label: '议事类型', align: 'center', formart: v => this.dict.getLabel('discussType', v) },
{ prop: 'createUserName', label: '话事人', align: 'center' }, { prop: 'createUserName', label: '话事人', align: 'center' },
{ prop: 'msgCount', label: '观点数量', align: 'center', formart: v => v === 0 ? '-' : v }, { prop: 'msgCountTotal', label: '观点数量', align: 'center', formart: v => v === 0 ? '-' : v },
{ prop: 'voteCount', 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: 'status', label: '发布状态', align: 'center', formart: v => this.dict.getLabel('discussStatus', v) },
{ prop: 'createTime', label: '发布时间', align: 'center' }, { prop: 'createTime', label: '发布时间', align: 'center' },