mirror of
https://github.com/continew-org/continew-admin-ui.git
synced 2025-11-11 12:57:10 +08:00
refactor: 优化认证及客户端相关代码
This commit is contained in:
@@ -17,7 +17,7 @@
|
||||
|
||||
<script setup lang="ts">
|
||||
import { useWindowSize } from '@vueuse/core'
|
||||
import { type AppResp, getApp as getData } from '@/apis/open/app'
|
||||
import { type AppResp, getApp as getDetail } from '@/apis/open/app'
|
||||
|
||||
const { width } = useWindowSize()
|
||||
|
||||
@@ -27,7 +27,7 @@ const visible = ref(false)
|
||||
|
||||
// 查询详情
|
||||
const getDataDetail = async () => {
|
||||
const { data } = await getData(dataId.value)
|
||||
const { data } = await getDetail(dataId.value)
|
||||
dataDetail.value = data
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user