AI-accounting-soft-uniApp/pages/login/login-simple.vue
2025-12-12 16:49:06 +08:00

23 lines
784 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view style="padding: 100px; text-align: center; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center;">
<text style="font-size: 48px; color: #fff; margin-bottom: 40px; display: block;">强宝爱记账</text>
<text style="font-size: 32px; color: rgba(255,255,255,0.9); display: block;">登录页面测试</text>
<text style="font-size: 24px; color: rgba(255,255,255,0.7); margin-top: 20px; display: block;">如果能看到这个说明路由正常</text>
</view>
</template>
<script>
export default {
onLoad() {
console.log('登录页面加载成功')
},
onReady() {
console.log('登录页面准备完成')
}
}
</script>