邻里互动

This commit is contained in:
liuye
2023-03-16 17:25:55 +08:00
parent 024efa9bcb
commit 8f3dc49a76
2 changed files with 6 additions and 2 deletions

View File

@@ -24,6 +24,10 @@
<ai-uploader :instance="instance" disabled v-model="info.files">
</ai-uploader>
</div>
</template>
</ai-card>
<ai-card title="评论信息">
<template #content>
<div class="comment-list" v-if="commontList.length">
<div class="title">评论</div>
<div class="item" v-for="(item, index) in commontList" :key="index">

View File

@@ -72,10 +72,10 @@
total: 10,
colConfigs: [
{ prop: 'content', label: '内容', align: 'left', 'show-overflow-tooltip': true },
{ prop: 'createUserName', label: '发帖人', align: 'center', width: '120' },
{ prop: 'createTime', label: '创建时间', align: 'center', width: '180' },
{ prop: 'commentCount', label: '评论数', align: 'center', width: '120' },
{ prop: 'appreciateCount', label: '点赞数', align: 'center', width: '120' },
{ prop: 'createUserName', label: '发帖人', align: 'center', width: '120' },
{ prop: 'createTime', label: '创建时间', align: 'center', width: '180' },
{ prop: 'sharedCount', label: '分享数', align: 'center', width: '120' },
{ slot: 'options'},
],