This commit is contained in:
xiaoguangbin 2023-11-30 10:15:49 +08:00
commit bd809b8368

View File

@ -13,7 +13,7 @@ import xss from "xss"
<a-button v-if="record.openType === 'url'" type="primary" @click="toHandle">去处理</a-button> <a-button v-if="record.openType === 'url'" type="primary" @click="toHandle">去处理</a-button>
</template> </template>
<a-card class="daily-article" :loading="loading"> <a-card class="daily-article" :loading="loading">
<a-card-meta :title="record.titile" :description="'发布人:' + record.sender + ' 发布时间: ' + record.sendTime"> <a-card-meta :title="record.titile" :description="'发布人:' + record.sender + ' 发布时间: ' + record.sendTime">
</a-card-meta> </a-card-meta>
<a-divider /> <a-divider />
<span v-html="record.msgContent" class="article-content"></span> <span v-html="record.msgContent" class="article-content"></span>
@ -151,4 +151,12 @@ export default {
} }
} }
} }
.ant-card-bordered {
border: none;
padding: 20px;
}
/deep/.ant-card-meta-title {
font-weight: 700;
font-size: 18px;
}
</style> </style>