diff --git a/src/pages/about/components/request.vue b/src/pages/about/components/request.vue
index 5e0dfc5..b2e599b 100644
--- a/src/pages/about/components/request.vue
+++ b/src/pages/about/components/request.vue
@@ -1,67 +1,8 @@
-
-{
- layout: 'demo',
- style: {
- navigationBarTitleText: '请求',
- },
-}
-
-
-
-
- 使用的是 laf 云后台
- 我的推荐码,可以获得佣金
-
-
-
- {{ recommendUrl }}
-
-
-
-
- {{ recommendUrl }}
-
-
-
- 发送请求
-
- loading...
-
- 请求数据如下
- {{ JSON.stringify(data) }}
-
-
- 重置数据
-
-
-
-
+import useRequest from '@/hooks/useRequest' import { getFooAPI, postFooAPI, IFooItem } from
+'@/service/index/foo' import { ref } from 'vue' // import { findPetsByStatusQueryOptions } from
+'@/service/app' // import { useQuery } from '@tanstack/vue-query' const recommendUrl =
+ref('http://laf.run/signup?code=ohaOgIX') // const initialData = { // name: 'initialData', // id:
+'1234', // } const initialData = undefined //
+适合少部分全局性的接口————多个页面都需要的请求接口,额外编写一个 Service 层 const { loading, error,
+data, run } = useRequest
+