Pdf.vue 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292
  1. <template>
  2. <el-dialog
  3. class="my-dialog"
  4. fullscreen
  5. append-to-body
  6. :model-value="showDialog"
  7. @close="closeDialog()"
  8. >
  9. <div class="pdf-main">
  10. <div class="title" >
  11. <div class="name" ></div>
  12. <div class="pdf-close cursor-pointer" @click="closeDialog"></div>
  13. </div>
  14. <div id="printTest" class="pdf-dialog-box">
  15. <div class="pdf-my-body" >
  16. <div class="pdfBox">
  17. <div class="a4" id="pdfDom">
  18. <div class="a4_title">确权单</div>
  19. <table class="a4_table" border=1 style="border-collapse: collapse;">
  20. <tr>
  21. <td class="name">农场地址</td>
  22. <td class="text">{{rowData.address}}</td>
  23. <td class="name">农场名称</td>
  24. <td class="text">{{rowData.farmName}}</td>
  25. </tr>
  26. <tr>
  27. <td class="name">创建时间</td>
  28. <td class="text">{{rowData.createDate}}</td>
  29. <td class="name">农场面积</td>
  30. <td class="text">{{rowData.area}}亩</td>
  31. </tr>
  32. <tr>
  33. <td class="name">作物物种</td>
  34. <td class="text">{{rowData.speciesTypeName}}</td>
  35. <td class="name">客户姓名</td>
  36. <td class="text">{{rowData.masterName}}</td>
  37. </tr>
  38. <tr>
  39. <td class="name">联系电话</td>
  40. <td class="text">{{rowData.masterTel}}</td>
  41. </tr>
  42. <tr>
  43. <td class="name">经纬度</td>
  44. <td colspan="3" class="text2">{{rowData.points}}</td>
  45. </tr>
  46. </table>
  47. <div class="a4_sub_title">地块四至图</div>
  48. <img :key="imgUrl" v-show="imgUrl" class="img-content img" style="z-index: 999" width="595" height="500" :src="imgUrl" />
  49. <div :key="imgUrl" v-show="!imgUrl" style="width: 595px;height: 500px" class="img-content" ref="mapRef" id="mapRefId"></div>
  50. <div class="signature">签名:______________</div>
  51. </div>
  52. </div>
  53. </div>
  54. </div>
  55. <div style="text-align: left">
  56. <el-button size="large" color="#626aef" @click="handlePrint">保存</el-button>
  57. <!-- <el-button size="large" color="#626aef" v-print="printObj">打印</el-button> -->
  58. <!-- <el-button size="large" color="#626aef" @click="closeDialog">关闭</el-button>-->
  59. </div>
  60. </div>
  61. </el-dialog>
  62. </template>
  63. <script setup>
  64. import {reactive, ref, toRefs, computed, nextTick, onMounted} from "vue";
  65. import {useStore} from "vuex";
  66. import {WKT} from "ol/format";
  67. import PdfMap from "./pdfMap";
  68. import { dateFormat } from "@/utils/date_util";
  69. import {getAreaByWkt} from "../../utils/map";
  70. import printPdf from "@/utils/html2Canvas";
  71. const emit = defineEmits(["closeDialog","success"])
  72. const state = useStore().state;
  73. const sendConfirmShow = ref(false)
  74. const mapRef = ref(null)
  75. let pdfMap = new PdfMap()
  76. let rowData = ref({})
  77. async function send(){
  78. closeDialog();
  79. }
  80. const props = defineProps({
  81. title:{
  82. type:String,
  83. required:true
  84. },
  85. showDialog: {
  86. type: Boolean,
  87. default: true,
  88. },
  89. rowId:{
  90. type: Number,
  91. required:true,
  92. }
  93. });
  94. let printObj = {
  95. id:"printTest",
  96. popTitle: 'good print',
  97. beforeOpenCallback (vue) {
  98. toImg(true)
  99. console.log('打开之前')
  100. },
  101. openCallback (vue) {
  102. let {masterName, farmName, masterTel} = rowData.value
  103. document.title =`${farmName}-${masterTel}-${masterName}`
  104. console.log('执行了打印')
  105. },
  106. closeCallback (vue) {
  107. document.title =`飞鸟确权平台`
  108. console.log('关闭了打印工具')
  109. }
  110. }
  111. let imgUrl = ref(null)
  112. const executor = ref([])
  113. const executorList = ref([])
  114. const formRef = ref(null);
  115. const {title, rowId} = toRefs(props);
  116. const closeDialog = (key) => {
  117. switch (key){
  118. case "sendConfirm":
  119. sendConfirmShow.value = false;
  120. return
  121. }
  122. emit("closeDialog", "pdf");
  123. };
  124. function toImg() {
  125. // let canvas = pdfMap.kmap.map.getViewport().querySelector('canvas')
  126. // let dataURL = canvas.toDataURL('image/webp');
  127. // imgUrl.value = dataURL;
  128. }
  129. const handlePrint = () =>{
  130. let {masterName, farmName, masterTel} = rowData.value
  131. const title =`${farmName}-${masterTel}-${masterName}`
  132. printPdf(title)
  133. }
  134. onMounted(()=>{
  135. VE_API.authentic.getDetails({id:rowId.value}).then(({data})=>{
  136. data.createDate = dateFormat(new Date(), "YYYY-mm-dd HH:MM:SS");
  137. data.area = data.mu
  138. rowData.value = data
  139. pdfMap.initMap(data,mapRef.value)
  140. setTimeout(function(){
  141. toImg(false)
  142. },1500)
  143. })
  144. })
  145. </script>
  146. <style lang="scss">
  147. $title-height:0px;
  148. $body-height:calc(100% - $title-height);
  149. .pdf-main{
  150. left: 25%;
  151. right: 25%;
  152. top:10%;
  153. bottom:10%;
  154. background: rgba(1,17,22,0.8);
  155. box-shadow: 0px 0px 20px 0px #00FFF0;
  156. border-radius: 4px;
  157. border: 2px solid rgba(81,233,240,0.6);
  158. position: absolute;
  159. .title{
  160. width: 100%;
  161. height: $title-height;
  162. box-sizing: border-box;
  163. background: rgba(0,77,101,0.8);
  164. border-radius: 4px 4px 0px 0px;
  165. border-bottom: 2px solid rgba(81,233,240,0.3);
  166. display: flex;
  167. align-items: center;
  168. justify-content: space-between;
  169. .name{
  170. margin-left: 20px;
  171. font-size: 16px;
  172. font-weight: 600;
  173. color: #00FFF0;
  174. height: 22px;
  175. }
  176. .pdf-close{
  177. width: 16px;
  178. height: 16px;
  179. background-image: url("@/assets/img/close.png");
  180. background-size: 100% 100%;
  181. }
  182. }
  183. }
  184. .pdf-dialog-box{
  185. font-family: PingFangSC-Regular, PingFang SC;
  186. width: 100%;
  187. height: 100%;
  188. .pdf-my-body{
  189. width: 100%;
  190. height: $body-height;
  191. box-sizing: border-box;
  192. padding: 20px;
  193. ::-webkit-scrollbar-thumb {
  194. /* 滚动条里面小方块 */
  195. background: rgb(70, 71, 71);;
  196. border-radius: 6px;
  197. }
  198. ::-webkit-scrollbar-track {
  199. /* 滚动条里面轨道 */
  200. background: #ededed;
  201. }
  202. }
  203. .pdfBox{
  204. height: calc(100%);
  205. width: 100%;
  206. overflow-y: scroll;
  207. box-sizing: border-box;
  208. background-color: rgba(141, 142, 142);
  209. padding: 10px;
  210. }
  211. .a4{
  212. font-family: PingFangSC-Medium, PingFang SC;
  213. background-color: #FFFFFF;
  214. width:595px;
  215. height:auto;
  216. margin: 0 auto;
  217. padding: 15px 63px 15px 63px;
  218. font-weight: 600;
  219. color: #000000;
  220. .a4_title{
  221. width:595px;
  222. height: 28px;
  223. font-size: 24px;
  224. text-align: center;
  225. margin: 10px 0px 10px 0px;
  226. }
  227. .a4_sub_title{
  228. font-size: 16px;
  229. margin: 5px 0px 5px 0px;
  230. }
  231. .a4_table{
  232. height: calc(842px - 33px - 26px - 600px);
  233. max-height: calc(842px - 33px - 26px - 600px);
  234. width:595px;
  235. font-size: 12px;
  236. .name{
  237. width: 50px;
  238. height: 20px;
  239. line-height: 20px;
  240. padding-right: 9px;
  241. box-sizing: border-box;
  242. text-align: right;
  243. }
  244. .text{
  245. width: 122px;
  246. height: 20px;
  247. line-height: 20px;
  248. text-align: left;
  249. padding-left: 9px;
  250. box-sizing: border-box;
  251. }
  252. .text2{
  253. text-align: left;
  254. font-size: 10px;
  255. font-weight: normal;
  256. }
  257. }
  258. .img-content{
  259. z-index: 1000;
  260. margin: 0 auto;
  261. }
  262. .img{
  263. z-index: 999;
  264. }
  265. .signature{
  266. width:595px;
  267. height: 20px;
  268. z-index: 1000;
  269. margin-top: 15px;
  270. text-align: right;
  271. }
  272. }
  273. }
  274. </style>