|
@@ -12,8 +12,8 @@
|
|
|
<view flex center>
|
|
|
<img class="avatar" :src="item.userAvatar" />
|
|
|
<view style="opacity: 0.7; margin-left: 20rpx">
|
|
|
- <view style="fontSize: 26rpx">{{ item.userName }}</view>
|
|
|
- <view style="fontSize: 22rpx">{{ item.createTime }}</view>
|
|
|
+ <view style="font-size: 26rpx">{{ item.userName }}</view>
|
|
|
+ <view style="font-size: 22rpx">{{ item.createTime }}</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view flex center style="opacity: 0.7">
|
|
@@ -22,7 +22,7 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="item-content">
|
|
|
- <view style="fontSize:28rpx">
|
|
|
+ <view style="font-size:28rpx">
|
|
|
{{ item.content }}
|
|
|
</view>
|
|
|
<view class="sub-content" v-if="item.replyList.length > 0">
|
|
@@ -79,9 +79,9 @@ export default {
|
|
|
articleId: e.articleId
|
|
|
}).then(res => {
|
|
|
if (res.data.code === 0) {
|
|
|
- this.url = res.data.data.pic
|
|
|
- this.title = res.data.data.title
|
|
|
- this.content = res.data.data.content
|
|
|
+ this.url = res.data.pic
|
|
|
+ this.title = res.data.title
|
|
|
+ this.content = res.data.content
|
|
|
}
|
|
|
})
|
|
|
this.getList()
|
|
@@ -106,10 +106,10 @@ export default {
|
|
|
getList() {
|
|
|
list(this.form).then(res => {
|
|
|
if (res.data.code === 0) {
|
|
|
- res.data.data.records.map(i => {
|
|
|
+ res.data.records.map(i => {
|
|
|
this.tableData.push(i)
|
|
|
})
|
|
|
- this.hasMore = res.data.data.hasMore
|
|
|
+ this.hasMore = res.data.hasMore
|
|
|
}
|
|
|
})
|
|
|
}
|