123456789101112131415161718192021222324 |
- <template>
- <van-button>123</van-button>
- <div class="bg-black w-16 h-16"></div>
- </template>
- <script setup lang="ts">
- import axiosIns from '@/api'
- import { onMounted, ref } from 'vue'
- console.log(import.meta.env)
- defineProps<{ msg: string }>()
- const count = ref(0)
- console.log(count.value)
- onMounted(async() => {
- const res = axiosIns('lawyer-workbench/risk/dimension/page?dimensionCode=court_announcement&pageNum=1&pageSize=10&deleted=0&announcementType=&year=&entityType=2&entityName=%E5%AE%81%E5%BE%B7%E6%97%B6%E4%BB%A3%E6%96%B0%E8%83%BD%E6%BA%90%E7%A7%91%E6%8A%80%E8%82%A1%E4%BB%BD%E6%9C%89%E9%99%90%E5%85%AC%E5%8F%B8&entityId=76d4d8ae15b063986d88abe92a5efe83')
- console.log(res)
- })
- </script>
- <style scoped>
- </style>
|