From 22260b8e7349fe03402529d4918739b276113340 Mon Sep 17 00:00:00 2001 From: admin <15939171744@163.com> Date: 星期五, 27 九月 2024 15:17:34 +0800 Subject: [PATCH] 下线打印报告优化 --- jcdm-ui/src/views/components/offlineQualificationReport.vue | 29 +++++++++++++++++++++-------- 1 files changed, 21 insertions(+), 8 deletions(-) diff --git a/jcdm-ui/src/views/components/offlineQualificationReport.vue b/jcdm-ui/src/views/components/offlineQualificationReport.vue index ea09fb0..7f969d6 100644 --- a/jcdm-ui/src/views/components/offlineQualificationReport.vue +++ b/jcdm-ui/src/views/components/offlineQualificationReport.vue @@ -1,15 +1,16 @@ <template> - <table class="yk-table" border="1px" cellspacing="0" align="center" width="900px" style="font-size: 11px;font-family: SimSun;word-wrap:break-word;word-break:break-all"> + <table class="yk-table" border="1px" cellspacing="0" align="center" width="900px" style="font-size: 11px;font-family: SimSun;word-wrap:break-word;word-break:break-all;border-collapse: collapse;border-color: #000"> <tr> - <td colspan="11"> - <img style="width: 140px;height: 20px;" :src="require('@/assets/images/a8963a24920640508e96150a053fc41.png')"> - <span style="text-decoration: underline;margin-left: 23%;font-size: 15px">婀栧窞鏅鸿姱鍔ㄥ姏绯荤粺鍙戝睍鏈夐檺鍏徃</span> - <div style="border-bottom: #181818 1px solid;"></div> + <td colspan="11" style="padding-top: 6px;"> + <img style="width: 140px;height: 20px;margin-left: 15px;" :src="require('@/assets/images/a8963a24920640508e96150a053fc41.png')"> + <span style="text-decoration: underline;margin-left: 23%;font-size: 15px;">婀栧窞鏅鸿姱鍔ㄥ姏绯荤粺鍙戝睍鏈夐檺鍏徃</span> + <div style="border-bottom: 1px solid #181818;margin: 5px 10px 2px 6px;"></div> + <div style="border-bottom: 1px solid #181818;margin: 0 10px 2px 6px;"></div> </td> </tr> <tr align="center"> - <td colspan="11"> - <span style="font-size: 15px">鍑鸿揣妫�鏌ユ姤鍛�</span> + <td colspan="11" style="padding: 2px 0;"> + <span style="font-size: 15px;font-weight: bold;">鍑鸿揣妫�鏌ユ姤鍛�</span> </td> </tr> <tr> @@ -582,7 +583,19 @@ <script> export default { - name: "offlineQualificationReport" + name: "offlineQualificationReport", + props: ['printParam'], + data() { + return { + printData: this.printParam + } + }, + created() { + console.log(this.printData) + }, + methods: { + } + } </script> -- Gitblit v1.9.3