officialAccount.vue 343 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <view>
  3. <web-view :src="url"></web-view>
  4. </view>
  5. </template>
  6. <script>
  7. import { config, getUrl } from '@/api/api.js'
  8. export default {
  9. data() {
  10. return {
  11. url: ''
  12. }
  13. },
  14. onLoad() {
  15. getUrl({appId: config.appid}).then(res => {
  16. this.url = res.data
  17. })
  18. },
  19. methods: {
  20. }
  21. }
  22. </script>
  23. <style>
  24. </style>