小程序修改

This commit is contained in:
2025-12-10 17:00:54 +08:00
parent 23afb90cbe
commit fa3dbe0496
47 changed files with 5282 additions and 199 deletions

View File

@@ -0,0 +1,24 @@
<template>
<div>
</div>
</template>
<script lang="ts" setup>
import { reactive } from "vue"
import type { LoginParam} from "@shared/types/auth"
import { authAPI } from "@shared/api/auth/auth"
const loginParam = reactive<LoginParam>({
loginType: "password"
})
async function login(){
// const result = await authAPI.login(loginParam)
}
</script>
<style lang="scss" scoped>
</style>