excelDetail.vue 404 B

123456789101112131415161718192021222324
  1. <template>
  2. <web-view :src="url"></web-view>
  3. </template>
  4. <script>
  5. import {
  6. host
  7. } from "@/services/constants.js"
  8. const token = uni.getStorageSync('token')
  9. export default {
  10. data() {
  11. return {
  12. url: '',
  13. }
  14. },
  15. onLoad(options) {
  16. this.url = `http://120.55.44.4:8896/#/mobile/detail/${options.templateNodeId}/${options.versionId}?JWT-TOKEN=${token}`
  17. },
  18. }
  19. </script>
  20. <style>
  21. </style>