抗战 书房

main
lion 4 months ago
parent 5d496acf90
commit 747e70dd6e

@ -19,8 +19,9 @@
<view class="detail-image" v-if="info.image"> <view class="detail-image" v-if="info.image">
<image :src="info.image.url" mode="widthFix"></image> <image :src="info.image.url" mode="widthFix"></image>
</view> </view>
<view class="detail-content-content"> <view class="detail-content-content">
<rich-text v-if='showContent' :nodes="info.content?info.content:' '"></rich-text> <u-parse v-if='showContent' :html="info.content?info.content:' '"></u-parse>
<!-- <rich-text v-if='showContent' :nodes="info.content?info.content:' '"></rich-text> -->
</view> </view>
</view> </view>
</view> </view>
@ -70,9 +71,17 @@
table_name: 'map_point_image_articles', table_name: 'map_point_image_articles',
'with_relations[0]': 'image' 'with_relations[0]': 'image'
}) })
this.info = res this.info = res
this.info.content = this.replaceStoragePath(res.content)
console.log(this.info.content)
this.showContent = true this.showContent = true
}, },
replaceStoragePath(htmlStr) {
// src ../storage
const regex = /src=["']\..\/storage/g;
//
return htmlStr.replace(regex, 'src="https://h5.jscnsaas.cn/storage');
}
} }
} }
</script> </script>

Loading…
Cancel
Save