2025-10-13 18:28:18 +08:00
|
|
|
<template>
|
2025-10-22 13:31:23 +08:00
|
|
|
<iframe :src="iframeSrc" style="width: 100%; height: 100vh; border: none"></iframe>
|
2025-10-13 18:28:18 +08:00
|
|
|
</template>
|
2025-10-22 13:31:23 +08:00
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
export default {
|
|
|
|
|
name: 'MallIframe',
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
iframeSrc: '',
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
mounted() {
|
|
|
|
|
console.log('🚀 ~ mounted:', window.location)
|
2025-11-18 14:09:29 +08:00
|
|
|
// 增加路由参数
|
|
|
|
|
|
2025-10-22 13:31:23 +08:00
|
|
|
this.iframeSrc =
|
|
|
|
|
process.env.NODE_ENV === 'production'
|
2025-12-16 16:55:51 +08:00
|
|
|
? '/iws/mall-view/home?redirect=equipList'
|
2025-11-18 14:09:29 +08:00
|
|
|
: 'http://localhost:8102/iws/mall-view/home?redirect=equipList'
|
2025-10-22 13:31:23 +08:00
|
|
|
console.log('🚀 ~ this.iframeSrc:', this.iframeSrc)
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
</script>
|