Browse Source

导出确权pdf

shuhao 4 months ago
parent
commit
ad71cda258
1 changed files with 5 additions and 0 deletions
  1. 5 0
      src/views/authentic/index.vue

+ 5 - 0
src/views/authentic/index.vue

@@ -247,6 +247,8 @@
       </div>
     </template>
   </el-dialog>
+  <Pdf :title="formInline.id+''" :showDialog="pdfShow" @closeDialog="pdfShow = false" v-if="formInline.id && pdfShow" :rowId="formInline.id"></Pdf>
+
 </template>
 
 <script setup>
@@ -258,6 +260,8 @@ import { useRouter } from "vue-router";
 import { ElMessage, ElMessageBox } from "element-plus";
 import { dateFormat } from "@/utils/date_util";
 import { exportExcel, parseMultiPolygon } from "@/utils/index";
+import Pdf from "./Pdf";
+const pdfShow = ref(false)
 const router = useRouter();
 
 let authenticMap = new AuthenticMap();
@@ -408,6 +412,7 @@ const onSubmit = () => {
 // 打印
 const handlePrint = () =>{
     console.log('打印');
+    pdfShow.value = true
 }
 
 // 返回