contactour.vue 403 B

12345678910111213141516171819202122232425262728293031
  1. <template>
  2. <view>
  3. <rich-text :nodes="about_us"></rich-text>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. onLoad() {
  9. this.getInfo()
  10. },
  11. data() {
  12. return {
  13. about_us:''
  14. }
  15. },
  16. methods: {
  17. getInfo(){
  18. uni.$u.http.post('/api/Publics/config_info').then(res => {
  19. if(res.code==1){
  20. this.about_us=res.data.about_us
  21. }
  22. })
  23. }
  24. }
  25. }
  26. </script>
  27. <style>
  28. </style>