- 移除了不必要的弹窗和屏幕方向检测功能 - 调整了签名面板的布局和样式 -优化了签名提交流程,直接跳转到支付页面 - 修复了外部链接页面的标题和安全问题 - 改进了支付页面的加载提示
22 lines
310 B
Vue
22 lines
310 B
Vue
<script setup>
|
|
definePageMeta({
|
|
layout: 'default',
|
|
})
|
|
|
|
const route = useRoute()
|
|
const url=route.query.url??''
|
|
useHead({
|
|
title: route.query.title
|
|
})
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<iframe sandbox="allow-same-origin allow-scripts allow-forms" :src="url"></iframe>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
</style> |