16 lines
330 B
Vue
16 lines
330 B
Vue
|
|
<script setup lang="ts">
|
||
|
|
import { useReportWebview } from '@/composables/useReportWebview'
|
||
|
|
definePage({ layout: false })
|
||
|
|
|
||
|
|
const { buildSitePathUrl } = useReportWebview()
|
||
|
|
const src = ref('')
|
||
|
|
|
||
|
|
onLoad(() => {
|
||
|
|
src.value = buildSitePathUrl('/app/agentSerivceAgreement')
|
||
|
|
})
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<web-view :src="src" />
|
||
|
|
</template>
|