web.vue 598 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <template>
  2. <web-view :src="url"></web-view>
  3. </template>
  4. <script>
  5. export default {
  6. onLoad: function (option) {
  7. const token = uni.getStorageSync('token');
  8. this.url = `${option.url}?token=${token}`;
  9. },
  10. data() {
  11. return {
  12. url: '',
  13. }
  14. },
  15. async mounted() {},
  16. methods: {}
  17. }
  18. </script>
  19. <style>
  20. .time {
  21. width: 100%;
  22. text-align: center;
  23. display: block;
  24. font-size: 12px;
  25. }
  26. .content {
  27. display: block;
  28. width: 90%;
  29. margin: 10px auto;
  30. }
  31. .title {
  32. width: 90%;
  33. margin: 0 auto;
  34. display: block;
  35. }
  36. .uni-title__base {
  37. line-height: 1.2em !important;
  38. }
  39. </style>