feat: 请求增加返回类型

This commit is contained in:
Burt 2023-12-23 11:47:37 +08:00
parent 252b5578ac
commit e29cfe99dc
2 changed files with 8 additions and 3 deletions

View File

@ -7,7 +7,7 @@
<button @click="setUserInfo">设置UserInfo</button> <button @click="setUserInfo">设置UserInfo</button>
<button @click="clearUserInfo">清除UserInfo</button> <button @click="clearUserInfo">清除UserInfo</button>
<button @click="request">请求</button> <button @click="handleRequest">请求</button>
<view class="flex justify-center items-center text-blue-500"> <view class="flex justify-center items-center text-blue-500">
Demo Count: {{ countStore.count }} Demo Count: {{ countStore.count }}
<button class="ml-2" @click="countStore.increment">新增</button> <button class="ml-2" @click="countStore.increment">新增</button>
@ -28,6 +28,7 @@
import { ref } from 'vue' import { ref } from 'vue'
import { useCountStore, useUserStore } from '@/store' import { useCountStore, useUserStore } from '@/store'
import { http } from '@/utils/http' import { http } from '@/utils/http'
import { UserItem } from '@/typings'
const countStore = useCountStore() const countStore = useCountStore()
const title = ref('Hello') const title = ref('Hello')
@ -43,8 +44,8 @@ const setUserInfo = () => {
const clearUserInfo = () => { const clearUserInfo = () => {
userStore.clearUserInfo() userStore.clearUserInfo()
} }
const request = () => { const handleRequest = () => {
const res = http({ const res = http<UserItem[]>({
url: '/getUserList', url: '/getUserList',
method: 'GET', method: 'GET',
}) })

4
src/typings.d.ts vendored
View File

@ -2,3 +2,7 @@ export type UserInfo = {
username: string username: string
token: string token: string
} }
export type UserItem = {
username: string
age: number
}