first commit

This commit is contained in:
2026-04-20 16:42:28 +08:00
commit c77780fa0e
365 changed files with 41599 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<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>