webContent.vue 574 B

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <view class="container">
  3. <rich-text :nodes="webContent"></rich-text>
  4. </view>
  5. </template>
  6. <script>
  7. var config = require('../../common/config.js');
  8. export default {
  9. data() {
  10. return {
  11. webContent: ''
  12. };
  13. }
  14. /**
  15. * 生命周期函数--监听页面加载
  16. */
  17. ,
  18. onLoad: function(options) {
  19. uni.setNavigationBarTitle({
  20. title: options.title ? options.title : ''
  21. });
  22. this.setData({
  23. webContent: options.webContent ? options.webContent : ''
  24. })
  25. },
  26. methods: {
  27. }
  28. };
  29. </script>
  30. <style>
  31. @import './webContent.css';
  32. </style>