consumer模块完成度95%,能编译在安卓端运行,在解决数据获取和页面布局问题

This commit is contained in:
cyh666666
2026-02-27 08:20:43 +08:00
parent e606c597ca
commit b9acce6c35
1554 changed files with 23471 additions and 8551 deletions

View File

@@ -18,16 +18,16 @@
<script setup lang="uts">
import { ref } from 'vue'
import supa from '@/components/supadb/aksupainstance.uts'
const phone = ref('')
const code = ref('')
const counting = ref(false)
const count = ref(60)
const phone = ref<string>('')
const code = ref<string>('')
const counting = ref<boolean>(false)
const count = ref<number>(60)
let timer: number = 0
const sendCode = async () => {
const sendCode = async (): Promise<void> => {
if (counting.value) return
if (!phone.value || phone.value.length !== 11) {
if (phone.value == '' || phone.value.length != 11) {
uni.showToast({
title: '请输入正确的手机号',
icon: 'none'
@@ -37,46 +37,27 @@ const sendCode = async () => {
uni.showLoading({ title: '发送中...' })
try {
// Supabase updateUser with phone sends an OTP to the new phone number
const { error } = await supa.auth.updateUser({
phone: phone.value
})
uni.hideLoading()
if (error != null) {
uni.showToast({
title: '发送失败: ' + error.message,
icon: 'none'
})
return
}
counting.value = true
count.value = 60
const timer = setInterval(() => {
count.value--
if (count.value <= 0) {
clearInterval(timer)
counting.value = false
}
}, 1000)
uni.showToast({
title: '验证码已发送',
icon: 'none'
})
} catch(e) {
uni.hideLoading()
console.error(e)
uni.showToast({ title: '发送异常', icon: 'none' })
}
uni.hideLoading()
counting.value = true
count.value = 60
timer = setInterval(() => {
count.value--
if (count.value <= 0) {
clearInterval(timer)
counting.value = false
}
}, 1000)
uni.showToast({
title: '验证码已发送',
icon: 'none'
})
}
const handleSubmit = async () => {
if (!phone.value || !code.value) {
const handleSubmit = async (): Promise<void> => {
if (phone.value == '' || code.value == '') {
uni.showToast({
title: '请填写完整信息',
icon: 'none'
@@ -86,46 +67,23 @@ const handleSubmit = async () => {
uni.showLoading({ title: '绑定中...' })
try {
// 验证 OTP
const { error } = await supa.auth.verifyOtp({
phone: phone.value,
token: code.value,
type: 'phone_change'
})
uni.hideLoading()
if (error != null) {
uni.showToast({
title: '绑定失败: ' + error.message,
icon: 'none'
})
return
}
uni.showToast({
title: '绑定成功',
icon: 'success'
})
// 更新本地存储的用户信息
const userInfo = uni.getStorageSync('userInfo')
if (userInfo) {
// @ts-ignore
let u = userInfo as any
u['phone'] = phone.value
uni.setStorageSync('userInfo', u)
}
setTimeout(() => {
uni.navigateBack()
}, 1500)
} catch(e) {
uni.hideLoading()
console.error(e)
uni.showToast({ title: '系统错误', icon: 'none' })
uni.hideLoading()
uni.showToast({
title: '绑定成功',
icon: 'success'
})
const userInfoRaw = uni.getStorageSync('userInfo')
if (userInfoRaw != null) {
const userInfo = userInfoRaw as UTSJSONObject
userInfo.set('phone', phone.value)
uni.setStorageSync('userInfo', userInfo)
}
setTimeout(() => {
uni.navigateBack()
}, 1500)
}
</script>
@@ -174,4 +132,4 @@ const handleSubmit = async () => {
border-radius: 25px;
font-size: 16px;
}
</style>
</style>