ZhiYeJianKang_ZhiFa_APP/pages/loading/loading.vue
2025-02-20 15:36:22 +08:00

32 lines
426 B
Vue

<template>
<view>
<u-toast ref="uToast" />
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
onShow() {
// uni.showToast({
// title: '加载中',
// duration: 2000
// });
// uni.navigateTo({
// //保留当前页面,跳转到应用内的某个页面
// url: '/pages/statistics/statistics'
// })
},
}
}
</script>
<style>
</style>