diff --git a/packages/conv/neighbor2neighbor/AppHelp/components/List.vue b/packages/conv/neighbor2neighbor/AppHelp/components/List.vue index 199246ec..41285d67 100644 --- a/packages/conv/neighbor2neighbor/AppHelp/components/List.vue +++ b/packages/conv/neighbor2neighbor/AppHelp/components/List.vue @@ -86,6 +86,7 @@ { prop: 'appreciateCount', label: '点赞数', align: 'center', width: '120' }, { prop: 'sharedCount', label: '分享数', align: 'center', width: '120' }, { prop: 'blacklist', label: '状态', align: 'center', format: v => v ? '禁言' : '正常' }, + { prop: 'status', label: '审核状态', align: 'center', width: '120', dict: 'auditStatus' }, { slot: 'options'}, ], tableData: [], @@ -101,7 +102,9 @@ created() { this.search.areaId = this.user.info.areaId - this.getList() + this.dict.load('auditStatus').then(() => { + this.getList() + }) }, methods: {