detailedPath.vue 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <template>
  2. <view class="detailed" style="font-size: 30upx">
  3. <view class="detailedContent">
  4. <web-view update-title="消防报告详情" :src="pathUrl" allow></web-view>
  5. </view>
  6. </view>
  7. </template>
  8. <script setup>
  9. import { onReady, onLoad, onShow, onNavigationBarButtonTap } from "@dcloudio/uni-app";
  10. import { ref, onMounted, inject, shallowRef, reactive, watchEffect, getCurrentInstance, toRefs } from "vue";
  11. import { useStores, commonStores } from "@/store/modules/index";
  12. import lineEcharts from "./echarts.vue";
  13. import {} from "@/api/business/mhxf/informationSelect";
  14. const { proxy } = getCurrentInstance();
  15. const commonStore = commonStores(); //全局公共Store
  16. const dataList = reactive({
  17. pathUrl: "",
  18. viewerUrl: "",
  19. });
  20. const { pathUrl, viewerUrl } = toRefs(dataList);
  21. let host;
  22. //#ifdef APP-PLUS || MP-WEIXIN
  23. host = uni.getStorageSync("serveUrl");
  24. //#endif
  25. //#ifdef H5
  26. host = window.location.host;
  27. //#endif
  28. if (host.indexOf("172.16.120") != -1) {
  29. viewerUrl.value = "http://172.16.120.165:9300/statics/pdf_js/web/viewer.html";
  30. } else {
  31. viewerUrl.value = "http://file.usky.cn/statics/pdf_js/web/viewer.html";
  32. }
  33. watchEffect(() => {});
  34. // 自定义导航事件
  35. onNavigationBarButtonTap((e) => {
  36. if (e.float == "right") {
  37. uni.navigateTo({
  38. url: "/pages/business/zhaf/xunJian/collect/components/collectRecord",
  39. });
  40. } else {
  41. }
  42. });
  43. onLoad((options) => {
  44. if (options.reportPath) {
  45. let fileUrl = encodeURIComponent(options.reportPath); // encodeURIComponent 函数可把字符串作为 URI 组件进行编码。
  46. pathUrl.value = viewerUrl.value + "?file=" + fileUrl;
  47. }
  48. });
  49. onShow(() => {
  50. //调用系统主题颜色
  51. proxy.$settingStore.systemThemeColor([1]);
  52. });
  53. onReady(() => {});
  54. onMounted(() => {});
  55. </script>
  56. <style lang="scss">
  57. .detailed {
  58. height: calc(100vh - 44px);
  59. .detailedContent {
  60. }
  61. }
  62. </style>