he wei
2025-04-23 b9bd29a1a81f6f7de479e3cc3fdfe3d85fc660bf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<script setup>
import { ref, onMounted } from "vue";
import { getSiteList } from '@/api/common.js'
 
onMounted(() => {
  getSiteList().then((res) => {
    let { code, data, data2 } = res;
    if (code && data) {
      console.log(data, data2);
    }
  })
  .catch((err) => {
    console.log(err);
  });
  
});
</script>
 
<template>
  <div class="">
    
  </div>
</template>
 
<style scoped lang="less">
 
</style>