update: 新疆大屏

This commit is contained in:
xf
2025-07-06 18:03:41 +08:00
parent 86ed8341e2
commit aa71fd5c7e
9 changed files with 146 additions and 44 deletions
+14 -2
View File
@@ -31,9 +31,21 @@
<script setup lang="ts">
import { Vue3SeamlessScroll } from 'vue3-seamless-scroll';
import { Empty } from 'ant-design-vue';
import { ref } from 'vue';
import { onMounted, ref } from 'vue';
import hospitalPng from '/@/assets/indexSun/hospital.png';
const scrollList = ref<any[]>([{}, {}, {}, {}, {}, {}, {}, {}]);
import { threeLApi } from '/@/views/indexSun/indexSun.api.ts';
const scrollList = ref<any[]>([]);
onMounted(() => {
getList();
});
function getList() {
threeLApi({}).then((res) => {
if (res.code == 200) {
console.log(res.result);
scrollList.value = res.result;
}
});
}
</script>
<style lang="less" scoped>
.three-new-l {