Files
tv-pro/App.vue

29 lines
558 B
Vue
Raw Normal View History

2025-11-10 14:30:23 +08:00
<script>
import { write } from '@/uni_modules/yk-log'
2025-06-16 13:40:43 +08:00
export default {
2025-11-10 14:30:23 +08:00
onLaunch: function(options) {
write("输出 平台信息");
// 检查网络状态
uni.getNetworkType({
success: (res) => {
write("网络类型"+res.networkType);
},
fail: (err) => {
write("获取网络状态失败");
}
})
2025-06-16 13:40:43 +08:00
},
2025-11-10 14:30:23 +08:00
onShow: function(options) {
write("显示参数"+ JSON.stringify(options));
2025-06-16 13:40:43 +08:00
},
2025-11-10 14:30:23 +08:00
onPageNotFound: function(res) {
write("页面未找到"+ JSON.stringify(res));
2025-06-16 13:40:43 +08:00
}
}
</script>
<style>
</style>