case-data/pages/case/case.vue
2025-04-11 10:49:39 +08:00

35 lines
718 B
Vue

<template>
<view class="content">
<view class="page">
<web-view src="https://wx.igandan.com/hcp/toRegister" @load="loadView"></web-view>
</view>
<tabBar :value="1"></tabBar>
</view>
</template>
<script setup>
import { reactive, ref } from "vue";
import { onShow, onReady } from "@dcloudio/uni-app";
import tabBar from "@/components/tabBar/tabBar.vue";
const loadView = () => {
console.log("加载完成");
uni.setNavigationBarTitle({
title: "注册", // 使用data中的title或者动态生成的title
});
};
onShow(() => {
});
onReady(() => {});
</script>
<style scoped>
.page {
width: 100%;
height: calc(100vh - 100rpx);
overflow-y: scroll;
display: flex;
}
</style>