|
@@ -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
|
|
|
}
|
|
|
|
|
|
// 返回
|