|
|
@@ -59,7 +59,8 @@ const hasIframe = computed(() => {
|
|
|
// 计算scale:如果是iframe界面且scale大于1就按1,否则按原scale
|
|
|
const iframeScale = computed(() => {
|
|
|
if (hasIframe.value) {
|
|
|
- return Math.min(props.scale, 1)
|
|
|
+ // return Math.min(props.scale, 1)
|
|
|
+ return props.scale
|
|
|
}
|
|
|
return props.scale
|
|
|
})
|