webview.vue 517 B

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <rich-text :nodes="nodes"></rich-text>
  3. </template>
  4. <script>
  5. export default {
  6. data() {
  7. return {
  8. // 页面类型 1 用户协议 2 关于我们
  9. type:1,
  10. // 文本内容
  11. nodes:''
  12. }
  13. },
  14. onLoad(e) {
  15. // 设置页面类型
  16. this.type = Number(e.type)
  17. this.getData()
  18. },
  19. methods: {
  20. getData(){
  21. this.request('/common/agreement',{id:this.type},"GET").then(res=>{
  22. if(res.code ===1){
  23. this.nodes = res.data
  24. }
  25. })
  26. },
  27. }
  28. }
  29. </script>
  30. <style>
  31. </style>