Browse Source

高度

hella_online_20240829
wangyufei 2 months ago
parent
commit
fbcf4bc792
  1. 8
      src/views/qms/inspectionJob/index.vue

8
src/views/qms/inspectionJob/index.vue

@ -85,11 +85,11 @@
<el-dialog
v-model="showQualityReport"
:title="t('质检明细')"
width="90%"
append-to-body
:append-to-body="false"
destroy-on-close
fullscreen
>
<iframe height="600px" width="100%" :src="qualityReport" frameborder="0"></iframe>
<iframe :height="reportHeight" width="100%" :src="qualityReport" frameborder="0"></iframe>
</el-dialog>
</template>
@ -284,6 +284,8 @@ const buttonTableClick = async (val, row) => {
}
//
//
const reportHeight = ref(window.innerHeight - 120)
const showQualityReport = ref(false)
const qualityReport = ref('')
const checkQualityReport = async (row) => {

Loading…
Cancel
Save