18 lines
447 B
Vue
18 lines
447 B
Vue
|
|
<script setup>
|
||
|
|
import WebviewPage from '@/components/WebviewPage.vue'
|
||
|
|
|
||
|
|
const webviewSrc = '/complaint' // 可以根据不同页面设置不同的值
|
||
|
|
const navigationBarTitleText = '投诉服务' // 同样可以根据需要修改
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<WebviewPage :webview-src="webviewSrc" :navigation-bar-title-text="navigationBarTitleText" />
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<route lang="json">
|
||
|
|
{
|
||
|
|
"layout": "page",
|
||
|
|
"title": "投诉服务"
|
||
|
|
}
|
||
|
|
</route>
|