su
su1124
2024-01-02 c26281ff05585d8f3f337b290831803fe766748b
src/views/system/biol/index.vue
@@ -88,6 +88,15 @@
        >
      </el-col>
      <el-col :span="1.5">
        <el-button
          type="primary"
          size="mini"
          :disabled="multiple"
          @click="baogaoyulan"
          >报告预览</el-button
        >
      </el-col>
      <el-col :span="1.5">
        <div id="main111">
          <el-input style="width: 920px" v-model="form.name"></el-input>
        </div>
@@ -441,6 +450,21 @@
        </div>
      </div>
    </div>
     <el-dialog
      class="dia"
      title="PDF 预览"
      :visible.sync="dialogVisibles"
      :close-on-click-modal="false"
    >
      <div class="main">
        <iframe
          id="printIframe"
          :src="url"
          frameborder="0"
          style="width: 100%; height: 100%"
        ></iframe>
      </div>
    </el-dialog>
  </div>
</template>
@@ -511,6 +535,8 @@
          label: "空号",
        },
      ],
      url: "",
      dialogVisibles: false,
      barcode: null,
      value: "",
      dialogVisible: false,
@@ -686,6 +712,32 @@
      const params = { viewNum, tjNum };
      this.$tab.openPage("健康证检查表", "/report/jiankangzheng", params);
    },
    baogaoyulan() {
      const tjNumber = this.report;
      const flag = true;
      getPdf(tjNumber, flag).then((response) => {
        if (response.size === 0) {
          const loading = this.$loading({
            lock: true,
            text: "Loading",
            spinner: "el-icon-loading",
            background: "rgba(0, 0, 0, 0.7)",
          });
          setTimeout(() => {
            loading.close();
          }, 3000);
          // this.$message.msgSuccess("报告正在生成,请两分钟后预览!");
          this.$message({
          message: '报告正在生成,请两分钟后预览!',
          type: 'warning'
        });
        } else {
          this.dialogVisible = true;
          this.url = window.webkitURL.createObjectURL(response); //将后端返回的blob文件读取出url
        }
      });
    },
    //打印小票
    printHandle() {
      setTimeout(function () {