fix: fix issue

This commit is contained in:
@user8949
2025-03-18 22:01:02 +08:00
parent 1658890895
commit e3b6b57be7
5 changed files with 58 additions and 12 deletions

View File

@@ -37,6 +37,7 @@
<script setup lang="ts">
import { ref } from 'vue';
import SidePanel from '@/components/LicenseInfo/SidePanel.vue';
import { getLicenseList } from '@/api/jyh';
const pager = ref({
pageIndex: 1,
pageSize: 30,
@@ -108,6 +109,11 @@ const list = ref([
version: '4.4',
}
])
const getList = async() => {
const res = await getLicenseList()
}
getList();
</script>
<style scoped lang="scss">