<!-- h5嵌入页面 --> <template> <web-view :src="getUrl" ></web-view> </template> <script> import { getLocationParams } from '../../common/utils.js' export default { data() { return { getUrl: '' } }, mounted() { this.getUrl = decodeURIComponent(getLocationParams('url')); // 通知公告的h5显示 -> 通知公告 // if (getLocationParams('type') === 'tzgg') { // setTimeout(() => { // wx.setNavigationBarTitle({ // title: "111", // }); // },2000) // } }, } </script> <style> </style>