changjian-detail.vue 616 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <template>
  2. <view class="content">
  3. <view class="title">{{detail.title}}</view>
  4. <u-parse :content="detail.answer"></u-parse>
  5. </view>
  6. </template>
  7. <script>
  8. import $api from '@/static/js/api.js'
  9. export default {
  10. data() {
  11. return {
  12. id: '',
  13. detail: {}
  14. }
  15. },
  16. onLoad(option) {
  17. this.detail = JSON.parse(decodeURIComponent(option.data))
  18. },
  19. methods: {
  20. }
  21. }
  22. </script>
  23. <style lang="scss">
  24. .content {
  25. background: #FFFFFF;
  26. padding: 0 32rpx;
  27. .title {
  28. font-size: 32rpx;
  29. font-family: PingFangSC, PingFang SC;
  30. font-weight: 600;
  31. color: #333333;
  32. padding: 44rpx 0;
  33. }
  34. }
  35. </style>