12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <template>
- <view>
- <view class="u-content">
- <u-parse :autosetTitle="true"
- :html="content"
- :selectable="true"
- :show-with-animation="true"></u-parse>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- title: '开源字节',
- content: ``
- }
- },
- onLoad(option) {
- let id = option.id
- let url = "/api/cmsApi/getArticle/" + id;
- this.$u.get(url).then(res => {
- this.title = res.data.smallTitle
- this.content = res.data.articleContent
- uni.setNavigationBarTitle({
- title: this.title
- })
- });
- },
- methods: {
- goIndex() {
- this.$u.route('/pages/index/index');
- },
- }
- }
- </script>
- <style>
- page {
- background-color: #FFFFFF;
- }
- </style>
- <style lang="scss" scoped>
- .u-content {
- margin: 0 10 rpx;
- padding: 24 rpx;
- font-size: 34 rpx;
- color: $u-main-color;
- line-height: 1.8;
- white-space: pre-wrap !important;
- }
- </style>
|