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 <el-dialog
v-model="showQualityReport" v-model="showQualityReport"
:title="t('质检明细')" :title="t('质检明细')"
width="90%" :append-to-body="false"
append-to-body
destroy-on-close 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> </el-dialog>
</template> </template>
@ -284,6 +284,8 @@ const buttonTableClick = async (val, row) => {
} }
// //
//
const reportHeight = ref(window.innerHeight - 120)
const showQualityReport = ref(false) const showQualityReport = ref(false)
const qualityReport = ref('') const qualityReport = ref('')
const checkQualityReport = async (row) => { const checkQualityReport = async (row) => {

Loading…
Cancel
Save