完成consumer端同步

This commit is contained in:
2026-05-14 15:28:09 +08:00
parent 612fb3d360
commit 0ffbc53902
197 changed files with 92657 additions and 7564 deletions

View File

@@ -0,0 +1,22 @@
<template>
<view />
</template>
<script lang="uts">
export default {
onLoad(options) {
let url = '/pages/user/profile'
if (options != null) {
const optObj = options as UTSJSONObject
const userId = optObj.getString('userId') ?? ''
if (userId !== '') {
url = `/pages/user/profile?userId=${encodeURIComponent(userId)}`
}
}
uni.redirectTo({ url })
}
}
</script>
<style scoped>
</style>