talkInfo.vue 500 B

1234567891011121314151617181920212223242526272829303132
  1. <template>
  2. <view style="padding: 0 30rpx;">
  3. <view class="" style="font-size: 40rpx;text-align: center;">
  4. {{info.title}}
  5. </view>
  6. <rich-text :nodes="info.content"></rich-text>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. onLoad(option) {
  12. this.getinfo(option.id)
  13. },
  14. data() {
  15. return {
  16. info:{}
  17. }
  18. },
  19. methods: {
  20. getinfo(id){
  21. uni.$u.http.post('/api/index/articlederail',{id:id}).then(res => {
  22. this.info=res.data
  23. })
  24. }
  25. }
  26. }
  27. </script>
  28. <style>
  29. </style>