12345678910111213141516171819202122232425262728293031323334353637 |
- <template>
- <view class="content">
- <view class="title">{{detail.title}}</view>
- <u-parse :content="detail.answer"></u-parse>
- </view>
- </template>
- <script>
- import $api from '@/static/js/api.js'
- export default {
- data() {
- return {
- id: '',
- detail: {}
- }
- },
- onLoad(option) {
- this.detail = JSON.parse(decodeURIComponent(option.data))
- },
- methods: {
- }
- }
- </script>
- <style lang="scss">
- .content {
- background: #FFFFFF;
- padding: 0 32rpx;
- .title {
- font-size: 32rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 600;
- color: #333333;
- padding: 44rpx 0;
- }
- }
- </style>
|