Qx
qx
2025-04-18 ca4a2d4dfbb58cd92a5f40d5541ce098ec3417b1
Qx
1个文件已修改
1个文件已添加
46 ■■■■■ 已修改文件
src/views/hosp/order/index.vue 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/jmreport/reservation/index.vue 43 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/hosp/order/index.vue
@@ -3117,8 +3117,9 @@
    /** 导出按钮操作 */
    handleExport() {
      console.log(this.queryParams)
      this.download(
        "hosp/order/export",
        "/hosp/order/exportOrderList",
        {
          ...this.queryParams,
        },
src/views/jmreport/reservation/index.vue
New file
@@ -0,0 +1,43 @@
<template>
    <div v-loading="loading" :style="'height:' + height">
      <iframe :src="src" frameborder="no" style="width: 100%;height: 100%" scrolling="auto" />
    </div>
  </template>
  <script>
  import {
    getToken
  } from '@/utils/auth'
  import { view } from "@/api/jmreport/jimu";
  export default {
    name: "Ureport",
    data() {
      return {
        src: "",
        height: document.documentElement.clientHeight - 94.5 + "px;",
        loading: true,
        viewNum:"1073102401980628992",
      };
    },
    created() {
      view().then((res) => {
        this.src =
          res +
          "/" +
          this.viewNum +
          "?token=Bearer " +
          getToken();
      });
      // this.src = "http://192.168.0.99:8080/ltkj-admin/jmreport/view/815468234724306944?token=Bearer " + getToken();
    },
    mounted: function () {
      setTimeout(() => {
        this.loading = false;
      }, 230);
      const that = this;
      window.onresize = function temp() {
        that.height = document.documentElement.clientHeight - 94.5 + "px;";
      };
    }
  };
  </script>