detail.uvue 588 字节
Newer Older
taohebin@dcloud.io's avatar
taohebin@dcloud.io 已提交
1
<template>
DCloud-WZF's avatar
DCloud-WZF 已提交
2 3 4
	<!-- #ifdef APP -->
	<scroll-view style="flex: 1">
		<!-- #endif -->
taohebin@dcloud.io's avatar
taohebin@dcloud.io 已提交
5 6 7
		<view class="article-content">
			<text>{{content}}</text>
		</view>
DCloud-WZF's avatar
DCloud-WZF 已提交
8 9 10
		<!-- #ifdef APP -->
	</scroll-view>
	<!-- #endif -->
taohebin@dcloud.io's avatar
taohebin@dcloud.io 已提交
11 12 13 14 15 16 17 18 19
</template>

<script>
	export default {
		data() {
			return {
				content: "",
			}
		},
20 21 22 23
		onLoad(event) {
      if(event != null){
        this.content = event["content"] ?? "";
      }
taohebin@dcloud.io's avatar
taohebin@dcloud.io 已提交
24 25 26 27 28 29 30 31 32 33 34 35 36
		},
		methods: {
		}
	}
</script>

<style>
	.article-content {
		padding: 0 30rpx;
		overflow: hidden;
		font-size: 30rpx;
		margin-bottom: 30rpx;
	}
DCloud-WZF's avatar
DCloud-WZF 已提交
37
</style>